blob: 2f5d00552a0c5ffa34d3e5d5ba4e1282e9e1fdb6 (
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&display=swap');
body {
font-family: "JetBrains Mono", monospace;
background: #333333;
color: white;
}
.container {
width: 80%;
margin: auto;
overflow: hidden;
}
.center {
text-align: center;
}
a {
color: #00e600;
text-decoration: none;
font-size: 20px;
}
a:hover {
color: #00ff00;
}
a:active {
color: #009400;
}
p {
font-size: 20px;
}
footer {
position: fixed;
left: 0;
bottom: 0;
text-align: center;
width: 100%;
}
img.logo {
width: 50%;
height: auto;
}
|