css_input_without_import.css
Same filename in other branches
- 7.x modules/simpletest/files/css_test_files/css_input_without_import.css
- 9 core/tests/Drupal/Tests/Core/Asset/css_test_files/css_input_without_import.css
- 8.9.x core/tests/Drupal/Tests/Core/Asset/css_test_files/css_input_without_import.css
- 10 core/tests/Drupal/Tests/Core/Asset/css_test_files/css_input_without_import.css
Basic css that does not use import
File
-
core/
tests/ Drupal/ Tests/ Core/ Asset/ css_test_files/ css_input_without_import.css
View source
-
- /**
- * @file Basic css that does not use import
- */
-
-
- body {
- margin: 0;
- padding: 0;
- background: #edf5fa;
- font: 76%/170% Verdana, sans-serif;
- color: #494949;
- }
-
- .this .is .a .test {
- font: 1em/100% Verdana, sans-serif;
- color: #494949;
- }
-
- /**
- * CSS spec says that all whitespace is valid whitespace, so this selector
- * should be just as good as the one above.
- */
- .this
- .is
- .a
- .test {
- font: 1em/100% Verdana, sans-serif;
- color: #494949;
- }
-
- some :pseudo .thing {
- border-radius: 3px;
- }
-
- ::-moz-selection {
- background: #000;
- color:#fff;
-
- }
- ::selection {
- background: #000;
- color: #fff;
- }
-
- @media print {
- * {
- background: #000 !important;
- color: #fff !important;
- }
- @page {
- margin: 0.5cm;
- }
- }
-
- @media screen and (max-device-width: 480px) {
- background: #000;
- color: #fff;
- }
-
- textarea, select {
- font: 1em/160% Verdana, sans-serif;
- color: #494949;
- }
-
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.