-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcustom.css
62 lines (53 loc) · 1.06 KB
/
custom.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
62
.container {
padding: 0.6rem;
}
.gdoc-header {
border-bottom: 0rem solid #8B8B8B;
box-shadow: 0 0 1rem #202020;
}
.gdoc-brand__title {
display: none;
}
.gdoc-brand {
font-size: 2rem;
font-family: serif;
}
.gdoc-brand__img {
margin-right: 0.8rem;
margin-top: 0.8rem;
margin-bottom: 0.8rem;
width: 7.5rem;
height: 4.0rem;
}
/* Icons */
.gdoc_dicord {
background: url('./icons/discord-mark-white.svg');
background-repeat: no-repeat;
margin-top: 5px;
background-size: 90%;
}
/* Themes */
:root[color-theme="light"] {
--header-background: #222C37;
--footer-background: #222C37;
}
@media (prefers-color-scheme: light) {
:root {
--header-background: #222C37;
--footer-background: #222C37;
}
}
:root[color-theme="dark"] {
--header-background: #222C37;
--body-background: #3F3F3F;
--accent-color-lite: #2E2E2E;
--footer-background: #222C37;
}
@media (prefers-color-scheme: dark) {
:root {
--header-background: #222C37;
--body-background: #3F3F3F;
--accent-color-lite: #2E2E2E;
--footer-background: #222C37;
}
}