-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
46 lines (45 loc) · 816 Bytes
/
styles.css
File metadata and controls
46 lines (45 loc) · 816 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
/* Little tweaks to make the AOC site easier on my eyes.
* Credits:
* https://gist.github.com/the1derer/c92e597301a280ff0ed48ffd9f998d52
* https://gist.github.com/saidaspen/cbf216aa4be971a65b55426b884aee72
* https://add0n.com/stylus.html
*/
:root {
color-scheme: dark;
}
*, code {
font-family: "JetBrains Mono", monospace;
line-height: 1.3em;
}
body {
background-color: #111318;
}
body, article, nav {
min-width: auto;
width: auto;
max-width: 60em;
}
header {
white-space: unset;
}
body * {
text-shadow: none !important;
}
article em {
font-weight: bold;
color: #22ff68;
}
#sidebar, .user {
display: none !important;
}
a {
color: #ffff66;
}
code {
letter-spacing: 1px;
color: #ff6e6e;
font-weight: bold;
}
code::before {
background: none;
}