forked from LiminalCrab/auger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
114 lines (95 loc) · 1.82 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
:root {
--text: black;
--background: white;
--cyan: #048361;
--cyan-light: #39ad8e;
--cyan-dark: #3b695d;
--ratio: 1.5;
--s-5: calc(var(--s-4) / var(--ratio));
--s-4: calc(var(--s-3) / var(--ratio));
--s-3: calc(var(--s-2) / var(--ratio));
--s-2: calc(var(--s-1) / var(--ratio));
--s-1: calc(var(--s0) / var(--ratio));
--s0: 1rem;
--s1: calc(var(--s0) * var(--ratio));
--s2: calc(var(--s1) * var(--ratio));
--s3: calc(var(--s2) * var(--ratio));
--s4: calc(var(--s3) * var(--ratio));
--s5: calc(var(--s4) * var(--ratio));
font-size: calc(1rem + 0.5vw);
font-family: serif;
hyphens: auto;
box-sizing: border-box;
font-variant-numeric: oldstyle-nums;
line-height: 1.5;
}
@media (prefers-color-scheme: dark) {
:root {
--text: white;
--background: black;
--cyan: grey;
}
header svg,
footer svg,
footer img {
filter: invert(100%);
}
}
@media (prefers-color-scheme: light) {
:root {
--text: black;
--background: white;
}
}
body {
margin: 0;
background-color: var(--background);
color: var(--text);
overflow-x: hidden;
}
body>*+* {
margin-top: var(--s1);
}
a {
color: var(--cyan);
}
a:visited {
color: var(--cyan-dark);
}
a:hover {
color: var(--cyan-light);
}
main {
max-width: 800px;
max-width: 60ch;
margin: auto;
padding: var(--s1);
}
header {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: var(--s0);
}
header svg {
width: var(--s4);
}
ul {
padding: 0;
}
li {
line-height: 1.25;
}
.flow>*+* {
margin-top: var(--s0);
}
.flow1>*+* {
margin-top: var(--s1);
}
.flow-3>*+* {
margin-top: var(--s-3);
}
.flow-5>*+* {
margin-top: var(--s-5);
}