math.css 928 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. .unary {
  2. sub: 10 -5;
  3. }
  4. .spaces {
  5. sub1: 5;
  6. sub2: 5;
  7. add1: 15;
  8. add2: 15;
  9. div: 2;
  10. mul1: 50;
  11. mul2: 50;
  12. }
  13. .supress-division {
  14. border-radius: 10px/10px;
  15. border-radius: 10px/12px;
  16. border-radius: hello(10px/10px) world;
  17. font: 10px/30 sans-serif;
  18. font: 10px/20px sans-serif;
  19. font: 10px/22px sans-serif;
  20. border-radius: 0 15px 15px 15px/0 50% 50% 50%;
  21. }
  22. .parens {
  23. sub: 5;
  24. add: 15;
  25. div1: 2;
  26. div2: 2;
  27. mul: 50;
  28. }
  29. .keyword-names {
  30. height: "hello" 25;
  31. }
  32. .negation {
  33. neg1: -1px;
  34. neg2: -1px;
  35. neg3: -10;
  36. }
  37. .test {
  38. single1: 5;
  39. single2: 10;
  40. single3: 10;
  41. parens: 10 -2;
  42. math1: 20;
  43. math2: 20;
  44. complex1: 71;
  45. complex2: 6;
  46. complex3: 6px 1em 2px 2;
  47. var1: 8 4 4 4px;
  48. var2: 96;
  49. var3: 12;
  50. complex4: 113;
  51. }
  52. .percents {
  53. p1: 1000%;
  54. p2: 1000%;
  55. p3: 100%;
  56. p4: 1000px;
  57. p5: 1000%;
  58. p6: 30%;
  59. p7: 10%;
  60. p8: 2%;
  61. }
  62. .misc {
  63. x: 40px;
  64. y: 40em;
  65. }
  66. .cond {
  67. c1: false;
  68. c2: true;
  69. }