Basic css that does not use import

Fichier

tests/css_test_files/css_input_without_import.css.unoptimized.css

View source
  1. /* @codingStandardsIgnoreFile */
  2. /**
  3. * @file Basic css that does not use import
  4. */
  5. body {
  6. margin: 0;
  7. padding: 0;
  8. background: #edf5fa;
  9. font: 76%/170% Verdana, sans-serif;
  10. color: #494949;
  11. }
  12. .this .is .a .test {
  13. font: 1em/100% Verdana, sans-serif;
  14. color: #494949;
  15. }
  16. /**
  17. * CSS spec says that all whitespace is valid whitespace, so this selector
  18. * should be just as good as the one above.
  19. */
  20. .this
  21. .is
  22. .a
  23. .test {
  24. font: 1em/100% Verdana, sans-serif;
  25. color: #494949;
  26. }
  27. some :pseudo .thing {
  28. -moz-border-radius: 3px;
  29. -webkit-border-radius: 3px;
  30. border-radius: 3px;
  31. filter: progid:DXImageTransform.Microsoft.Shadow(color=#000000, direction='180', strength='10');
  32. -ms-filter: "progid:DXImageTransform.Microsoft.Shadow(color=#000000, direction='180', strength='10')";
  33. }
  34. ::-moz-selection {
  35. background: #000;
  36. color:#fff;
  37. }
  38. ::selection {
  39. background: #000;
  40. color: #fff;
  41. }
  42. @media print {
  43. * {
  44. background: #000 !important;
  45. color: #fff !important;
  46. }
  47. @page {
  48. margin: 0.5cm;
  49. }
  50. }
  51. @media screen and (max-device-width: 480px) {
  52. background: #000;
  53. color: #fff;
  54. }
  55. textarea, select {
  56. font: 1em/160% Verdana, sans-serif;
  57. color: #494949;
  58. }