import.css 782 B

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