-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
60 lines (46 loc) · 1.01 KB
/
style.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
[data-theme=light],
:root:not([data-theme=dark]) {
color-scheme: light;
--primary: #006475;
--primary-hover: #3f8d9e;
--icon-filter: none;
}
@media only screen and (prefers-color-scheme: dark) {
:root:not([data-theme=light]) {
color-scheme: dark;
--primary: #006475;
--primary-hover: #3f8d9e;
--icon-filter: invert(85%);
}
}
[data-theme=dark] {
color-scheme: dark;
--primary: #006475;
--primary-hover: #3f8d9e;
--icon-filter: invert(85%);
}
nav ul {
font-size: 0.8em;
}
[role="button"] {
padding: 0.5rem 0.9rem;
}
.align-items-center { align-items: center; }
.mb-0 { margin-bottom: 0em; }
.mb-1 { margin-bottom: 1em; }
.mb-2 { margin-bottom: 2em; }
.mb-3 { margin-bottom: 3em; }
.mb-4 { margin-bottom: 4em; }
.mb-5 { margin-bottom: 5em; }
.mt-0 { margin-top: 0em; }
.mt-1 { margin-top: 1em; }
.mt-2 { margin-top: 2em; }
.mt-3 { margin-top: 3em; }
.mt-4 { margin-top: 4em; }
.mt-5 { margin-top: 5em; }
.icon {
filter: var(--icon-filter);
}
.social-link {
text-decoration: none;
}