blob: baa1c52a5b42c6d74568112e36f3df9e375d2aef (
plain) (
blame)
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
|
<style>
:root {
--heading-base: 0.9rem;
--scale: 1.2;
}
h1, h2, h3, h4, h5, h6 {
color: #272727;
line-height: 1.2;
font-weight: 700;
margin: 1.5rem 0 0.5rem;
font-size: calc(var(--heading-base) * pow(var(--scale), var(--level)));
}
h1 { --level: 5; }
h2 { --level: 4; }
h3 { --level: 3; }
h4 { --level: 2; }
h5 { --level: 1; }
h6 { --level: 0; }
body {
font: 400 1.06rem/1.8 monospace;
max-width: 740px;
margin: 40px auto;
padding: 0 20px;
}
pre { padding: 12px; overflow-x: auto; }
img { max-width: 100%; }
a, a:visited, .title { color: #3f51b0; }
a { box-shadow: inset 0 -1px #f0f0f0; text-decoration: none; }
blockquote p { color: #343232; }
hr { color: #f0f0f0; }
article h1, h1.title { margin-bottom: 1rem; }
article h1 { text-align: center; margin-bottom: 2rem; }
footer { font-size: 1rem; line-height: 1; }
</style>
|