You are here

coffee.css in Coffee 6

Stylesheet for the Coffee module.

File

coffee.css
View source
  1. /**
  2. * @file
  3. * Stylesheet for the Coffee module.
  4. */
  5. #coffee-bg {
  6. position: fixed;
  7. left: 0;
  8. top: 0;
  9. width: 100%;
  10. height: 100%;
  11. z-index: 999;
  12. }
  13. #coffee-form {
  14. position: fixed;
  15. left: 50%;
  16. top: 120px;
  17. width: 500px;
  18. margin-left: -250px;
  19. padding: 10px;
  20. font: 16px/1.5 sans-serif;
  21. background: rgba(0, 0, 0, 0.4);
  22. -webkit-border-radius: 15px;
  23. -moz-border-radius: 15px;
  24. border-radius: 15px;
  25. z-index: 9999;
  26. }
  27. #coffee-form-inner {
  28. background: #fff;
  29. color: #444;
  30. padding: 10px 10px 1px;
  31. -webkit-border-radius: 5px;
  32. -moz-border-radius: 5px;
  33. border-radius: 5px;
  34. -webkit-box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.6);
  35. -moz-box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.6);
  36. box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.6);
  37. }
  38. #coffee-q {
  39. background: #d1d1d1;
  40. color: #000;
  41. border: 0;
  42. font: 36px sans-serif;
  43. padding: 5px 10px;
  44. width: 460px;
  45. outline: none;
  46. display: block;
  47. margin: 0 0 10px;
  48. }
  49. #coffee-results {
  50. list-style: none;
  51. margin: 0 0 10px;
  52. padding: 0;
  53. }
  54. #coffee-results li {
  55. margin: 0;
  56. padding: 0;
  57. }
  58. #coffee-results a {
  59. display: block;
  60. text-decoration: none;
  61. outline: none;
  62. color: #444;
  63. padding: 3px 10px;
  64. }
  65. #coffee-results a:focus,
  66. #coffee-results a.focus {
  67. background: #d1d1d1;
  68. color: #000;
  69. }
  70. #coffee-results .description {
  71. display: block;
  72. font-size: 11px;
  73. color: #888;
  74. }
  75. #coffee-results a:focus .description,
  76. #coffee-results a.focus .description {
  77. color: #666;
  78. }
  79. #coffee-form-inner label.element-invisible {
  80. display: none !important;
  81. }