blob: d260d69115ad99b15e0c369ab9cb28e1c582b88c (
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
|
/* General */
body {
margin-left: 0px;
margin-right: 0px;
margin-top: 0px;
background-color: black;
color: white;
font-family: sans-serif;
}
a { text-decoration: none; }
a:hover {
text-decoration: underline;
text-decoration-thickness: 0.055em;
}
/* Navbar */
nav { background-color: #4acaa4; }
nav a {
margin-left: 0.2em;
font-size: 1.6em;
font-weight: normal;
color: white;
}
nav a:first-child .label { font-weight: bold; }
nav .label { font-size: 0.7em; }
nav .this-section { font-style: italic; }
nav hr {
margin: 0px;
color: white;
}
|