-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdesign-menue2.css
executable file
·330 lines (288 loc) · 5.32 KB
/
design-menue2.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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
/* design-menue - cascading style sheet (css) */
body {
font-family: luxi sans, trebuchet ms, bitstream vera sans, sans-serif;
background-color: #fdfdfd;
color: #555753;
margin-top: 0em;
}
/*
body {
font-family: luxi sans, trebuchet ms, bitstream vera sans, sans-serif;
background-color: #fdfdfd;
color: #555753;
}
*/
pre.programmcode {
font-family: bitstream vera sans mono, monospace;
font-size: small;
color: #000080;
}
hr {
border: none;
border-top: 1px dotted #555753;
color: #eeeeee;
background-color: #eeeeee;
height: 1px;
}
/* Links */
a.extern:link, a.extern:visited, a.extern:active, a.extern:hover
{
background: url(./images/external.png) center right no-repeat;
padding-right: 12px;
text-decoration: none;
color: #ce5c00;
}
a.extern:active, a.extern:hover
{
text-decoration: underline;
}
a:link, a:visited, a:active, a:hover
{
text-decoration: none;
color: #ce5c00;
}
a:active, a:hover
{
text-decoration: underline;
}
/* Responsive */
@media screen {
/* For mobile: */
.legend .area {
width: 100%;
}
.legend .poi {
width: 100%;
}
.legend .mtblines{
display: block;
}
}
@media screen and (min-width: 650px) {
/* For tablet: */
.legend .area {
width: 100%;
}
.legend .poi {
width: 50%;
}
.legend .mtblines{
display: block;
}
}
@media screen and (min-width: 1000px) {
/* For desktop: */
.legend .area {
width: 50%;
}
.legend .poi {
width: 33%;
}
.legend .mtblines{
display: flex;
}
}
/* Seitenstruktur */
#title {
color: #555753;
width: 100%;
float: left;
}
#cssmenu {
width: 100%;
float: left;
position: -webkit-sticky;
position: sticky;
top: 0;
z-index: 200;
}
/*
#cssmenu {
width: 100%;
float: left;
}
*/
#content {
width: 100%;
display: inline-block;
}
/*
#content {
width: 100%;
float: left;
}
*/
#footer {
width: 100%;
float: left;
}
/* Tabellen */
table {
/* border: 1px dotted #555753; */
cellpadding: 0;
cellspacing: 0;
margin-top: 1em;
margin-bottom: 1em;
}
table.style2 {
border: none;
text-align: left;
margin-bottom: 0em;
}
th {
border: none;
background-color: #b0c69b;
}
td {
border: none;
}
tr.zeilenfarbe {
background-color: #d3d7cf;
}
/* CSS-Menue */
#cssmenu ul {
background: #555753;
height: 35px;
list-style: none;
margin: 0;
padding: 0;
}
/* Link Position Korrektur mit sticky Menü */
:target::before {
content: "";
display: block;
height: 50px; /* fixed header height*/
margin: -50px 0 0; /* negative fixed header height */
}
#cssmenu li {
float: left;
padding: 0px;
}
#cssmenu li a {
background: #555753 url('./images/seperator.gif') bottom right no-repeat;
display: block;
font-weight: normal;
line-height: 35px;
margin: 0px;
padding: 0px 20px;
text-align: center;
text-decoration: none;
}
#cssmenu > ul > li > a {
color: #ffffff;
}
#cssmenu ul ul a {
color: #ffffff;
}
#cssmenu li > a:hover,
#cssmenu ul li:hover > a {
background: #2580a2 url('./images/hover.png') bottom center no-repeat;
color: #FFFFFF;
text-decoration: none;
}
#cssmenu li ul {
background: #555753;
display: none;
height: auto;
padding: 0px;
margin: 0px;
border: 0px;
position: absolute;
width: 200px;
z-index: 200;
/*top:1em;
/*left:0;*/
}
#cssmenu li:hover ul {
display: block;
}
#cssmenu li li {
background: url('./images/sub_sep.gif') bottom left no-repeat;
display: block;
float: none;
margin: 0px;
padding: 0px;
width: 200px;
}
#cssmenu li:hover li a {
background: none;
}
#cssmenu li ul a {
display: block;
height: 35px;
line-height:35px;
margin: 0px;
padding: 0px 15px 0px 15px;
text-align: left;
}
#cssmenu li ul a:hover,
#cssmenu li ul li:hover > a {
background: #2580a2 url('./images/hover_sub.png') center left no-repeat;
border: 0px;
color: #ffffff;
text-decoration: none;
}
#cssmenu p {
clear: left;
}
/* Legende */
.legend {
margin-top: 1em;
margin-bottom: 1em;
display: block;
width: 100%;
}
.legend .subtitle{
padding-top: 1em;
padding-bottom: 1em;
clear: left;
}
.legend .area {
min-height: 60px;
display: flex;
align-items: center;
float: left;
}
.legend .lines{
min-height: 60px;
display: flex;
align-items: center;
float: left;
width: 100%;
}
.legend .mtblines {
min-height: 60px;
align-items: center;
float: left;
width: 100%;
}
.legend .area img, .legend .lines img {
border-width: 1px; border-color: lightgray; border-style: solid; width: 100px; height: 60px;
}
.legend .mtblines img {
width: 431px; height: 61px; max-width: 100%; object-fit: contain;
}
.legend .poi {
min-height: 35px;
display: flex;
align-items: center;
float: left;
}
.legend .poi img {
border-width: 1px; border-color: lightgray; border-style: solid; width: 35px; height: 35px;
}
.legend .description {
text-align: left;
padding-left: 4px;
}
.legend .mtblines .description {
padding-bottom: 12px;
}
.legend:after {
visibility: hidden;
display: block;
font-size: 0;
content: " ";
clear: both;
height: 0;
}