variables.css 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. .variables {
  2. width: 14cm;
  3. }
  4. .variables {
  5. height: 24px;
  6. color: #888;
  7. font-family: "Trebuchet MS", Verdana, sans-serif;
  8. quotes: "~" "~";
  9. }
  10. .redef {
  11. zero: 0;
  12. }
  13. .redef .inition {
  14. three: 3;
  15. }
  16. .values {
  17. minus-one: -1;
  18. font-family: 'Trebuchet', 'Trebuchet', 'Trebuchet';
  19. color: #888 !important;
  20. same-color: #888 !important;
  21. same-again: #888 !important;
  22. multi-important: #888 #888, 'Trebuchet' !important;
  23. multi: something 'A', B, C, 'Trebuchet';
  24. }
  25. .variable-names .quoted {
  26. name: 'hello';
  27. }
  28. .variable-names .unquoted {
  29. name: 'hello';
  30. }
  31. .variable-names .color-keyword {
  32. name: 'hello';
  33. }
  34. .alpha {
  35. filter: alpha(opacity=42);
  36. }
  37. .testPollution {
  38. a: 'no-pollution';
  39. }
  40. .units {
  41. width: 1px;
  42. same-unit-as-previously: 1px;
  43. square-pixel-divided: 1px;
  44. odd-unit: 2;
  45. percentage: 500%;
  46. pixels: 500px;
  47. conversion-metric-a: 30mm;
  48. conversion-metric-b: 3cm;
  49. conversion-imperial: 3in;
  50. custom-unit: 420octocats;
  51. custom-unit-cancelling: 18dogs;
  52. mix-units: 2px;
  53. invalid-units: 1px;
  54. }
  55. .units .fallback {
  56. div-px-1: 10px;
  57. div-px-2: 1px;
  58. sub-px-1: 12.6px;
  59. sub-cm-1: 9.666625cm;
  60. mul-px-1: 19.6px;
  61. mul-em-1: 19.6em;
  62. mul-em-2: 196em;
  63. mul-cm-1: 196cm;
  64. add-px-1: 15.4px;
  65. add-px-2: 393.35275591px;
  66. mul-px-2: 140px;
  67. mul-px-3: 140px;
  68. }