css_input_without_import.css.unoptimized.css

Basic css that does not use import

File

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