forked from leafo/scssphp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmedia.css
More file actions
103 lines (85 loc) · 1.64 KB
/
media.css
File metadata and controls
103 lines (85 loc) · 1.64 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
@media {
div {
color: blue; } }
@media what {
div {
color: blue; } }
@media (cool) {
div {
color: blue; } }
@media (cool: blue) {
div {
color: blue; } }
@media hello and (world) and (butt: man) {
div {
color: blue; } }
@media (max-width: 940px) {
color: red; }
@media not hello and (world) {
color: blue;
pre {
color: blue; } }
@media butt and (world) {
color: red;
div {
color: red; } }
div {
color: blue; }
@media screen and (-webkit-min-device-pixel-ratio: 1.5) {
div .sidebar {
width: 500px; } }
div {
position: absolute; }
@media screen {
div {
top: 0;
bottom: 8em;
color: red; }
div p {
margin: 5px; }
div .success {
color: green; } }
.button {
width: 300px;
height: 100px;
background: #eee; }
.button :hover {
background: #aaa; }
@media only screen and (max-width: 300px) {
.button {
width: 100px;
height: 100px; } }
code {
position: absolute; }
@media screen {
code {
height: 10px; }
code pre {
height: 20px; } }
@media screen and (color: blue) {
dt {
height: 10px; } }
@media screen {
.screen {
width: 12px; } }
@media only screen {
.only-screen {
height: 11px; } }
@media only screen {
.only-screen {
width: 14px; } }
@media only screen {
.only-screen {
height: 16px; } }
@media print {
.only-print {
height: 12px; } }
@media screen {
.only-print {
height: 12px; } }
@media not screen {
.not-screen {
height: 15px; } }
@media only screen and (color: blue) and (width: 13) {
.only-screen {
height: 15px; } }