javascript.css 535 B

12345678910111213141516171819202122232425262728
  1. .eval {
  2. js: 42;
  3. js: 2;
  4. js: "hello world";
  5. js: 1, 2, 3;
  6. title: "string";
  7. ternary: true;
  8. multiline: 2;
  9. }
  10. .scope {
  11. var: 42;
  12. escaped: 7px;
  13. }
  14. .vars {
  15. width: 8;
  16. }
  17. .escape-interpol {
  18. width: hello world;
  19. }
  20. .arrays {
  21. ary: "1, 2, 3";
  22. ary1: "1, 2, 3";
  23. }
  24. .test-tran {
  25. 1: opacity 0.3s ease-in 0.3s, max-height 0.6s linear, margin-bottom 0.4s linear;
  26. 2: [opacity 0.3s ease-in 0.3s, max-height 0.6s linear, margin-bottom 0.4s linear];
  27. 3: opacity 0.3s ease-in 0.3s, max-height 0.6s linear, margin-bottom 0.4s linear;
  28. }