blob: a8380b942e5dbc03f2041040f4c41873b441e2ca (
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
|
* {
font-family: sans-serif;
font-size: 10pt;
}
body, html {
padding: 0px;
margin: 0px;
}
body {
background-color: #eee;
}
#main {
width: 85%;
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;
}
#nav a {
color: white;
text-decoration: none;
padding: 2mm;
display: inline-block;
}
#nav ul {
display: inline;
position: absolute;
right: 0mm;
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;
}
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;
}
|