blob: be33908622817dfd56792f2871adb79e847d7a41 (
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
|
@use 'fonts.scss';
* {
color: #f0f0f0;
margin: 0;
}
html {
background: #0e0614;
}
h1, h2, h3, h4, h5 {
font-weight: normal;
}
header {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
gap: 1.2rem;
padding: 1rem ;
}
header h1 {
font-style: italic;
}
nav a {
padding: 0 0.1rem;
}
footer {
text-align: center;
}
h1 a {
text-decoration: none;
}
code {
overflow-wrap: anywhere;
}
.content {
max-width: 50rem;
text-wrap: pretty;
margin: auto;
}
.title {
font-size: 5rem;
}
.content * {
padding: 0.5rem 0;
}
|