Mercurial > hg > MPIWGWeb
annotate css/mpiwg.css @ 261:2028488642cf new_pro_struct
omit subprojects element if empty.
author | casties |
---|---|
date | Thu, 07 Aug 2014 18:02:14 +0200 |
parents | 4eddd388d490 |
children | 798cb3663837 |
rev | line source |
---|---|
2 | 1 /* MPIWG website style sheet |
2 * | |
11 | 3 * (c) 2013 MPIWG Berlin |
4 * Author: Robert Casties | |
2 | 5 */ |
106 | 6 |
119 | 7 |
2 | 8 body { |
9 margin: 0; | |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
10 font-family: Verdana, Arial, sans-serif; |
2 | 11 background-color: #fdf8ef; |
12 font-size: 12px; | |
13 } | |
14 | |
15 /* | |
16 * global styles | |
17 */ | |
18 img { | |
19 border: none; | |
20 } | |
21 | |
182 | 22 a, |
23 .linklike { | |
4 | 24 color: #d45a00; |
2 | 25 text-decoration: none; |
26 } | |
27 | |
182 | 28 a:hover, |
29 .linklike:hover { | |
2 | 30 text-decoration: underline; |
31 } | |
32 | |
25 | 33 /* link-classes (with icons) */ |
90 | 34 a.internal, |
35 a.more { | |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
36 background: url(../images/internal.png) center left no-repeat; |
25 | 37 padding-left: 10px; |
2 | 38 } |
39 | |
40 a.download { | |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
41 background: url(../images/download.png) center left no-repeat; |
25 | 42 padding-left: 15px; |
2 | 43 } |
44 | |
45 a.external { | |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
46 background: url(../images/external.png) center left no-repeat; |
2 | 47 padding-left: 15px; |
48 } | |
25 | 49 |
50 a.down { | |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
51 background: url(../images/down.png) center left no-repeat; |
25 | 52 padding-left: 15px; |
2 | 53 } |
54 | |
86 | 55 a.jumptop { |
56 background: url(../images/jump_top.png) center left no-repeat; | |
57 padding-left: 15px; | |
2 | 58 } |
59 | |
86 | 60 a.email { |
61 background: url(../images/email.png) center left no-repeat; | |
199 | 62 padding-left: 16px; |
86 | 63 } |
64 | |
124 | 65 a.disk { |
146 | 66 background: url(../images/disk_link.png) center left no-repeat; |
67 padding: 0 0 3px 25px; | |
124 | 68 } |
69 | |
143 | 70 a.namelink { |
71 color: #3b4186; | |
72 } | |
73 | |
4 | 74 h1 { |
75 color: #3b4186; | |
11 | 76 font-size: 20px; |
77 font-weight: normal; | |
140 | 78 margin: 1em 0 0.5em 0; |
2 | 79 } |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
80 |
11 | 81 h1:first-child { |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
82 /* does this work correctly? */ |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
83 margin-top: 0; |
11 | 84 } |
2 | 85 |
4 | 86 h2 { |
87 color: #3b4186; | |
5 | 88 font-size: 16px; |
4 | 89 font-weight: normal; |
140 | 90 margin: 1em 0 0.5em 0; |
91 } | |
92 | |
4 | 93 h3 { |
94 color: #3b4186; | |
5 | 95 font-size: 14px; |
4 | 96 font-weight: normal; |
6 | 97 margin: 0; |
4 | 98 } |
99 | |
97 | 100 h3 + h3 { |
101 /* h3 directly after h3 has a margin */ | |
102 margin-top: 0.5em; | |
103 } | |
104 | |
2 | 105 h1 a { |
106 /* a header with a link looks like a header */ | |
107 color: inherit; | |
108 font-weight: inherit; | |
109 text-decoration: none; | |
110 } | |
111 | |
143 | 112 h2 a { |
113 /* a header with a link looks like a header */ | |
114 color: inherit; | |
115 font-weight: inherit; | |
116 text-decoration: none; | |
117 } | |
118 | |
7 | 119 p { |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
120 margin: 0.5em 0; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
121 line-height: 1.5; |
7 | 122 } |
2 | 123 |
100 | 124 ul.plain { |
125 list-style-type: none; | |
140 | 126 padding: 0; |
100 | 127 } |
128 ul.plain > li { | |
129 margin-top: 0.5em; | |
130 } | |
153 | 131 ul.plain > li:first-child { |
132 margin-top: 0; | |
133 } | |
100 | 134 |
11 | 135 ul.inline { |
90 | 136 display: inline; |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
137 padding: 0; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
138 margin: 0; |
11 | 139 } |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
140 |
11 | 141 ul.inline li { |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
142 display: inline; |
11 | 143 } |
144 | |
166 | 145 .hasright { |
146 position: relative; | |
147 } | |
148 | |
149 .hasright .right { | |
150 position: absolute; | |
151 right: 0; | |
152 margin-right: 0.5em; | |
153 } | |
154 | |
140 | 155 .clear { |
156 clear: both; | |
157 } | |
158 | |
143 | 159 .blue { |
160 color: #3b4186; | |
161 } | |
162 | |
157 | 163 .javascriptonly { |
164 /* initially hidden, shown by javascript */ | |
165 display: none; | |
166 } | |
167 | |
90 | 168 /* |
169 * table-like rows and columns | |
170 */ | |
171 | |
11 | 172 div.rows { |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
173 display: table; |
11 | 174 } |
175 | |
176 div.row { | |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
177 display: table-row; |
11 | 178 } |
179 | |
112 | 180 div.row > div.col { |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
181 display: table-cell; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
182 vertical-align: top; |
11 | 183 } |
184 | |
112 | 185 div.row > div.col:first-child { |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
186 /* first block has no left margin */ |
112 | 187 padding-left: 0; |
188 /* padding-left: 0 !important; */ | |
11 | 189 } |
8 | 190 |
2 | 191 /* |
11 | 192 * page wrapper and header |
2 | 193 */ |
194 #wrapper { | |
148 | 195 position: relative; |
196 z-index: 5; | |
4 | 197 width: 900px; |
2 | 198 margin: 0 auto; |
4 | 199 padding: 10px 40px 10px 20px; |
2 | 200 background-color: #fcf2df; |
4 | 201 box-shadow: 0 0 5px 3px #d0d0d0; |
2 | 202 } |
203 | |
204 #header { | |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
205 display: block; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
206 position: relative; |
8 | 207 height: 95px; |
2 | 208 margin: 0 0 10px 0; |
209 } | |
210 | |
211 #header div.title { | |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
212 position: absolute; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
213 left: 0; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
214 top: 25px; |
2 | 215 } |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
216 |
8 | 217 #header div.title img { |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
218 width: 661px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
219 height: 40px; |
8 | 220 } |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
221 |
2 | 222 #header div.logo { |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
223 position: absolute; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
224 right: 0; |
8 | 225 } |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
226 |
8 | 227 #header div.logo img { |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
228 width: 87px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
229 height: 88px; |
2 | 230 } |
231 | |
6 | 232 /* |
233 * Main Navigation | |
234 */ | |
2 | 235 #mainnav { |
8 | 236 display: block; |
4 | 237 position: relative; |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
238 font-family: Verdana, Arial, sans-serif; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
239 font-size: 12px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
240 border-top: 8px solid #fab775; |
6 | 241 padding-top: 5px; |
8 | 242 margin-bottom: 15px; |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
243 /* make iPhone-Safari not botch text size */ |
12 | 244 -webkit-text-size-adjust: 100%; |
6 | 245 } |
12 | 246 |
6 | 247 #mainnav ul { |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
248 padding: 0; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
249 margin: 0; |
6 | 250 } |
12 | 251 |
6 | 252 #mainnav li.sec { |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
253 display: inline; |
6 | 254 border-top: 8px solid #fab775; |
255 margin: 0 35px 0 0; | |
2 | 256 padding-top: 5px; |
257 } | |
258 | |
6 | 259 #mainnav li.sec:hover { |
8 | 260 border-top: 8px solid #d45a00; |
2 | 261 } |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
262 |
2 | 263 #mainnav a { |
4 | 264 color: #696968; |
2 | 265 outline: none; |
266 } | |
267 | |
268 #mainnav a:hover { | |
269 color: #000000; | |
270 text-decoration: none; | |
271 } | |
272 | |
6 | 273 #mainnav li.sec.on { |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
274 border-top: 8px solid #d45a00; |
2 | 275 } |
276 | |
6 | 277 #mainnav li.sec.on a { |
8 | 278 color: #d45a00; |
2 | 279 outline: none; |
280 font-weight: bold; | |
281 } | |
282 | |
6 | 283 #mainnav li.sec.lang { |
4 | 284 position: absolute; |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
285 right: 0; |
4 | 286 top: -8px; |
2 | 287 margin-right: 0; |
288 } | |
289 | |
8 | 290 /* |
291 * breadcrumbs | |
292 */ | |
293 #breadcrumbs { | |
294 font-size: 11px; | |
295 color: #6a4d3c; | |
296 margin-bottom: 5px; | |
297 } | |
298 | |
299 #breadcrumbs a { | |
300 color: #6a4d3c; | |
301 } | |
302 | |
303 #breadcrumbs .selected { | |
304 font-weight: bold; | |
305 } | |
306 | |
307 /* | |
308 * main section wrapper | |
309 */ | |
310 #mainrow { | |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
311 display: table-row; |
8 | 312 } |
313 | |
2 | 314 /* |
315 * subnavigation | |
316 */ | |
317 div.leftbox { | |
8 | 318 display: table-cell; |
319 vertical-align: top; | |
2 | 320 width: 170px; |
8 | 321 border-top: 3px solid #dccbae; |
2 | 322 } |
323 | |
324 div.subnav { | |
325 font-size: 11px; | |
326 } | |
327 | |
8 | 328 div.subnav ul { |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
329 margin: 0; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
330 padding: 0; |
8 | 331 } |
332 | |
333 div.subnav li { | |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
334 list-style-type: none; |
2 | 335 border-bottom: 1px solid #dccbae; |
8 | 336 padding: 3px 6px 6px 3px; |
2 | 337 } |
338 | |
339 div.subnav .sn_on { | |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
340 padding-left: 6px; |
83 | 341 background-color: #d45a00; |
2 | 342 } |
343 | |
344 div.subnav .sn_on a { | |
8 | 345 color: #fcf2df; |
2 | 346 font-weight: bold; |
347 } | |
348 | |
25 | 349 div.subnav h2.subnavhead { |
350 background-color: white; | |
351 color: #d45a00; | |
352 border-bottom: 1px solid #dccbae; | |
353 font-size: 11px; | |
354 font-weight: bold; | |
355 margin: 0; | |
356 padding: 5px 3px; | |
357 } | |
358 | |
359 div.subnav li.dept { | |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
360 padding-left: 18px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
361 list-style-position: inside; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
362 list-style-image: url(../images/internal.png); |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
363 text-indent: -14px; |
25 | 364 } |
365 | |
258 | 366 div.subnav li.dept.lv1 { |
367 padding-left: 3em; | |
368 } | |
369 div.subnav li.dept.lv2 { | |
370 padding-left: 4em; | |
371 } | |
372 div.subnav li.dept.lv3 { | |
373 padding-left: 5em; | |
374 } | |
375 div.subnav li.dept.lv4 { | |
376 padding-left: 6em; | |
377 } | |
378 div.subnav li.dept.lv5 { | |
379 padding-left: 7em; | |
380 } | |
381 div.subnav li.dept.lv6 { | |
382 padding-left: 8em; | |
383 } | |
384 | |
25 | 385 div.subnav li.dept .type { |
386 font-style: italic; | |
387 color: #6a4d3c; | |
388 } | |
389 | |
390 div.subnav li.dept.sn_on .type { | |
391 color: #f9f4e1; | |
392 } | |
393 | |
8 | 394 div.subnavbox { |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
395 /* navigation below e.g. research projects */ |
8 | 396 font-size: 11px; |
397 margin-top: 30px; | |
398 } | |
399 | |
2 | 400 div.subnavbox h2 { |
401 font-size: 11px; | |
402 color: #b69f7b; | |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
403 padding-bottom: 3px; |
8 | 404 border-bottom: 1px solid #dccbae; |
2 | 405 margin-top: 20px; |
406 } | |
407 | |
408 /* | |
6 | 409 * main section |
2 | 410 */ |
6 | 411 div.main { |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
412 display: table-cell; |
8 | 413 vertical-align: top; |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
414 background-color: white; |
8 | 415 border-top: 3px solid #dccbae; |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
416 padding: 20px; |
8 | 417 } |
418 | |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
419 div.main div.row>div.col { |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
420 /* col default padding */ |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
421 padding-left: 20px; |
2 | 422 } |
112 | 423 div.main div.row>div.col:first-child { |
424 /* first col has no left-padding */ | |
425 padding-left: 0; | |
426 } | |
86 | 427 div.main div.center { |
428 /* make sure center does not collapse */ | |
429 min-width: 460px; | |
430 } | |
431 | |
130 | 432 div.main div.center.wide { |
433 /* make sure center does not collapse */ | |
434 min-width: 690px; | |
435 } | |
436 | |
86 | 437 |
11 | 438 /* |
439 * frontpage | |
440 */ | |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
441 div.main.home { |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
442 background-color: transparent; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
443 border-top: 0; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
444 padding: 0; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
445 } |
2 | 446 |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
447 div.main.home b { |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
448 /* bold is blue */ |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
449 color: #3b4186; |
8 | 450 } |
2 | 451 |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
452 div.main.home div.row.triple>div.col { |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
453 /* frontpage col width */ |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
454 width: 286px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
455 padding-left: 21px; |
2 | 456 } |
112 | 457 div.main.home div.row.triple>div.col:first-child { |
458 /* first col has no left-padding */ | |
459 padding-left: 0; | |
460 } | |
90 | 461 div.box h2, |
462 h2.line { | |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
463 /* more-links in title are right */ |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
464 position: relative; |
2 | 465 } |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
466 |
153 | 467 div.box h2 a, |
468 h2.line a.more { | |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
469 /* more-links in title are right */ |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
470 position: absolute; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
471 right: 0; |
153 | 472 bottom: 5px; |
473 color: #d45a00; | |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
474 /* more-links in title are small */ |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
475 font-size: 12px; |
2 | 476 } |
477 | |
120
544a3c1e7f07
CLOSED - # 56: Research/ Research Units: Titel zweizeilig
casties
parents:
118
diff
changeset
|
478 div.box h2.withmore, |
544a3c1e7f07
CLOSED - # 56: Research/ Research Units: Titel zweizeilig
casties
parents:
118
diff
changeset
|
479 h2.line.withmore { |
544a3c1e7f07
CLOSED - # 56: Research/ Research Units: Titel zweizeilig
casties
parents:
118
diff
changeset
|
480 /* leave space for 'more' text */ |
544a3c1e7f07
CLOSED - # 56: Research/ Research Units: Titel zweizeilig
casties
parents:
118
diff
changeset
|
481 padding-right: 3em; |
544a3c1e7f07
CLOSED - # 56: Research/ Research Units: Titel zweizeilig
casties
parents:
118
diff
changeset
|
482 } |
544a3c1e7f07
CLOSED - # 56: Research/ Research Units: Titel zweizeilig
casties
parents:
118
diff
changeset
|
483 |
2 | 484 /* |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
485 * front page feature teaser |
2 | 486 */ |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
487 div.main.home div.teaser { |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
488 background-color: #f4e0c7; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
489 } |
2 | 490 |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
491 div.main.home div.teaser div.box { |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
492 /* teaser box needs no margins */ |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
493 margin: 0; |
2 | 494 } |
495 | |
8 | 496 div.teaser_image { |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
497 position: relative; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
498 width: 593px; |
6 | 499 height: 351px; |
2 | 500 } |
501 | |
8 | 502 div.teaser_image div.caption { |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
503 /* caption inside image */ |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
504 position: absolute; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
505 bottom: 0; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
506 padding: 3px; |
6 | 507 text-align: right; |
508 color: white; | |
2 | 509 font-size: 10px; |
6 | 510 opacity: 0.8; |
511 background-color: gray; | |
512 /* background-color: rgba(80,80,80,0.6); */ | |
2 | 513 } |
108
782477730916
CLOSED - # 57: Research/ Research Units: Karussell f?r die Projekte in einem Department
casties
parents:
104
diff
changeset
|
514 div.teaser_image div.caption a { |
782477730916
CLOSED - # 57: Research/ Research Units: Karussell f?r die Projekte in einem Department
casties
parents:
104
diff
changeset
|
515 /* links in caption inside image */ |
782477730916
CLOSED - # 57: Research/ Research Units: Karussell f?r die Projekte in einem Department
casties
parents:
104
diff
changeset
|
516 color: white; |
782477730916
CLOSED - # 57: Research/ Research Units: Karussell f?r die Projekte in einem Department
casties
parents:
104
diff
changeset
|
517 } |
2 | 518 |
8 | 519 div.teaser_text { |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
520 padding-right: 21px; |
2 | 521 } |
108
782477730916
CLOSED - # 57: Research/ Research Units: Karussell f?r die Projekte in einem Department
casties
parents:
104
diff
changeset
|
522 |
8 | 523 /* feature number */ |
524 div.teaser_text div.feature_number { | |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
525 position: absolute; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
526 right: 14px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
527 top: 5px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
528 font-family: Georgia, Times, serif; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
529 font-size: 26px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
530 color: #887163; |
2 | 531 } |
8 | 532 /* feature title */ |
533 div.teaser_text h1 { | |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
534 font-size: 16px; |
6 | 535 font-weight: normal; |
536 margin-top: 0; | |
2 | 537 } |
22 | 538 /* current research topic */ |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
539 div.teaser_text h3 { |
6 | 540 color: #887163; |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
541 margin-bottom: 3px; |
7 | 542 margin-top: 15px; |
2 | 543 } |
6 | 544 /* feature date */ |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
545 div.teaser_text div.date { |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
546 color: #3b4186; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
547 padding-top: 20px; |
6 | 548 margin-bottom: 20px; |
2 | 549 } |
8 | 550 |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
551 /* teaser slider */ |
108
782477730916
CLOSED - # 57: Research/ Research Units: Karussell f?r die Projekte in einem Department
casties
parents:
104
diff
changeset
|
552 div.teaser div.box div.slidebutton { |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
553 top: 150px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
554 width: 18px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
555 height: 24px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
556 padding-top: 11px; |
21 | 557 } |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
558 |
108
782477730916
CLOSED - # 57: Research/ Research Units: Karussell f?r die Projekte in einem Department
casties
parents:
104
diff
changeset
|
559 div.teaser div.box div.slidebutton.prev { |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
560 background-image: url(../images/slider_prev_bg.png); |
21 | 561 } |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
562 |
108
782477730916
CLOSED - # 57: Research/ Research Units: Karussell f?r die Projekte in einem Department
casties
parents:
104
diff
changeset
|
563 div.teaser div.box div.slidebutton.next { |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
564 background-image: url(../images/slider_next_bg.png); |
21 | 565 } |
566 | |
108
782477730916
CLOSED - # 57: Research/ Research Units: Karussell f?r die Projekte in einem Department
casties
parents:
104
diff
changeset
|
567 /* book slider */ |
151 | 568 div.newbooks div.slider.row.double > div.col > div.mini { |
569 width: 123px; | |
108
782477730916
CLOSED - # 57: Research/ Research Units: Karussell f?r die Projekte in einem Department
casties
parents:
104
diff
changeset
|
570 } |
151 | 571 div.newbooks div.slider.row.double > div.col > div.mini img { |
108
782477730916
CLOSED - # 57: Research/ Research Units: Karussell f?r die Projekte in einem Department
casties
parents:
104
diff
changeset
|
572 width: 100px; |
782477730916
CLOSED - # 57: Research/ Research Units: Karussell f?r die Projekte in einem Department
casties
parents:
104
diff
changeset
|
573 } |
151 | 574 div.newbooks div.slider.row.double > div.col { |
575 /* non-ajax version has padding-left (even first-child) */ | |
576 padding-left: 20px; | |
577 } | |
578 div.newbooks div.slidewindow > div.slider.row.double > div.col:first-child { | |
579 /* ajax version first-child has no padding-left */ | |
580 padding-left: 0; | |
581 } | |
582 div.newbooks div.slidebutton { | |
108
782477730916
CLOSED - # 57: Research/ Research Units: Karussell f?r die Projekte in einem Department
casties
parents:
104
diff
changeset
|
583 top: 80px; |
782477730916
CLOSED - # 57: Research/ Research Units: Karussell f?r die Projekte in einem Department
casties
parents:
104
diff
changeset
|
584 } |
782477730916
CLOSED - # 57: Research/ Research Units: Karussell f?r die Projekte in einem Department
casties
parents:
104
diff
changeset
|
585 |
8 | 586 /* |
11 | 587 * toolboxes |
588 */ | |
25 | 589 div.tool.box { |
76 | 590 font-family: Georgia, Times, serif; |
591 font-style: italic; | |
592 font-size: 16px; | |
593 color: #887163; | |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
594 background-color: #efeeec; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
595 padding: 20px; |
11 | 596 box-shadow: 0 0 1px 1px #e0e0e0; |
597 } | |
598 | |
25 | 599 div.tool.box a { |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
600 color: #3b4186; |
11 | 601 } |
602 | |
25 | 603 div.tool.box div.searchbox { |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
604 /* only to make it shrink-wrap */ |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
605 display: table-cell; |
11 | 606 } |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
607 |
25 | 608 div.tool.box div.searchbox input.text { |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
609 height: 20px; |
66
68b3d71eed27
formatting for preprint list. javascript for foldable divs.
casties
parents:
65
diff
changeset
|
610 width: 370px; |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
611 background-color: #9fa0a7; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
612 color: white; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
613 font-size: 14px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
614 font-style: italic; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
615 border: 0; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
616 padding: 3px; |
11 | 617 } |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
618 |
25 | 619 div.tool.box div.searchbox input.submit { |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
620 /* submit uses border-box. don't ask */ |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
621 height: 26px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
622 width: 26px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
623 border: 0; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
624 padding: 2px 3px 4px 3px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
625 /* TODO: this should be an image */ |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
626 background-color: #ee7f2d; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
627 color: white; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
628 font-size: 14px; |
11 | 629 } |
630 | |
25 | 631 div.tool.box div.searchbox div.extended { |
90 | 632 font-family: Verdana, Arial, sans-serif; |
633 font-size: 12px; | |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
634 text-align: right; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
635 padding: 5px 30px 5px 3px; |
11 | 636 } |
637 | |
25 | 638 div.tool.box h3 { |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
639 font-family: Georgia, Times, serif; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
640 font-style: italic; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
641 font-size: 16px; |
11 | 642 color: #887163; |
643 margin: 0.5em 0; | |
644 } | |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
645 |
25 | 646 div.tool.box h3:first-child { |
30 | 647 /* top header has no margin */ |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
648 margin-top: 0; |
12 | 649 } |
11 | 650 |
25 | 651 div.tool.box ul { |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
652 margin: 0; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
653 padding: 0; |
24 | 654 } |
655 | |
32 | 656 div.tool.box div.options { |
657 margin-top: 10px; | |
658 } | |
659 | |
25 | 660 div.tool.box div.options li { |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
661 list-style-type: none; |
24 | 662 margin: 0.5em 0; |
663 } | |
664 | |
25 | 665 div.tool.box div.atoz { |
11 | 666 color: #887163; |
79 | 667 font-family: Verdana, Arial, sans-serif; |
164 | 668 font-style: normal; |
11 | 669 font-size: 14px; |
164 | 670 /* try to make a-z fit on one line */ |
671 word-spacing: -1px; | |
32 | 672 margin-top: 10px; |
11 | 673 } |
674 | |
25 | 675 div.tool.box input.checkbox, |
676 div.tool.box input.radio { | |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
677 /* checkbox uses border-box. don't ask */ |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
678 width: 20px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
679 height: 20px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
680 margin: 0; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
681 /* TODO: this should be an image */ |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
682 background-color: white; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
683 } |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
684 |
76 | 685 /* project page toolbox with thumbs */ |
118 | 686 div.tool.box div.thumbs { |
30 | 687 width: 420px; |
688 } | |
689 | |
118 | 690 div.thumbs div.thumb { |
76 | 691 display: inline; |
692 } | |
118 | 693 div.thumbs div.thumb img { |
76 | 694 width: 55px; |
695 height: 34px; | |
696 } | |
697 | |
698 | |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
699 /* |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
700 * service box on frontpage |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
701 */ |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
702 div.box h2.service { |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
703 /* title has no line */ |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
704 border: 0; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
705 } |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
706 |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
707 div.tool.box.service { |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
708 margin-top: 0; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
709 padding: 0; |
15 | 710 } |
711 | |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
712 div.tool.box.service div.row > div.col { |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
713 padding: 0; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
714 } |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
715 div.tool.box.service div.search { |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
716 width: 200px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
717 height: 20px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
718 padding: 26px 0 26px 16px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
719 border-bottom: 1px solid #9fa0a7; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
720 } |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
721 div.tool.box.service div.search.both { |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
722 height: 44px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
723 padding: 14px 0 14px 16px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
724 } |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
725 div.tool.box.service div.searchicon { |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
726 width: 38px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
727 height: 40px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
728 text-align: center; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
729 padding: 16px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
730 border-bottom: 1px solid #9fa0a7; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
731 } |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
732 div.tool.box.service div.icon { |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
733 width: 71px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
734 height: 70px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
735 text-align: center; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
736 line-height: 2.5; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
737 padding: 1px 0; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
738 border-left: 1px solid #9fa0a7; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
739 } |
76 | 740 div.tool.box.service div.icon a { |
741 color: black; | |
742 font-size: 12px; | |
743 font-family: Verdana, Arial, sans-serif; | |
744 font-style: normal; | |
745 } | |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
746 div.tool.box.service div.icon.first { |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
747 border-left: 0; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
748 width: 70px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
749 } |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
750 div.tool.box.service div.searchbox { |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
751 display: block; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
752 } |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
753 div.tool.box.service div.searchbox input.text { |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
754 width: 170px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
755 height: 17px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
756 font-size: 12px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
757 padding: 1px 3px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
758 } |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
759 div.tool.box.service div.searchbox input.submit { |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
760 height: 19px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
761 width: 19px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
762 padding: 0; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
763 margin: 0; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
764 vertical-align: bottom; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
765 } |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
766 div.tool.box.service select.quickfinder { |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
767 width: 200px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
768 height: 19px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
769 font-size: 12px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
770 background-color: white; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
771 margin-bottom: 5px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
772 border: 0; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
773 } |
27 | 774 |
153 | 775 /* |
776 * jobs page tool list | |
777 */ | |
124 | 778 div.tool.list { |
779 font-size: 14px; | |
780 color: #887163; | |
781 background-color: #efeeec; | |
782 } | |
783 | |
784 div.tool.list a { | |
785 color: #3b4186; | |
786 } | |
787 | |
788 div.tool.list ul { | |
789 list-style-type: none; | |
790 padding: 0; | |
791 } | |
792 | |
793 div.tool.list li { | |
146 | 794 padding: 0.7em 0.5em 0.7em 20px; |
124 | 795 border-bottom: 1px solid white; |
796 } | |
797 | |
11 | 798 /* |
153 | 799 * overview page |
800 */ | |
801 | |
802 div.center.wide > div.row.double > div.col { | |
803 width: 335px; | |
804 } | |
805 div.center.wide > div.row.double div.tool.box div.searchbox input.text { | |
806 /* smaller search box */ | |
807 width: 250px; | |
808 } | |
809 | |
810 h2.withicon span.strut { | |
811 /* equalize uneven height of icons */ | |
812 display: inline-block; | |
813 height: 45px; | |
814 vertical-align: bottom; | |
815 } | |
816 | |
817 div.tool.box div.links a { | |
818 font-family: Verdana, Arial, sans-serif; | |
819 font-style: normal; | |
820 font-size: 14px; | |
821 color: #d45a00; | |
822 } | |
823 | |
824 div.tool.box div.links h3 { | |
825 font-family: Verdana, Arial, sans-serif; | |
826 font-style: normal; | |
827 font-size: 14px; | |
828 color: #3b4186; | |
829 padding-bottom: 3px; | |
830 border-bottom: 1px solid white; | |
831 } | |
832 div.tool.box div.links h3 a { | |
833 color: inherit; | |
834 } | |
835 | |
836 /* | |
27 | 837 * other boxes |
11 | 838 */ |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
839 div.box { |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
840 margin: 20px 0; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
841 position: relative; |
11 | 842 } |
843 | |
86 | 844 div.box h2, |
845 h2.line { | |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
846 /* h2 is title with line */ |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
847 padding-bottom: 5px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
848 border-bottom: 3px solid #dccbae; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
849 margin-bottom: 5px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
850 } |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
851 |
92 | 852 div.box.line, |
853 div.line { | |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
854 border-bottom: 1px solid #dccbae; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
855 } |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
856 |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
857 div.box h3 { |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
858 /* h3 is subtitle/type */ |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
859 font-size: 12px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
860 color: #6a4d3c; |
11 | 861 } |
862 | |
27 | 863 div.box h3 + h2 { |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
864 /* directly over h2 */ |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
865 margin-top: 0; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
866 } |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
867 |
165 | 868 div.box + div.jump_top { |
869 margin-top: -10px; | |
870 } | |
871 | |
27 | 872 /* |
30 | 873 * small box with thumbnail |
27 | 874 */ |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
875 div.mini { |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
876 padding: 10px 0; |
27 | 877 /* line-height: 1; */ |
878 } | |
879 | |
108
782477730916
CLOSED - # 57: Research/ Research Units: Karussell f?r die Projekte in einem Department
casties
parents:
104
diff
changeset
|
880 div.row.quintuple > div.col > div.mini { |
30 | 881 max-width: 122px; |
27 | 882 font-size: 11px; |
11 | 883 } |
884 | |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
885 div.mini div.thumb { |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
886 background-color: #f8f8f8; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
887 text-align: center; |
92 | 888 margin-top: 0.5em; |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
889 } |
92 | 890 div.mini div.thumb:first-child { |
891 margin-top: 0; | |
892 } | |
111 | 893 |
894 div.slider.row.quintuple > div.col > div.mini { | |
895 /* slider needs fixed width */ | |
896 width: 120px; | |
897 } | |
898 | |
899 div.slider.row.quintuple > div.col { | |
900 /* slider needs space for buttons */ | |
112 | 901 padding-left: 10px; |
111 | 902 } |
903 | |
108
782477730916
CLOSED - # 57: Research/ Research Units: Karussell f?r die Projekte in einem Department
casties
parents:
104
diff
changeset
|
904 div.row.quintuple > div.col > div.mini div.thumb img { |
27 | 905 width: 120px; |
906 height: 75px; | |
907 } | |
908 | |
108
782477730916
CLOSED - # 57: Research/ Research Units: Karussell f?r die Projekte in einem Department
casties
parents:
104
diff
changeset
|
909 div.row.triple > div.col > div.mini { |
32 | 910 width: 140px; |
911 } | |
912 | |
108
782477730916
CLOSED - # 57: Research/ Research Units: Karussell f?r die Projekte in einem Department
casties
parents:
104
diff
changeset
|
913 div.row.triple > div.col > div.mini div.thumb img { |
65 | 914 width: 140px; |
915 height: 87px; | |
916 } | |
32 | 917 |
153 | 918 div.row.triple > div.col > div.mini.source div.thumb img { |
66
68b3d71eed27
formatting for preprint list. javascript for foldable divs.
casties
parents:
65
diff
changeset
|
919 /* thumb size for sources given by digilib */ |
68b3d71eed27
formatting for preprint list. javascript for foldable divs.
casties
parents:
65
diff
changeset
|
920 width: auto; |
68b3d71eed27
formatting for preprint list. javascript for foldable divs.
casties
parents:
65
diff
changeset
|
921 height: auto; |
68b3d71eed27
formatting for preprint list. javascript for foldable divs.
casties
parents:
65
diff
changeset
|
922 } |
68b3d71eed27
formatting for preprint list. javascript for foldable divs.
casties
parents:
65
diff
changeset
|
923 |
153 | 924 div.row.double > div.col > div.mini div.thumb img { |
92 | 925 height: 180px; |
926 } | |
927 | |
154 | 928 div.row.double > div.col { |
929 width: 220px; | |
930 } | |
931 | |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
932 div.mini div.type { |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
933 color: #9f917a; |
65 | 934 margin-top: 0.5em; |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
935 } |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
936 |
27 | 937 div.mini div.title { |
938 margin-top: 0.5em; | |
939 } | |
940 | |
198 | 941 div.mini.website div.title { |
942 color: #3b4186; | |
943 } | |
944 | |
27 | 945 div.mini div.author { |
11 | 946 color: #3b4186; |
27 | 947 margin-top: 0.5em; |
11 | 948 } |
949 | |
65 | 950 div.mini div.link { |
951 margin-top: 0.5em; | |
952 } | |
953 | |
92 | 954 div.mini h2 { |
955 /* e.g. title for mini-books */ | |
956 font-size: 14px; | |
102 | 957 /* but no line if used inside box */ |
958 border-bottom: 0; | |
92 | 959 } |
960 | |
30 | 961 /* |
962 * slider buttons | |
963 */ | |
108
782477730916
CLOSED - # 57: Research/ Research Units: Karussell f?r die Projekte in einem Department
casties
parents:
104
diff
changeset
|
964 div.box div.slidebutton { |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
965 position: absolute; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
966 top: 110px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
967 width: 16px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
968 height: 18px; |
108
782477730916
CLOSED - # 57: Research/ Research Units: Karussell f?r die Projekte in einem Department
casties
parents:
104
diff
changeset
|
969 z-index: 10; |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
970 } |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
971 |
108
782477730916
CLOSED - # 57: Research/ Research Units: Karussell f?r die Projekte in einem Department
casties
parents:
104
diff
changeset
|
972 div.box div.slidebutton.prev { |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
973 left: 0; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
974 } |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
975 |
108
782477730916
CLOSED - # 57: Research/ Research Units: Karussell f?r die Projekte in einem Department
casties
parents:
104
diff
changeset
|
976 div.box div.slidebutton.next { |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
977 right: 0; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
978 text-align: right; |
12 | 979 } |
11 | 980 |
108
782477730916
CLOSED - # 57: Research/ Research Units: Karussell f?r die Projekte in einem Department
casties
parents:
104
diff
changeset
|
981 .ajaxSlider .slidebutton.prev, |
782477730916
CLOSED - # 57: Research/ Research Units: Karussell f?r die Projekte in einem Department
casties
parents:
104
diff
changeset
|
982 .ajaxSlider .slidebutton.next { |
782477730916
CLOSED - # 57: Research/ Research Units: Karussell f?r die Projekte in einem Department
casties
parents:
104
diff
changeset
|
983 /* AJAX slider buttons initially hidden */ |
782477730916
CLOSED - # 57: Research/ Research Units: Karussell f?r die Projekte in einem Department
casties
parents:
104
diff
changeset
|
984 display: none; |
782477730916
CLOSED - # 57: Research/ Research Units: Karussell f?r die Projekte in einem Department
casties
parents:
104
diff
changeset
|
985 } |
782477730916
CLOSED - # 57: Research/ Research Units: Karussell f?r die Projekte in einem Department
casties
parents:
104
diff
changeset
|
986 |
782477730916
CLOSED - # 57: Research/ Research Units: Karussell f?r die Projekte in einem Department
casties
parents:
104
diff
changeset
|
987 div.slider.row > div.col:first-child { |
782477730916
CLOSED - # 57: Research/ Research Units: Karussell f?r die Projekte in einem Department
casties
parents:
104
diff
changeset
|
988 /* space for slidebuttons */ |
112 | 989 padding-left: 20px; |
108
782477730916
CLOSED - # 57: Research/ Research Units: Karussell f?r die Projekte in einem Department
casties
parents:
104
diff
changeset
|
990 } |
782477730916
CLOSED - # 57: Research/ Research Units: Karussell f?r die Projekte in einem Department
casties
parents:
104
diff
changeset
|
991 |
11 | 992 /* |
30 | 993 * paragraph with line |
994 */ | |
995 div.item { | |
996 padding-top: 5px; | |
997 padding-bottom: 5px; | |
998 border-bottom: 1px solid #dccbae; | |
999 line-height: 1.5; | |
1000 } | |
1001 | |
66
68b3d71eed27
formatting for preprint list. javascript for foldable divs.
casties
parents:
65
diff
changeset
|
1002 /* |
79 | 1003 * pubman references |
66
68b3d71eed27
formatting for preprint list. javascript for foldable divs.
casties
parents:
65
diff
changeset
|
1004 */ |
79 | 1005 .reference .Italic { |
1006 font-style: italic; | |
1007 } | |
1008 | |
1009 | |
1010 /* | |
1011 * table with items (articles) | |
1012 */ | |
1013 table.items { | |
66
68b3d71eed27
formatting for preprint list. javascript for foldable divs.
casties
parents:
65
diff
changeset
|
1014 /* no space between cells */ |
68b3d71eed27
formatting for preprint list. javascript for foldable divs.
casties
parents:
65
diff
changeset
|
1015 border-collapse: collapse; |
68b3d71eed27
formatting for preprint list. javascript for foldable divs.
casties
parents:
65
diff
changeset
|
1016 } |
68b3d71eed27
formatting for preprint list. javascript for foldable divs.
casties
parents:
65
diff
changeset
|
1017 |
79 | 1018 table.items td { |
66
68b3d71eed27
formatting for preprint list. javascript for foldable divs.
casties
parents:
65
diff
changeset
|
1019 vertical-align: top; |
68b3d71eed27
formatting for preprint list. javascript for foldable divs.
casties
parents:
65
diff
changeset
|
1020 text-align: left; |
68b3d71eed27
formatting for preprint list. javascript for foldable divs.
casties
parents:
65
diff
changeset
|
1021 line-height: 1.5; |
67 | 1022 padding: 1em 1em 0.5em 0; |
66
68b3d71eed27
formatting for preprint list. javascript for foldable divs.
casties
parents:
65
diff
changeset
|
1023 } |
79 | 1024 table.items td:last-child { |
66
68b3d71eed27
formatting for preprint list. javascript for foldable divs.
casties
parents:
65
diff
changeset
|
1025 padding-right: 0; |
68b3d71eed27
formatting for preprint list. javascript for foldable divs.
casties
parents:
65
diff
changeset
|
1026 } |
104 | 1027 table.items.shorter td, |
1028 table.items tr.shorter td { | |
100 | 1029 padding: 0.5em 0.5em 0.5em 0; |
1030 } | |
66
68b3d71eed27
formatting for preprint list. javascript for foldable divs.
casties
parents:
65
diff
changeset
|
1031 |
79 | 1032 table.items th { |
66
68b3d71eed27
formatting for preprint list. javascript for foldable divs.
casties
parents:
65
diff
changeset
|
1033 font-family: Georgia, Times, serif; |
68b3d71eed27
formatting for preprint list. javascript for foldable divs.
casties
parents:
65
diff
changeset
|
1034 font-size: 16px; |
68b3d71eed27
formatting for preprint list. javascript for foldable divs.
casties
parents:
65
diff
changeset
|
1035 font-weight: normal; |
68b3d71eed27
formatting for preprint list. javascript for foldable divs.
casties
parents:
65
diff
changeset
|
1036 font-style: italic; |
68b3d71eed27
formatting for preprint list. javascript for foldable divs.
casties
parents:
65
diff
changeset
|
1037 color: #887163; |
68b3d71eed27
formatting for preprint list. javascript for foldable divs.
casties
parents:
65
diff
changeset
|
1038 text-align: left; |
68b3d71eed27
formatting for preprint list. javascript for foldable divs.
casties
parents:
65
diff
changeset
|
1039 border-bottom: 3px solid #dccbae; |
68b3d71eed27
formatting for preprint list. javascript for foldable divs.
casties
parents:
65
diff
changeset
|
1040 } |
68b3d71eed27
formatting for preprint list. javascript for foldable divs.
casties
parents:
65
diff
changeset
|
1041 |
79 | 1042 table.items h2 { |
1043 border-bottom: 3px solid #dccbae; | |
1044 margin-bottom: 0; | |
1045 } | |
1046 table.items h2 a { | |
1047 color: inherit; | |
1048 font-weight: inherit; | |
1049 text-decoration: none; | |
1050 } | |
1051 | |
1052 table.items img.thumb { | |
1053 width: 55px; | |
1054 height: 34px; | |
1055 } | |
1056 | |
1057 table.items td.line, | |
1058 table.items tr.line td { | |
1059 border-bottom: 1px solid #dccbae; | |
1060 } | |
1061 | |
124 | 1062 table.items td.fatline, |
1063 table.items tr.fatline td { | |
1064 border-bottom: 2px solid #dccbae; | |
1065 } | |
1066 | |
83 | 1067 table.items td.topline, |
1068 table.items tr.topline td { | |
1069 border-top: 1px solid #dccbae; | |
1070 } | |
1071 | |
124 | 1072 table.items td.line h2, |
1073 table.items tr.line td h2, | |
1074 table.items td.fatline h2, | |
1075 table.items tr.fatline td h2 { | |
1076 /* h2 in td.line has no line */ | |
1077 border-bottom: 0; | |
1078 } | |
1079 | |
79 | 1080 table.items tr.last_item td { |
1081 /* last_item has no padding-top */ | |
66
68b3d71eed27
formatting for preprint list. javascript for foldable divs.
casties
parents:
65
diff
changeset
|
1082 padding: 0 0 0.5em 0; |
68b3d71eed27
formatting for preprint list. javascript for foldable divs.
casties
parents:
65
diff
changeset
|
1083 } |
68b3d71eed27
formatting for preprint list. javascript for foldable divs.
casties
parents:
65
diff
changeset
|
1084 |
124 | 1085 table.items td p:first-child { |
1086 /* first p has no margin-top */ | |
1087 margin-top: 0; | |
1088 } | |
1089 | |
79 | 1090 table.items h3.fold_head { |
66
68b3d71eed27
formatting for preprint list. javascript for foldable divs.
casties
parents:
65
diff
changeset
|
1091 font-size: 12px; |
68b3d71eed27
formatting for preprint list. javascript for foldable divs.
casties
parents:
65
diff
changeset
|
1092 background-color: #f6f2eb; |
68b3d71eed27
formatting for preprint list. javascript for foldable divs.
casties
parents:
65
diff
changeset
|
1093 padding: 3px; |
68b3d71eed27
formatting for preprint list. javascript for foldable divs.
casties
parents:
65
diff
changeset
|
1094 } |
68b3d71eed27
formatting for preprint list. javascript for foldable divs.
casties
parents:
65
diff
changeset
|
1095 |
79 | 1096 table.items h3.fold_head img { |
66
68b3d71eed27
formatting for preprint list. javascript for foldable divs.
casties
parents:
65
diff
changeset
|
1097 margin: 0 5px 0 3px; |
68b3d71eed27
formatting for preprint list. javascript for foldable divs.
casties
parents:
65
diff
changeset
|
1098 } |
68b3d71eed27
formatting for preprint list. javascript for foldable divs.
casties
parents:
65
diff
changeset
|
1099 |
104 | 1100 table.items tr td:first-child div.fold_body { |
83 | 1101 /* e.g. preprint abstracts */ |
66
68b3d71eed27
formatting for preprint list. javascript for foldable divs.
casties
parents:
65
diff
changeset
|
1102 padding: 0.5em 0 0 20px; |
68b3d71eed27
formatting for preprint list. javascript for foldable divs.
casties
parents:
65
diff
changeset
|
1103 } |
68b3d71eed27
formatting for preprint list. javascript for foldable divs.
casties
parents:
65
diff
changeset
|
1104 |
103 | 1105 table.items .thumb_fold { |
1106 position: relative; | |
1107 padding-left: 14px; | |
1108 } | |
1109 | |
1110 table.items .thumb_fold .fold_head { | |
1111 position: absolute; | |
1112 left: 0; | |
1113 top: 3px; | |
1114 } | |
1115 | |
83 | 1116 ul.items { |
1117 list-style-type: none; | |
1118 padding: 0; | |
1119 } | |
1120 | |
1121 ul.items li { | |
1122 padding: 0 0 0.5em 20px; | |
1123 border-bottom: 3px solid #dccbae; | |
1124 margin-bottom: 0.5em; | |
1125 } | |
1126 | |
1127 ul.items .fold_head { | |
1128 text-indent: -20px; | |
1129 } | |
1130 ul.items .fold_head img.fold_open, | |
1131 ul.items .fold_head img.fold_closed { | |
1132 padding-right: 5px; | |
1133 } | |
1134 | |
1135 ul.items .type { | |
84 | 1136 /* font-size: 11px; */ |
83 | 1137 color: #696968; |
1138 } | |
1139 | |
1140 ul.items h2 { | |
1141 font-size: 12px; | |
1142 } | |
1143 | |
124 | 1144 ul.items td.key, |
1145 table.items td.key { | |
83 | 1146 color: #3b4186; |
1147 } | |
1148 | |
103 | 1149 .foldable img.fold_closed, |
1150 .foldableById img.fold_closed { | |
66
68b3d71eed27
formatting for preprint list. javascript for foldable divs.
casties
parents:
65
diff
changeset
|
1151 /* fold is initially open */ |
68b3d71eed27
formatting for preprint list. javascript for foldable divs.
casties
parents:
65
diff
changeset
|
1152 display: none; |
68b3d71eed27
formatting for preprint list. javascript for foldable divs.
casties
parents:
65
diff
changeset
|
1153 } |
68b3d71eed27
formatting for preprint list. javascript for foldable divs.
casties
parents:
65
diff
changeset
|
1154 |
75 | 1155 |
1156 /* | |
1157 * hierarchical list (of projects) | |
1158 */ | |
1159 div.hierlist h2 { | |
1160 text-indent: -20px; | |
1161 padding-left: 20px; | |
1162 padding-bottom: 5px; | |
1163 border-bottom: 3px solid #dccbae; | |
1164 margin-bottom: 0; | |
1165 } | |
1166 | |
1167 div.hierlist h2 img { | |
1168 padding: 0 3px 3px 3px; | |
1169 } | |
1170 | |
1171 div.hierlist h2 a { | |
1172 color: inherit; | |
1173 font-weight: inherit; | |
1174 text-decoration: none; | |
1175 } | |
1176 | |
1177 div.hierlist ul { | |
1178 list-style-type: none; | |
1179 padding: 0 0 10px 0; | |
1180 margin: 0; | |
1181 border-bottom: 1px solid #dccbae; | |
1182 } | |
1183 | |
1184 div.hierlist li { | |
1185 padding: 5px 0 5px 16px; | |
1186 text-indent: -13px; | |
1187 } | |
1188 | |
1189 div.hierlist li.indent { | |
1190 padding-bottom: 10px; | |
1191 border-bottom: 1px solid #dccbae; | |
1192 margin-bottom: 5px; | |
1193 } | |
1194 | |
182 | 1195 div.hierlist li h3 { |
181 | 1196 font-size: 12px; |
1197 } | |
1198 | |
182 | 1199 div.hierlist li.level_1 h3 { |
75 | 1200 font-size: 14px; |
1201 } | |
1202 | |
182 | 1203 div.hierlist li.level_2 h3 { |
181 | 1204 font-weight: bold; |
1205 } | |
1206 | |
75 | 1207 div.hierlist li.level_2 { |
1208 margin-left: 20px; | |
1209 } | |
1210 | |
1211 div.hierlist li.level_3 { | |
1212 margin-left: 40px; | |
1213 } | |
1214 | |
1215 div.hierlist li.level_4 { | |
1216 margin-left: 60px; | |
1217 } | |
1218 | |
1219 div.hierlist li.level_5 { | |
1220 margin-left: 80px; | |
1221 } | |
1222 | |
80 | 1223 |
1224 /* | |
84 | 1225 * figures (in project descriptions and features) |
80 | 1226 */ |
140 | 1227 div.figure { |
1228 float: left; | |
1229 padding: 0.5em 1em 0.5em 0; | |
1230 } | |
1231 | |
1232 div.feature div.figure, | |
1233 div.project div.figure { | |
1234 width: 230px; | |
1235 } | |
1236 div.feature div.figure img, | |
1237 div.project div.figure img { | |
1238 width: 230px; | |
1239 } | |
1240 | |
84 | 1241 div.image_small { |
80 | 1242 float: left; |
84 | 1243 width: 230px; |
80 | 1244 padding: 0.5em 1em 0 0; |
1245 } | |
84 | 1246 div.image_small.right { |
1247 float: right; | |
1248 padding: 0.5em 0 0 1em; | |
80 | 1249 } |
84 | 1250 div.image_small img { |
1251 width: 230px; | |
1252 } | |
245
878de95fb6a2
added padding for banner_large. added class image_large.
root@tuxserve03.mpiwg-berlin.mpg.de
parents:
230
diff
changeset
|
1253 |
878de95fb6a2
added padding for banner_large. added class image_large.
root@tuxserve03.mpiwg-berlin.mpg.de
parents:
230
diff
changeset
|
1254 div.banner_large, |
878de95fb6a2
added padding for banner_large. added class image_large.
root@tuxserve03.mpiwg-berlin.mpg.de
parents:
230
diff
changeset
|
1255 div.image_large { |
878de95fb6a2
added padding for banner_large. added class image_large.
root@tuxserve03.mpiwg-berlin.mpg.de
parents:
230
diff
changeset
|
1256 padding: 0.5em 0; |
878de95fb6a2
added padding for banner_large. added class image_large.
root@tuxserve03.mpiwg-berlin.mpg.de
parents:
230
diff
changeset
|
1257 } |
878de95fb6a2
added padding for banner_large. added class image_large.
root@tuxserve03.mpiwg-berlin.mpg.de
parents:
230
diff
changeset
|
1258 div.banner_large img, |
878de95fb6a2
added padding for banner_large. added class image_large.
root@tuxserve03.mpiwg-berlin.mpg.de
parents:
230
diff
changeset
|
1259 div.image_large img { |
140 | 1260 width: 460px; |
1261 } | |
1262 | |
84 | 1263 div.figure div.figcaption, |
1264 div.banner_large div.caption, | |
1265 div.image_small div.caption { | |
80 | 1266 font-size: 10px; |
84 | 1267 line-height: 1.5; |
80 | 1268 color: #9f917a; |
1269 margin-top: 0.5em; | |
1270 } | |
1271 | |
1272 /* | |
84 | 1273 * project description and feature |
80 | 1274 */ |
1275 h3.authors { | |
1276 margin-top: 0.5em; | |
1277 } | |
1278 | |
84 | 1279 p.maintext_authors { |
1280 font-size: 14px; | |
1281 color: #3b4186; | |
1282 } | |
1283 | |
80 | 1284 div.description { |
1285 margin-top: 0.5em; | |
1286 line-height: 1.5; | |
1287 } | |
1288 | |
92 | 1289 h2.type { |
1290 color: #9f917a; | |
1291 } | |
1292 | |
84 | 1293 /* |
1294 * feature story archive | |
1295 */ | |
1296 ul.items.features li { | |
1297 padding: 0 0 0.5em 0; | |
1298 border-bottom: 1px solid #dccbae; | |
1299 } | |
1300 ul.items.features .thumb { | |
1301 float:left; | |
1302 padding: 8px 10px 0 0; | |
1303 } | |
1304 ul.items.features .thumb img { | |
1305 width: 55px; | |
1306 height: 34px; | |
1307 } | |
1308 ul.items.features .feature_number { | |
1309 font-family: Georgia, Times, serif; | |
1310 font-size: 24px; | |
1311 color: #696968; | |
1312 } | |
1313 ul.items.features .date { | |
1314 font-size: 11px; | |
1315 color: #696968; | |
1316 } | |
1317 ul.items.features h1 { | |
1318 font-size: 12px; | |
1319 font-weight: bold; | |
1320 margin: 0; | |
1321 } | |
86 | 1322 |
153 | 1323 /* |
1324 * thesaurus | |
1325 */ | |
1326 | |
1327 .showApproach { | |
1328 color:#EA8500; | |
1329 cursor:pointer; | |
1330 } | |
1331 .showApproach:hover { | |
1332 text-decoration: underline; | |
1333 } | |
1334 | |
197 | 1335 /* |
1336 * flyout divs (for webpages) | |
1337 */ | |
1338 .flyout { | |
1339 position: relative; | |
1340 z-index: 0; | |
1341 } | |
198 | 1342 .flyout .folded { |
1343 /* folded initially hidden */ | |
1344 display: none; | |
1345 } | |
1346 | |
197 | 1347 .flyout.flying { |
1348 background-color: white; | |
1349 z-index: 10; | |
198 | 1350 /* padding: 10px; */ |
1351 box-shadow: 2px 2px 3px 1px #d0d0d0; | |
1352 } | |
1353 .flyout.flying .folded { | |
1354 display: block; | |
1355 } | |
1356 .flyout.flying div { | |
1357 padding: 0 10px; | |
197 | 1358 } |
1359 | |
1360 .flyout .flyout_open, | |
1361 .flyout .flyout_close { | |
1362 position: absolute; | |
1363 bottom: 0; | |
1364 right: 0; | |
1365 } | |
1366 .flyout .flyout_close { | |
1367 /* close initially hidden */ | |
1368 display: none; | |
1369 } | |
153 | 1370 |
198 | 1371 div.row.triple > div.col > div.mini.flying div.thumb { |
1372 padding: 0; | |
1373 } | |
1374 div.row.triple > div.col > div.mini.flying div.thumb img { | |
1375 /* extended flyout image */ | |
1376 width: 300px; | |
1377 height: 187px; | |
1378 } | |
1379 | |
1380 | |
30 | 1381 /* |
8 | 1382 * sidebar |
1383 */ | |
1384 div.sidebar { | |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
1385 display: table-cell; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
1386 width: 220px; |
8 | 1387 border-top: 3px solid #dccbae; |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
1388 background-color: white; |
80 | 1389 padding: 20px 10px 20px 0; |
8 | 1390 } |
1391 | |
167 | 1392 /* like sidebar inside main */ |
1393 div.sidebox { | |
1394 width: 220px; | |
1395 padding: 0 0 20px 0; | |
1396 } | |
1397 | |
1398 div.sideblock h2, | |
1399 div.sidebox h2 { | |
86 | 1400 position: relative; |
8 | 1401 font-size: 12px; |
1402 margin-top: 20px; | |
1403 padding-bottom: 5px; | |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
1404 border-bottom: 3px solid #dccbae; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
1405 margin-bottom: 0; |
8 | 1406 } |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
1407 |
167 | 1408 div.sideblock:first-child h2, |
1409 div.sidebox:first-child h2 { | |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
1410 margin-top: 0; |
7 | 1411 } |
2 | 1412 |
13 | 1413 div.sideblock h3 { |
1414 font-size: 12px; | |
1415 margin-top: 5px; | |
1416 padding-bottom: 5px; | |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
1417 border-bottom: 1px solid #dccbae; |
13 | 1418 } |
1419 | |
66
68b3d71eed27
formatting for preprint list. javascript for foldable divs.
casties
parents:
65
diff
changeset
|
1420 |
2 | 1421 /* |
80 | 1422 * project sidebars |
1423 */ | |
126 | 1424 div.sideblock h2 .proj_state, |
1425 div.sideblock h2 .more { | |
80 | 1426 position: absolute; |
1427 right: 0; | |
1428 } | |
1429 | |
1430 div.sideblock .project { | |
1431 background: url(../images/internal.png) no-repeat scroll 6px 11px #F5DAAF; | |
1432 border-bottom: 1px solid #F3BE7C; | |
1433 padding: 6px 6px 6px 20px; | |
1434 } | |
1435 div.sideblock .project.inactive { | |
1436 background: url(../images/internal.png) no-repeat scroll 6px 11px #f6e6cc; | |
1437 } | |
1438 div.sideblock .project.parent { | |
1439 background: url(../images/up.png) no-repeat scroll 6px 11px #F9F4E1; | |
1440 border-bottom: 1px solid #DCCBAE; | |
1441 color: #666666; | |
1442 } | |
1443 div.sideblock .project a { | |
1444 color: #333; | |
1445 } | |
1446 | |
1447 /* | |
84 | 1448 * special sideblocks |
1449 */ | |
1450 div.sideblock .item.link, | |
1451 div.sideblock .item.internal { | |
1452 background: url(../images/internal.png) 0 11px no-repeat; | |
1453 padding-left: 10px; | |
1454 } | |
1455 | |
1456 div.sideblock .item.external { | |
1457 background: url(../images/external.png) 0 11px no-repeat; | |
1458 padding-left: 13px; | |
1459 } | |
1460 | |
1461 div.sideblock .item.download { | |
1462 background: url(../images/download.png) 0 8px no-repeat; | |
1463 padding-left: 15px; | |
1464 } | |
1465 | |
1466 div.sideblock .item.thumb img { | |
1467 width: 55px; | |
1468 height: 34px; | |
1469 } | |
1470 div.sideblock .item.thumb .text { | |
1471 padding-left: 0.5em; | |
1472 } | |
1473 | |
1474 /* | |
230 | 1475 * calendar |
1476 */ | |
1477 div.calendar { | |
1478 background-color: #f8f5ef; | |
1479 } | |
1480 div.calendar h2 { | |
1481 position: relative; | |
1482 font-family: Georgia, Times, serif; | |
1483 font-size: 16px; | |
1484 font-style: italic; | |
1485 color: #887163; | |
1486 text-align: center; | |
1487 padding: 5px; | |
1488 border-bottom: 1px solid white; | |
1489 } | |
1490 div.calendar h2 .page_prev { | |
1491 position: absolute; | |
1492 left: 5px; | |
1493 top: 8px; | |
1494 } | |
1495 div.calendar h2 .page_next { | |
1496 position: absolute; | |
1497 right: 5px; | |
1498 top: 8px; | |
1499 } | |
1500 div.calendar table { | |
1501 width: 100%; | |
1502 border-collapse: collapse; | |
1503 border: 8px solid #f8f5ef; | |
1504 } | |
1505 div.calendar table td { | |
1506 text-align: center; | |
1507 background-color: white; | |
1508 padding: 3px; | |
1509 border: 1px solid #f8f5ef; | |
1510 } | |
1511 div.calendar table th { | |
1512 font-weight: normal; | |
1513 } | |
1514 | |
1515 /* | |
260 | 1516 * sub row (between main and foot) |
1517 */ | |
1518 #subrow { | |
1519 display: table; | |
1520 } | |
1521 #subrow .leftbox { | |
1522 border-top: 0; | |
1523 } | |
1524 #subrow .main { | |
1525 min-width: 690px; | |
1526 padding: 0 20px; | |
1527 border-top: 0; | |
1528 } | |
1529 | |
1530 /* | |
2 | 1531 * footer |
1532 */ | |
157 | 1533 #footservices { |
1534 position: relative; | |
1535 /* height: 20px; */ | |
1536 border-top: 1px solid #dccbae; | |
1537 padding-top: 8px; | |
1538 margin-top: 2em; | |
1539 } | |
1540 #footservices div.text { | |
161 | 1541 font-size: 11px; |
157 | 1542 display: inline; |
1543 } | |
1544 #footservices div.icons { | |
1545 display: inline; | |
1546 position: absolute; | |
1547 right: 0; | |
1548 } | |
1549 | |
8 | 1550 #footer { |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
1551 position: relative; |
6 | 1552 height: 50px; |
2 | 1553 border-top: 1px solid #dccbae; |
6 | 1554 padding-top: 8px; |
157 | 1555 margin-top: 1em; |
2 | 1556 } |
1557 | |
8 | 1558 #footer div.text { |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
1559 display: inline-block; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
1560 color: #d45a00; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
1561 font-size: 11px; |
2 | 1562 } |
1563 | |
8 | 1564 #footer div.logo { |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
1565 display: inline-block; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
1566 position: absolute; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
1567 right: 0; |
2 | 1568 } |
1569 | |
8 | 1570 #footer div.logo img { |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
1571 width: 204px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
1572 height: 41px; |
148 | 1573 } |
1574 | |
1575 /* | |
1576 * bookmark flags | |
1577 */ | |
1578 #bookmarks { | |
1579 position: absolute; | |
1580 top: 0; | |
150 | 1581 right: -131px; |
148 | 1582 width: 130px; |
1583 } | |
1584 | |
1585 #bookmarks div.bookmark { | |
1586 z-index: 1; | |
1587 font-family: Georgia, Times, serif; | |
1588 font-style: italic; | |
161 | 1589 font-size: 14px; |
148 | 1590 color: #3b4186; |
1591 background-color: white; | |
1592 padding: 5px 0.5em 5px 0.5em; | |
1593 margin: 0.5em 0; | |
1594 box-shadow: 2px 2px 3px 1px #d0d0d0; | |
1595 } | |
1596 | |
1597 #bookmarks div.bookmark a { | |
1598 display: inline-block; | |
150 | 1599 position: relative; |
148 | 1600 width: 100px; |
1601 color: #3b4186; | |
1602 background: url(../images/internal.png) center right no-repeat; | |
1603 padding-right: 13px; | |
150 | 1604 } |
1605 | |
1606 #bookmarks div.bookmark a img { | |
1607 position: absolute; | |
1608 right: 13px; | |
1609 } |