builtins.css 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. body {
  2. color: "hello world";
  3. num-basic: 5.1666666666667;
  4. num-floor: 5px;
  5. num-ceil: 6px;
  6. num2: 0.66666666666667;
  7. num2-round: 1;
  8. num2-floor: 0;
  9. num2-ceil: 1;
  10. round-lit: 3px;
  11. rgba1: #ff112233;
  12. rgba2: #992c3742;
  13. argb: #992c3742;
  14. }
  15. format {
  16. format: "rgb(32, 128, 64)";
  17. format-string: "hello world";
  18. format-multiple: "hello earth 2";
  19. format-url-encode: 'red is %A';
  20. eformat: rgb(32, 128, 64);
  21. }
  22. #functions {
  23. str1: true;
  24. str2: false;
  25. num1: true;
  26. num2: true;
  27. num3: true;
  28. num4: false;
  29. col1: true;
  30. col2: false;
  31. col3: true;
  32. col4: true;
  33. key1: true;
  34. key2: false;
  35. px1: true;
  36. px2: false;
  37. per1: true;
  38. per2: false;
  39. em1: true;
  40. em2: false;
  41. ex1: 2;
  42. ex2: 1;
  43. ex3: extract(1,1);
  44. ex4: 2;
  45. pow: 16;
  46. pi: 3.1415926535898;
  47. mod: 4;
  48. tan: 1.5574077246549;
  49. cos: 0.54030230586814;
  50. sin: 0.8414709848079;
  51. atan: 0.78539816339745rad;
  52. acos: 0rad;
  53. asin: 1.5707963267949rad;
  54. sqrt: 2.8284271247462;
  55. }
  56. #unit {
  57. unit-lit: 10;
  58. unit-arg: 10s;
  59. unit-arg2: 10em;
  60. unit-math: 7.407%;
  61. }