scope.css 523 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. .tiny-scope {
  2. color: #989;
  3. }
  4. .scope1 {
  5. color: blue;
  6. border-color: black;
  7. }
  8. .scope1 .scope2 {
  9. color: blue;
  10. }
  11. .scope1 .scope2 .scope3 {
  12. color: red;
  13. border-color: black;
  14. background-color: white;
  15. }
  16. .scope {
  17. scoped-val: green;
  18. }
  19. .heightIsSet {
  20. height: 1024px;
  21. }
  22. .useHeightInMixinCall {
  23. mixin-height: 1024px;
  24. }
  25. .imported {
  26. exists: true;
  27. }
  28. .testImported {
  29. exists: true;
  30. }
  31. #allAreUsedHere {
  32. default: 'top level';
  33. scope: 'top level';
  34. sub-scope-only: 'inside';
  35. }
  36. #parentSelectorScope {
  37. prop: white;
  38. }