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
94
95
96
97
98
99
100
|
@import url('https://fonts.googleapis.com/css2?family=Cousine:ital,wght@0,400;0,700;1,400;1,700&display=swap');
.website-name {
font-size: 10px;
font-weight: 700;
line-height: 1.2;
color: #ddd;
text-shadow: 0px 1px 10px #9876aa;
}
html, body {
border: 0;
margin: 0;
background-color: #111;
color: #ddd;
font-family: 'Cousine', monospace, sans-serif;
line-height: 1.3;
}
h1, h2, h3, h4, h5, h6 {
color: #cc7832
}
.code-block {
background-color: #222;
border: solid 1px #333;
padding: 10px;
}
#navbar {
background-color: #222;
width: 100%;
display: flex;
flex-direction: row;
justify-content: flex-start;
align-items: stretch;
gap: 10px;
}
.navbar-element {
background-color: #222;
display: flex;
height: 30px;
text-align: center;
line-height: 30px;
padding: 10px;
}
.navbar-element:hover {
background-color: #888;
transition: 0.2s;
cursor: pointer;
}
.navbar-element > a {
color: #fff;
text-decoration: none;
}
.navbar-element > .highlight {
color: #ffc66d;
}
#main-container {
max-width: 1200px;
margin: 0 auto;
}
#content-container {
box-shadow: 0px 0px 15px 10px rgba(152,118,170,0.05);
}
#content {
padding: 20px;
max-width: 1200px;
background-color: #2b2b2b;
margin: 0 auto;
}
a {
color: #9876aa;
text-decoration: underline;
}
.highlight {
color: #ffc66d;
}
.footer {
font-size: 10px;
}
.redlink {
color: #ff4136;
}
.box {
border: solid 1px #fff;
padding: 10px;
}
|