parens.css 799 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. .parens {
  2. border: 2px solid black;
  3. margin: 1px 3px 16 3;
  4. width: 36;
  5. padding: 2px 36px;
  6. }
  7. .in-function {
  8. value: 2 + 1;
  9. }
  10. .more-parens {
  11. padding: 8 4 4 4px;
  12. width-all: 96;
  13. width-first: 16 * 6;
  14. width-keep: (4 * 4) * 6;
  15. height: calc(100% + (25vh - 20px));
  16. height-keep: (7 * 7) + (8 * 8);
  17. height-all: 113;
  18. height-parts: 49 + 64;
  19. margin-keep: (4 * (5 + 5) / 2) - (4 * 2);
  20. margin-parts: 20 - 8;
  21. margin-all: 12;
  22. border-radius-keep: 4px * (1 + 1) / 4 + 3px;
  23. border-radius-parts: 8px / 7px;
  24. border-radius-all: 5px;
  25. }
  26. .negative {
  27. neg-var: -1;
  28. neg-var-paren: -1;
  29. }
  30. .nested-parens {
  31. width: 2 * (4 * (2 + (1 + 6))) - 1;
  32. height: ((2 + 3) * (2 + 3) / (9 - 4)) + 1;
  33. }
  34. .mixed-units {
  35. margin: 2px 4em 1 5pc;
  36. padding: 6px 1em 2px 2;
  37. }
  38. .test-false-negatives {
  39. a: (;
  40. }