-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoverride.css
60 lines (56 loc) · 1.1 KB
/
override.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
:root {
--light: #f7f7f7;
--dark: #1a1a1a;
--secondary: #494949;
--foreground: var(--dark);
--background: var(--light);
--fontStack: "IBM Plex Mono", "Input Mono", "SF Mono", Consolas, monospace;
}
* {
box-sizing: border-box;
font: inherit;
margin: 0;
padding: 0;
position: relative;
}
html {
background-color: var(--background);
color: var(--foreground);
display: flex;
height: 100%;
line-height: 1.75;
transition-property: background-color, color;
transition: 0.1s ease;
overflow: hidden;
}
@media (prefers-color-scheme: dark) {
:root {
--foreground: var(--light);
--background: var(--dark);
--secondary: #909090;
}
}
body {
--column-width: 90ch;
display: flex;
flex-direction: column;
flex: 0 1 var(--column-width);
height: 100%;
margin: auto;
padding: 3rem;
padding-bottom: 0;
text-align: center;
}
.line {
font-family: var(--fontStack);
font-size: 225%;
margin-bottom: 0.75rem;
z-index: 1;
}
.meaning {
font-family: "Roboto", sans-serif;
font-size: 170%;
color: var(--secondary);
letter-spacing: 0.25px;
margin-top: 0.75rem;
}