mixins.css 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. .bold {
  2. font-size: 20px;
  3. font-weight: bold;
  4. }
  5. body #window {
  6. border-radius: 10px;
  7. font-size: 20px;
  8. font-weight: bold;
  9. line-height: 30px;
  10. }
  11. #bundle .button {
  12. display: block;
  13. border: 1px solid black;
  14. background-color: grey;
  15. }
  16. #bundle .button:hover {
  17. background-color: white;
  18. }
  19. #header a {
  20. color: orange;
  21. display: block;
  22. border: 1px solid black;
  23. background-color: grey;
  24. }
  25. #header a:hover {
  26. background-color: white;
  27. }
  28. div {
  29. color: blue;
  30. hello: world;
  31. }
  32. div b {
  33. color: blue;
  34. }
  35. body {
  36. color: blue;
  37. hello: world;
  38. }
  39. body b {
  40. color: blue;
  41. }
  42. .hello .world {
  43. color: blue;
  44. }
  45. .foobar {
  46. color: blue;
  47. }
  48. .eggs {
  49. foo: 1px 2px;
  50. bar: 1px 2px;
  51. foo: 100 land;
  52. bar: 100 land;
  53. }
  54. #hello {
  55. cool: one two three cool;
  56. }
  57. #hello-important {
  58. cool: one two three cool !important;
  59. }
  60. #world {
  61. cool: "world";
  62. }
  63. #another {
  64. things: red blue green;
  65. things: red blue green skip me;
  66. }
  67. #day .cool {
  68. color: one two three;
  69. }
  70. #day .cool {
  71. color: one two three skip me;
  72. }
  73. .mix-suffix {
  74. color: red !important;
  75. height: 20px !important;
  76. }
  77. .mix-suffix pre {
  78. color: red;
  79. }
  80. .search-test {
  81. color: #f00 !important;
  82. color: #0f0 !important;
  83. }