import.css 789 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. @import "not-found";
  2. @import "something.css" media;
  3. @import url("something.css") media;
  4. @import url(something.css) media, screen, print;
  5. b {
  6. color: maroon;
  7. padding: 16px;
  8. }
  9. body {
  10. line-height: 10em;
  11. }
  12. body div.bright {
  13. color: red;
  14. }
  15. body div.sad {
  16. color: blue;
  17. }
  18. .one {
  19. color: blue;
  20. }
  21. #merge-import-mixins .just-a-class {
  22. background: red;
  23. }
  24. #merge-import-mixins .just-a-class {
  25. background: blue;
  26. }
  27. #merge-import-mixins .hello {
  28. height: 200px;
  29. }
  30. @media cool {
  31. #merge-import-mixins {
  32. color: red;
  33. height: 200px;
  34. }
  35. }
  36. #merge-import-mixins div {
  37. background: red;
  38. background: blue;
  39. }
  40. .inner {
  41. content: "inner/file1.less";
  42. }
  43. .inner {
  44. content: "inner/file2.less";
  45. }
  46. pre {
  47. color: hello-from-file-3;
  48. }
  49. h2 {
  50. background: url("../images/logo.png") no-repeat;
  51. }