-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
61 lines (53 loc) · 897 Bytes
/
styles.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
html,
body {
width: 100%;
height: 100%;
font-family: system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
"Segoe UI Symbol", "Noto Color Emoji";
font-size: 1rem;
line-height: 1.5rem;
overflow: hidden;
margin: 0;
padding: 0;
background: white;
}
body {
display: flex;
flex-direction: column;
align-items: stretch;
}
#root {
display: flex;
flex-direction: column;
flex: 1 1 0%;
justify-content: center;
align-items: center;
}
#loading {
display: flex;
padding-left: 2rem;
padding-right: 2rem;
flex-direction: column;
gap: 1rem;
align-items: center;
text-align: center;
}
#loading > h1 {
font-size: 2.25rem;
line-height: 2.5rem;
}
#footer {
padding-top: 1rem;
padding-bottom: 1rem;
text-align: center;
}
.link:hover {
text-decoration: underline;
}
a {
color: inherit;
text-decoration: inherit;
}
p {
margin: 0;
}