-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
166 lines (133 loc) · 2.59 KB
/
styles.css
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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
* {
margin: 0px;
padding: 0px;
}
body {
font-family: Verdana, Helvetica, Arial, sans-serif;
font-size: 13px;
}
a {
text-decoration: none;
}
h1 {
font-size: 1.5em;
margin-top: 0px;
margin-bottom: 5px;
color: #ff;
}
h2 {
font-size: 1.3em;
margin-top: 0px;
margin-bottom: 5px;
color: #002274;
}
h3 {
font-size: 1.1em;
margin-bottom: 5px;
}
p {
margin-top: 5px;
margin-bottom: 5px;
}
td {
padding: 2px 5px;
}
/* Rahmen-Definitionen */
div.rahmen {
width: 1250px;
margin: 0px 10px;
}
/* Head */
div.head {
padding: 0px 0px 15px 10px;
background-color: #d4d4d4;
}
/* Menüleiste oben */
div.topnavi {
height: 25px;
padding: 0px 0px 0px 10px;
background-color: #d4d4d4;
border-bottom: 2px solid #000;
}
div.topnavi ul {
float: left;
list-style-type: none;
width: 140px;
}
div.topnavi h3 {
font-size: 1em;
margin: 0px;
}
div.topnavi a {
display: block;
}
div.topnavi a:hover {
background: #bdbdbd;
}
div.topnavi li {
position:relative;
}
div.topnavi ul ul {
position: absolute;
z-index: 2;
display: none;
background-color: #d4d4d4;
}
div.topnavi ul li:hover ul {
display: block;
}
/* Inhalt */
div.inhalt {
padding: 10px 10px 10px 10px;
}
div.inhalt th.right {
text-align: right;
}
div.inhalt td {
text-align: left;
}
div.inhalt td.right {
text-align: right;
}
div.inhalt table {
width: 800px;
border-spacing: 0px;
}
div.inhalt table caption {
font-weight: bold;
}
div.inhalt table tr:nth-child(odd) {
background-color: #e4ebf2;
}
div.inhalt table.analysis {
text-align: left;
margin-top: 10px;
}
div.inhalt table.analysis td {
padding: 0px;
}
div.inhalt table.analysis tr {
background-color: transparent;
}
div.inhalt table.analysis td.sum {
border-top: 2px solid #000;
padding-top: 5px;
}
div.inhalt table.analysis_year {
width: auto;
font-size: 12px;
}
div.inhalt table.analysis_year td.right {
text-align: right;
border-left: 1px dotted black;
}
div.inhalt table.analysis_year th {
width: 80px;
}
div.inhalt table.analysis_year tr.sum td {
border-top: 2px solid #000;
padding-top: 5px;
}
div.inhalt div.one_analysis {
margin-bottom: 40px;
}