-
Notifications
You must be signed in to change notification settings - Fork 151
/
test.css
executable file
·91 lines (79 loc) · 1.43 KB
/
test.css
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
@charset "utf-8";
.some-selector {
padding: 20px 20vmin 20vmax 10px;
width: .2vw;
height: 20.3vh;
margin-top: -2vh;
text-shadow: 3vw 5vh 6vmin blue;
}
.calculating {
width: calc(30vw - 20px);
}
.some-other-selector {
margin-left: 20.3vh;
}
.ie-only-test {
filter: progid:DXImageTransform.Microsoft.DropShadow(OffX=1vh, OffY=1vw, Color=#000000);
}
.priority-important-test {
height: 20.3vh !important;
}
.use_css_content_hack-test {
content: 'viewport-units-buggyfill; width: 80vmax; height: 80vmax;';
}
@supports ( transform-origin: 5% 5% ) {
.some-selector {
padding: 20px 10vmin -10vmax 10px;
width: 0.5vw;
height: 50.3vh;
}
.some-other-selector {
height: 50.3vh;
}
}
@media only screen and (max-height: 400px), (max-width: 400px) {
.some-selector {
padding: 20px 10vmin -10vmax 10px;
width: 0.5vw;
height: 50.3vh;
}
.some-other-selector {
height: 50.3vh;
}
}
@media only screen and (max-height: 400px) {
@media only screen and (max-width: 400px) {
.some-deeper-selector {
width: 20px;
height: 60vh;
}
}
@supports ( transform-origin: 5% 5% ) {
.some-deeper-selector {
width: 20px;
height: 60vh;
}
}
}
@-webkit-keyframes fadein {
0% {
height: 20vh;
}
50% {
width: 30px;
}
100% {
height: 50vh;
}
}
@keyframes fadein {
0% {
height: 20vh;
}
50% {
width: 30px;
}
100% {
height: 50vh;
}
}