-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
50 lines (47 loc) · 777 Bytes
/
main.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
@media (prefers-color-scheme: dark) {
:root {
background-color: #0F0F0F;
color: white;
}
a {
color: aqua;
}
a:visited {
color: chocolate;
}
.footer {
background-color: #0F0F0F;
}
}
@media (prefers-color-scheme: light) {
:root {
background-color: white;
color: black;
}
.footer {
background-color: white;
}
}
.server-editor {
border-color:aqua;
border-width: 1px;
border-style: solid;
border-radius: 3px;
margin: 2px;
padding: 2px;
}
.footer {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
text-align: center;
height: 4.2rem;
margin: 0;
}
.app {
padding-bottom: 4.2rem;
}
.hidden {
display: none;
}