Security update for Core, with self-updated composer
[yaffs-website] / web / core / tests / Drupal / Tests / Core / Asset / css_test_files / css_input_without_import.css
1
2 /**
3  * @file Basic css that does not use import
4  */
5
6
7 body {
8   margin: 0;
9   padding: 0;
10   background: #edf5fa;
11   font: 76%/170% Verdana, sans-serif;
12   color: #494949;
13 }
14
15 .this .is .a .test {
16   font: 1em/100% Verdana, sans-serif;
17   color: #494949;
18 }
19
20 /**
21  * CSS spec says that all whitespace is valid whitespace, so this selector
22  * should be just as good as the one above.
23  */
24 .this
25 .is
26 .a
27 .test {
28 font: 1em/100% Verdana, sans-serif;
29 color: #494949;
30 }
31
32 some :pseudo .thing {
33   border-radius: 3px;
34 }
35
36 ::-moz-selection {
37   background: #000;
38   color:#fff;
39
40 }
41 ::selection {
42   background: #000;
43   color: #fff;
44 }
45
46 @media print {
47   * {
48     background: #000 !important;
49     color: #fff !important;
50   }
51   @page {
52     margin: 0.5cm;
53   }
54 }
55
56 @media screen and (max-device-width: 480px) {
57   background: #000;
58   color: #fff;
59 }
60
61 textarea, select {
62   font: 1em/160% Verdana, sans-serif;
63   color: #494949;
64 }
65