import.css 719 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. @charset "UTF-8";
  2. /** comment at the top**/
  3. @import url(/absolute/something.css) screen and (color) and (max-width: 600px);
  4. @import url("//ha.com/file.css") (min-width: 100px);
  5. #import-test {
  6. height: 10px;
  7. color: red;
  8. width: 10px;
  9. height: 30%;
  10. }
  11. @media screen and (max-width: 600px) {
  12. body {
  13. width: 100%;
  14. }
  15. }
  16. #import {
  17. color: red;
  18. }
  19. .mixin {
  20. height: 10px;
  21. color: red;
  22. }
  23. .test-f {
  24. height: 10px;
  25. }
  26. .deep-import-url {
  27. color: red;
  28. }
  29. @media screen and (max-width: 601px) {
  30. #css {
  31. color: yellow;
  32. }
  33. }
  34. @media screen and (max-width: 602px) {
  35. body {
  36. width: 100%;
  37. }
  38. }
  39. @media screen and (max-width: 603px) {
  40. #css {
  41. color: yellow;
  42. }
  43. }
  44. @media print {
  45. body {
  46. width: 100%;
  47. }
  48. }