blob: f73c9979ac169d73d56b5b3c71b469da4d8777e0 (
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
|
body {
background-color:#282c34;
color:#abb2bf;
max-width:72ch;
text-align:justify;
margin:auto;
padding:2ch;
}
a {
text-decoration:none;
color:#61afef;
}
h1 {
font-size:2rem;
text-align:center;
}
h2 {
font-size:1.5rem;
text-align:center;
}
h3 {
font-size:1rem;
text-align:center;
}
.content { min-height: calc(100vh - 20ch); }
.navbar a:link { color:#abb2bf; }
.navbar a:visited { color:#abb2bf; }
.navbar a:focus { color:#61afef; }
.navbar a:hover { color:#61afef; }
.navbar a:active { color:#61afef; }
.navbar {
display:flex;
flex-direction:row;
font-size:24px;
text-align:right;
}
.navitem { flex:1; }
.navhome { text-align:left; }
|