plugin.css 1012 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. @charset "utf-8";
  2. .other {
  3. trans: transitive;
  4. }
  5. .class {
  6. trans: transitive;
  7. global: global;
  8. local: test-local();
  9. shadow: global;
  10. }
  11. .class .local {
  12. global: global;
  13. local: local;
  14. shadow: local;
  15. }
  16. .class {
  17. ns-mixin-global: global;
  18. ns-mixin-local: local;
  19. ns-mixin-shadow: local;
  20. mixin-local: local;
  21. mixin-global: global;
  22. mixin-shadow: local;
  23. ruleset-local: local;
  24. ruleset-global: global;
  25. ruleset-shadow: local;
  26. class-local: test-local();
  27. }
  28. @media screen {
  29. .test {
  30. result: global;
  31. }
  32. }
  33. @font-face {
  34. result: global;
  35. }
  36. @media screen and (min-width: 100px) and (max-width: 400px) {
  37. .test {
  38. result: global;
  39. }
  40. }
  41. @media screen {
  42. .test {
  43. result: local;
  44. }
  45. }
  46. .root {
  47. prop: value;
  48. }
  49. .test-empty {
  50. val1: foo;
  51. val2: foo;
  52. }
  53. .test-simple {
  54. value: 3.141592653589793;
  55. value: 6.28318531;
  56. }
  57. .test-conflicts {
  58. value: foo;
  59. }
  60. .test-conflicts {
  61. value: bar;
  62. }
  63. .test-conflicts {
  64. value: foo;
  65. }
  66. .test-collection {
  67. list: 32, 5, "bird";
  68. }
  69. @arbitrary value after ();