-
Notifications
You must be signed in to change notification settings - Fork 0
/
adapter.css
53 lines (45 loc) · 815 Bytes
/
adapter.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
@media screen and (device-width: 320px) {
html {
font-size: 16px;
}
}
@media screen and (device-width: 360px) {
html {
font-size: 18px;
}
}
@media screen and (device-width: 375px) {
html {
font-size: 18.75px;
}
}
@media screen and (device-width: 414px) {
html {
font-size: 20.7px;
}
}
@media screen and (device-width: 411px) {
html {
font-size: 20.55px;
}
}
@media screen and (device-width: 768px) {
html {
font-size: 38.4px;
}
}
@media screen and (device-width: 1024px) {
html {
font-size:51.2px;
}
}
@media screen and (device-width: 1200px) {
html {
font-size: 60px;
}
}
@media screen and (min-width: 1200px) and (max-width: 1900px){
html{
font-size: 60px;
}
}