parse-interpolation.css 486 B

12345678910111213141516171819202122232425262728293031323334353637
  1. input[type=text]:focus,
  2. input[type=email]:focus,
  3. input[type=password]:focus,
  4. textarea:focus {
  5. foo: bar;
  6. }
  7. .a + .z,
  8. .b + .z,
  9. .c + .z {
  10. color: blue;
  11. }
  12. .bar .d.a,
  13. .bar .b,
  14. .c.bar:hover,
  15. .bar baz {
  16. color: blue;
  17. }
  18. .a + .e,
  19. .b.c + .e,
  20. .d + .e {
  21. foo: bar;
  22. }
  23. input[class="text"],
  24. input.text {
  25. background: red;
  26. }
  27. .master-page-1 .selector-1,
  28. .master-page-1 .selector-2 {
  29. background-color: red;
  30. }
  31. .fruit-apple,
  32. .fruit-satsuma,
  33. .fruit-banana,
  34. .fruit-pear {
  35. content: "Just a test.";
  36. }