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