summaryrefslogtreecommitdiff
path: root/static/style.css
blob: fd43864f7999152f0d300f794f49e037c0179b66 (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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
* {
	font-family: sans-serif;
	font-size: 10pt;
}

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

body {
	background-color: #eee;
}

#main {
	width: 70%;
	min-width: 150mm;
	margin: 7.5mm auto 10mm;
	padding: 0px;
}

#content {
	background-color: white;
	margin: 0px;
	padding: 1mm 2mm 4mm;
	border: 1px solid #888;
	border-top: none;
}

#footer {
	font-size: 10pt;
	margin: 5mm auto 0mm;
	width: 100%;
	text-align: center;
}

#nav {
	position: relative;
	color: white;
	background-color: #888;
	font-size: 10pt;
	padding: 0mm;
	text-align: right;
}

#nav a {
	color: white;
	text-decoration: none;
	padding: 2mm;
	display: inline-block;
}

#nav ul {
	display: inline;
	list-style: none;
}

#nav ul li {
	display: inline;
}

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

a.apptitle {
	background-color: #23a;
	letter-spacing: 0.2ex;
	position: absolute;
	top: 0px;
	left: 0px;
}

h1 {
	font-size: 16pt;
	padding: 0px;
	margin: 1mm 0mm 2mm;
}

h2 {
	font-size: 14pt;
	padding: 0px;
	margin: 1mm 0mm 2mm;
}

.fullwidth {
	width: 100%;
}

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

table {
	border-collapse: collapse;
}

table thead tr th {
	border-bottom: 1px solid black;
	text-align: left;
}

table tbody tr td {
	border-top: 1px solid #eee;
}

table tbody tr:first-child td {
	border-top: none;
}

table tbody tr:hover {
	background-color: #eee;
}

input.quant {
	width: 3em;
}

.hint {
	font-size: 8pt;
	font-weight: normal;
	font-style: italic;
	color: #777;
}

div.error, div.success {
	border: 1px solid #8d8d8d;
	min-height: 40px;
	color: #222;
	padding: 1em;
	margin: 3mm 0mm 3mm;
	text-align: center;
}

div.error {
	background: #ddd url(error.png) no-repeat top left;
}

div.success {
	background: #ddd url(success.png) no-repeat top left;
}

form.fancy {
	width: 80mm;
	margin: auto;
}

form.fancy input, form.fancy select {
	height: 4ex;
	width: 100%;
}