-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
52 lines (45 loc) · 782 Bytes
/
styles.css
File metadata and controls
52 lines (45 loc) · 782 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
45
46
47
48
49
50
51
52
:root {
--bg: #ffffff;
--links: #0076d1;
--focus: #0096bfab;
--text-main: #363636;
--text-muted: #70777f;
--text-bright: #000000;
}
@media (prefers-color-scheme: dark) {
:root {
--bg: #202b38;
--links: #41adff;
--focus: #1c76c5;
--text-main: #dbdbdb;
--text-muted: #a9b1ba;
--text-bright: #ffffff;
}
}
body {
margin: 0;
display: flex;
min-height: 100vh;
align-items: center;
justify-content: center;
}
body {
background: var(--bg);
color: var(--text-main);
font-family: Cantarell, sans-serif;
}
h1 {
color: var(--text-bright);
}
h2 {
color: var(--text-muted);
}
blockquote {
padding-left: 16px;
margin: 24px 0 32px;
border-left: 4px solid var(--focus);
}
a {
color: var(--links);
text-decoration: none;
}