site_demos.css 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. default .underline {
  2. border-bottom: 1px solid green;
  3. }
  4. default #header {
  5. color: black;
  6. border: 1px solid #dd44dd;
  7. }
  8. default #header .navigation {
  9. font-size: 12px;
  10. }
  11. default #header .navigation a {
  12. border-bottom: 1px solid green;
  13. }
  14. default #header .logo {
  15. width: 300px;
  16. }
  17. default #header .logo:hover {
  18. text-decoration: none;
  19. }
  20. variables .variables {
  21. width: 14cm;
  22. height: 24px;
  23. color: #888;
  24. background: #6c94be;
  25. font-family: "Trebuchet MS", Verdana, sans-serif;
  26. }
  27. mixins .bordered {
  28. border-top: dotted 1px black;
  29. border-bottom: solid 2px black;
  30. }
  31. mixins #menu a {
  32. color: #111;
  33. border-top: dotted 1px black;
  34. border-bottom: solid 2px black;
  35. }
  36. mixins .post a {
  37. color: red;
  38. border-top: dotted 1px black;
  39. border-bottom: solid 2px black;
  40. }
  41. nested-rules #header {
  42. color: black;
  43. }
  44. nested-rules #header .navigation {
  45. font-size: 12px;
  46. }
  47. nested-rules #header .logo {
  48. width: 300px;
  49. }
  50. nested-rules #header .logo:hover {
  51. text-decoration: none;
  52. }
  53. namespaces #bundle .button {
  54. display: block;
  55. border: 1px solid black;
  56. background-color: grey;
  57. }
  58. namespaces #bundle .button:hover {
  59. background-color: white;
  60. }
  61. namespaces #header a {
  62. color: orange;
  63. display: block;
  64. border: 1px solid black;
  65. background-color: grey;
  66. }
  67. namespaces #header a:hover {
  68. background-color: white;
  69. }
  70. mixin-functions body {
  71. padding: 2.0em;
  72. color: red;
  73. margin: 10px;
  74. height: 12px;
  75. border-bottom: 1px solid green;
  76. }