javascript.css 546 B

123456789101112131415161718192021222324252627282930
  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. empty: ;
  12. var: 42;
  13. escaped: 7px;
  14. }
  15. .vars {
  16. width: 8;
  17. }
  18. .escape-interpol {
  19. width: hello world;
  20. }
  21. .arrays {
  22. ary: "1, 2, 3";
  23. ary1: "1, 2, 3";
  24. }
  25. .test-tran {
  26. 1: opacity 0.3s ease-in 0.3s, max-height 0.6s linear, margin-bottom 0.4s linear;
  27. 2: [opacity 0.3s ease-in 0.3s, max-height 0.6s linear, margin-bottom 0.4s linear];
  28. 3: opacity 0.3s ease-in 0.3s, max-height 0.6s linear, margin-bottom 0.4s linear;
  29. }