blob: 079ce1185ae001bb13271ad9b062fc4d66a0d9bd (
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
|
.footpara
{
display: inline;
}
#content
{
max-width: 60em;
margin: auto;
}
body
{
background-color: #101010;
color: white;
}
.logo
{
text-align: center;
color: limegreen;
user-select: none;
margin: 0;
padding: 0;
font-family: monospace;
}
.logo:hover
{
color: lime;
}
nav
{
font-family: monospace;
font-size: 1.2em;
text-align: center;
}
ul li
{
list-style-type: none;
}
|