blob: 991444565a3c51b1aa52fcf18acec881817b7b37 (
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
|
@font-face {
font-family: 'comicsans';
src: url('/fonts/ComicMono.ttf') format('truetype'),
url("/fonts/ComicMono.ttf") format("truetype");
}
body {
background-color: #1a202c;
font-family: "comicsans", monospace;
color: #ffffff;
font-size: 1.125rem;
line-height: 1.75rem;
}
h1,
h2,
h3 {
font-weight: bold;
font-size: 1.125rem;
}
h1 {
color: #BEF264;
text-align: center;
width: 100%;
}
h2 {
color: #FCD34D;
}
h2:before {
content: "## ";
}
h3 {
color: #86EFAC;
}
h3:before {
content: "### ";
}
section {
padding: 1rem;
}
blockquote {
margin: 0;
font-weight: bold;
}
a {
display: block;
color: #93C5FD;
text-decoration: none;
}
a:hover {
color: #3730A3;
}
a:before {
content: "=> ";
}
pre {
overflow-x: auto;
}
code.hljs {
background-color: #232323;
font-size: 1.125rem;
}
|