-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathbasic.css
More file actions
44 lines (41 loc) · 762 Bytes
/
basic.css
File metadata and controls
44 lines (41 loc) · 762 Bytes
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
html {
font-size: 14px;
}
* {
margin: 0;
padding: 0;
}
body {
font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial,
Noto Sans, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', Segoe UI Symbol, 'Noto Color Emoji' !important;
margin: 0 auto;
padding: 4rem;
padding-top: 3rem;
max-width: 640px!important;
/* min-width: 600px !important; */
}
@media (min-width: 640px) {
#root {
max-width: 640px;
}
}
@media (min-width: 768px) {
#root {
max-width: 768px;
}
}
@media (min-width: 1024px) {
#root {
max-width: 1024px;
}
}
@media (min-width: 1280px) {
#root {
max-width: 1280px;
}
}
@media (min-width: 1536px) {
#root {
max-width: 1536px;
}
}