import.css 960 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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. div b {
  19. color: fuchsia;
  20. padding: 16px;
  21. }
  22. .one {
  23. color: blue;
  24. }
  25. .one h2 {
  26. background: url("../images/logo.png") no-repeat;
  27. }
  28. .two h2 {
  29. background: url("../images/logo.png") no-repeat;
  30. }
  31. #merge-import-mixins .just-a-class {
  32. background: red;
  33. }
  34. #merge-import-mixins .just-a-class {
  35. background: blue;
  36. }
  37. #merge-import-mixins .hello {
  38. height: 200px;
  39. }
  40. @media cool {
  41. #merge-import-mixins {
  42. color: red;
  43. height: 200px;
  44. }
  45. }
  46. #merge-import-mixins div {
  47. background: red;
  48. background: blue;
  49. }
  50. .inner {
  51. content: "inner/file1.less";
  52. }
  53. .inner {
  54. content: "inner/file2.less";
  55. }
  56. pre {
  57. color: hello-from-file-3;
  58. }
  59. h2 {
  60. background: url("../images/logo.png") no-repeat;
  61. }