pattern_matching.css 720 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. .class {
  2. color: #a2a2a2;
  3. display: block;
  4. }
  5. .zero {
  6. zero: 0;
  7. one: 1;
  8. two: 2;
  9. three: 3;
  10. }
  11. .one {
  12. one: 1;
  13. one-req: 1;
  14. two: 2;
  15. three: 3;
  16. }
  17. .two {
  18. two: 2;
  19. three: 3;
  20. }
  21. .three {
  22. three-req: 3;
  23. three: 3;
  24. }
  25. .left {
  26. left: 1;
  27. }
  28. .right {
  29. right: 1;
  30. }
  31. .border-right {
  32. color: black;
  33. border-right: 4px;
  34. }
  35. .border-left {
  36. color: black;
  37. border-left: 4px;
  38. }
  39. .only-right {
  40. right: 33;
  41. }
  42. .only-left {
  43. left: 33;
  44. }
  45. .left-right {
  46. both: 330;
  47. }
  48. #hola {
  49. color: blue;
  50. }
  51. #defaults_1 {
  52. height: one;
  53. height: two;
  54. height: three;
  55. height: four;
  56. }
  57. .thing {
  58. color: red;
  59. }
  60. #aa {
  61. color: green;
  62. color: blue;
  63. color: red;
  64. }
  65. #bb {
  66. color: green;
  67. color: blue;
  68. color: red;
  69. }
  70. #cc {
  71. color: blue;
  72. }