-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.css
43 lines (35 loc) · 799 Bytes
/
index.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
* {
font-size: 24px;
box-sizing: border-box;
margin: 0;
padding: 0;
user-select: none;
color: black;
}
*::after, *::before {
display: block;
}
/* ROOT ELEMENT */
/* Break Point */
/* Medium screens - TABLET */
@media only screen and (min-width: 40.063em) {
#app {
width: 100%;
font-size: 24px;
}
} /* min-width 641px, medium screens */
@media only screen and (min-width: 40.063em) and (max-width: 64em) {
#app {
width: 95%;
margin: 0 auto;
position: relative;
}
} /* min-width 641px and max-width 1024px, use when QAing tablet-only issues */
@media only screen and (min-width: 64.063em) and (max-width: 120em) {
#app {
width: 55%;
margin: 0 auto;
font-size: 36px;
position: relative;
}
}