blob: 0babb5ea806ea1f79d518a26773899fe64595dd6 (
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
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
|
@import url('https://fonts.googleapis.com/css2?family=Gelasio:ital,wght@0,400..700;1,400..700&display=swap');
.content {
width: 100%;
max-width: 75ch;
}
p {
color: #e6e6e6;
font-family: 'Gelasio';
line-height: 1.3;
font-size: 1.1rem;
}
a {
color: #4DA3FF;
transition: color 0.2s ease, background-color 0.2s ease;
border-radius: 3px;
&:hover {
background-color: #4DA3FF;
color: #121212;
text-decoration: none;
}
}
code {
font-family: 'Roboto Mono';
font-size: 0.9rem;
color: #00ff78;
}
li {
font-family: 'Gelasio';
}
li::marker {
color: #e6e6e6;
}
h1 {
color: #e6e6e6;
line-height: 1;
margin-bottom: 0;
font-family: 'Gelasio';
font-weight: 600;
}
h2 {
color: #e6e6e6;
line-height: 1;
margin-top: 3rem;
margin-bottom: 0;
font-family: 'Gelasio';
font-weight: 600;
}
h3 {
color: #e6e6e6;
line-height: 1;
margin-top: 2rem;
margin-bottom: 0;
font-family: 'Gelasio';
font-weight: 600;
}
p.comment {
color: #888;
}
@media (max-width: 1000px) {
body {
display: block;
padding: 1rem 1rem 3rem;
}
.content {
padding: 0;
}
}
summary {
font-family: 'Gelasio';
color: #888;
&::marker {
color: #888;
}
}
code .path {
color: #888;
}
|