blob: 696faf6e46d3c85325a829402eeb7ffda2ca82cf (
plain)
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
|
html {
--ff-mono: 'IBM Plex Mono', monospace;
--ff-sans: 'IBM Plex Sans', sans-serif;
--ff-tabloid: 'Alfa Slab One', sans-serif;
font-size: 18px;
}
/* layout */
html,
body {
--block-accent-color: #e02345;
margin: 0;
}
main {
width: calc(100% - 1.5em);
max-width: 840px;
margin: 1em auto;
font-family: var(--ff-sans);
}
h1,
h2,
h3 {
font-family: var(--ff-tabloid);
font-weight: normal;
color: var(--block-accent-color);
}
input,
textarea {
font-family: var(--ff-mono);
}
|