summaryrefslogtreecommitdiff
path: root/static/style.css
blob: 9ae185878cd4ba7b4bcff11e778cef2177591e3d (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
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
* {
	font-family: sans-serif;
}

body, html {
	padding: 0px;
	margin: 0px;
}

#main {
	width: 85%;
	margin: 7.5mm auto 10mm;
	padding: 0px;
	border: 1px solid black;
	border-top: none;
}

#nav, #footer {
	color: white;
	background-color: black;
	font-size: 10pt;
}

#nav a, #footer a {
	color: white;
}

#content {
	margin: 1mm 2mm 1mm;
}

#footer {
	text-align: center;
}

#nav a {
	text-decoration: none;
}

.fullwidth {
	width: 100%;
}

.emptytab {
	text-align: center;
	font-style: italic;
}

#nav {
	position: relative;
}

#nav ul {
	position: absolute;
	top: 0px;
	right: 0px;
	list-style: none;
}

#nav ul li {
	float: right;
	padding: 0px 2mm 0px;
}

#nav ul li:hover {
	background-color: white;
}

#nav ul li:hover a {
	color: black;
}