Mercurial > hg > MPIWGWeb
annotate css/mpiwg.css @ 167:9e4001404792
styles for sidebox
author | casties |
---|---|
date | Fri, 07 Jun 2013 11:31:31 +0200 |
parents | 2662a043391d |
children | 07beb979e7e4 |
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; |
164 | 637 font-style: normal; |
11 | 638 font-size: 14px; |
164 | 639 /* try to make a-z fit on one line */ |
640 word-spacing: -1px; | |
32 | 641 margin-top: 10px; |
11 | 642 } |
643 | |
25 | 644 div.tool.box input.checkbox, |
645 div.tool.box input.radio { | |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
646 /* checkbox uses border-box. don't ask */ |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
647 width: 20px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
648 height: 20px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
649 margin: 0; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
650 /* TODO: this should be an image */ |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
651 background-color: white; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
652 } |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
653 |
76 | 654 /* project page toolbox with thumbs */ |
118 | 655 div.tool.box div.thumbs { |
30 | 656 width: 420px; |
657 } | |
658 | |
118 | 659 div.thumbs div.thumb { |
76 | 660 display: inline; |
661 } | |
118 | 662 div.thumbs div.thumb img { |
76 | 663 width: 55px; |
664 height: 34px; | |
665 } | |
666 | |
667 | |
26
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 * service box on frontpage |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
670 */ |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
671 div.box h2.service { |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
672 /* title has no line */ |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
673 border: 0; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
674 } |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
675 |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
676 div.tool.box.service { |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
677 margin-top: 0; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
678 padding: 0; |
15 | 679 } |
680 | |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
681 div.tool.box.service div.row > div.col { |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
682 padding: 0; |
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 div.tool.box.service div.search { |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
685 width: 200px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
686 height: 20px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
687 padding: 26px 0 26px 16px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
688 border-bottom: 1px solid #9fa0a7; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
689 } |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
690 div.tool.box.service div.search.both { |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
691 height: 44px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
692 padding: 14px 0 14px 16px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
693 } |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
694 div.tool.box.service div.searchicon { |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
695 width: 38px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
696 height: 40px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
697 text-align: center; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
698 padding: 16px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
699 border-bottom: 1px solid #9fa0a7; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
700 } |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
701 div.tool.box.service div.icon { |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
702 width: 71px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
703 height: 70px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
704 text-align: center; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
705 line-height: 2.5; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
706 padding: 1px 0; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
707 border-left: 1px solid #9fa0a7; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
708 } |
76 | 709 div.tool.box.service div.icon a { |
710 color: black; | |
711 font-size: 12px; | |
712 font-family: Verdana, Arial, sans-serif; | |
713 font-style: normal; | |
714 } | |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
715 div.tool.box.service div.icon.first { |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
716 border-left: 0; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
717 width: 70px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
718 } |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
719 div.tool.box.service div.searchbox { |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
720 display: block; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
721 } |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
722 div.tool.box.service div.searchbox input.text { |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
723 width: 170px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
724 height: 17px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
725 font-size: 12px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
726 padding: 1px 3px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
727 } |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
728 div.tool.box.service div.searchbox input.submit { |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
729 height: 19px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
730 width: 19px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
731 padding: 0; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
732 margin: 0; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
733 vertical-align: bottom; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
734 } |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
735 div.tool.box.service select.quickfinder { |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
736 width: 200px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
737 height: 19px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
738 font-size: 12px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
739 background-color: white; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
740 margin-bottom: 5px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
741 border: 0; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
742 } |
27 | 743 |
153 | 744 /* |
745 * jobs page tool list | |
746 */ | |
124 | 747 div.tool.list { |
748 font-size: 14px; | |
749 color: #887163; | |
750 background-color: #efeeec; | |
751 } | |
752 | |
753 div.tool.list a { | |
754 color: #3b4186; | |
755 } | |
756 | |
757 div.tool.list ul { | |
758 list-style-type: none; | |
759 padding: 0; | |
760 } | |
761 | |
762 div.tool.list li { | |
146 | 763 padding: 0.7em 0.5em 0.7em 20px; |
124 | 764 border-bottom: 1px solid white; |
765 } | |
766 | |
11 | 767 /* |
153 | 768 * overview page |
769 */ | |
770 | |
771 div.center.wide > div.row.double > div.col { | |
772 width: 335px; | |
773 } | |
774 div.center.wide > div.row.double div.tool.box div.searchbox input.text { | |
775 /* smaller search box */ | |
776 width: 250px; | |
777 } | |
778 | |
779 h2.withicon span.strut { | |
780 /* equalize uneven height of icons */ | |
781 display: inline-block; | |
782 height: 45px; | |
783 vertical-align: bottom; | |
784 } | |
785 | |
786 div.tool.box div.links a { | |
787 font-family: Verdana, Arial, sans-serif; | |
788 font-style: normal; | |
789 font-size: 14px; | |
790 color: #d45a00; | |
791 } | |
792 | |
793 div.tool.box div.links h3 { | |
794 font-family: Verdana, Arial, sans-serif; | |
795 font-style: normal; | |
796 font-size: 14px; | |
797 color: #3b4186; | |
798 padding-bottom: 3px; | |
799 border-bottom: 1px solid white; | |
800 } | |
801 div.tool.box div.links h3 a { | |
802 color: inherit; | |
803 } | |
804 | |
805 /* | |
27 | 806 * other boxes |
11 | 807 */ |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
808 div.box { |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
809 margin: 20px 0; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
810 position: relative; |
11 | 811 } |
812 | |
86 | 813 div.box h2, |
814 h2.line { | |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
815 /* h2 is title with line */ |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
816 padding-bottom: 5px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
817 border-bottom: 3px solid #dccbae; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
818 margin-bottom: 5px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
819 } |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
820 |
92 | 821 div.box.line, |
822 div.line { | |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
823 border-bottom: 1px solid #dccbae; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
824 } |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
825 |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
826 div.box h3 { |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
827 /* h3 is subtitle/type */ |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
828 font-size: 12px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
829 color: #6a4d3c; |
11 | 830 } |
831 | |
27 | 832 div.box h3 + h2 { |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
833 /* directly over h2 */ |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
834 margin-top: 0; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
835 } |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
836 |
165 | 837 div.box + div.jump_top { |
838 margin-top: -10px; | |
839 } | |
840 | |
27 | 841 /* |
30 | 842 * small box with thumbnail |
27 | 843 */ |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
844 div.mini { |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
845 padding: 10px 0; |
27 | 846 /* line-height: 1; */ |
847 } | |
848 | |
108
782477730916
CLOSED - # 57: Research/ Research Units: Karussell f?r die Projekte in einem Department
casties
parents:
104
diff
changeset
|
849 div.row.quintuple > div.col > div.mini { |
30 | 850 max-width: 122px; |
27 | 851 font-size: 11px; |
11 | 852 } |
853 | |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
854 div.mini div.thumb { |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
855 background-color: #f8f8f8; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
856 text-align: center; |
92 | 857 margin-top: 0.5em; |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
858 } |
92 | 859 div.mini div.thumb:first-child { |
860 margin-top: 0; | |
861 } | |
111 | 862 |
863 div.slider.row.quintuple > div.col > div.mini { | |
864 /* slider needs fixed width */ | |
865 width: 120px; | |
866 } | |
867 | |
868 div.slider.row.quintuple > div.col { | |
869 /* slider needs space for buttons */ | |
112 | 870 padding-left: 10px; |
111 | 871 } |
872 | |
108
782477730916
CLOSED - # 57: Research/ Research Units: Karussell f?r die Projekte in einem Department
casties
parents:
104
diff
changeset
|
873 div.row.quintuple > div.col > div.mini div.thumb img { |
27 | 874 width: 120px; |
875 height: 75px; | |
876 } | |
877 | |
108
782477730916
CLOSED - # 57: Research/ Research Units: Karussell f?r die Projekte in einem Department
casties
parents:
104
diff
changeset
|
878 div.row.triple > div.col > div.mini { |
32 | 879 width: 140px; |
880 } | |
881 | |
108
782477730916
CLOSED - # 57: Research/ Research Units: Karussell f?r die Projekte in einem Department
casties
parents:
104
diff
changeset
|
882 div.row.triple > div.col > div.mini div.thumb img { |
65 | 883 width: 140px; |
884 height: 87px; | |
885 } | |
32 | 886 |
153 | 887 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
|
888 /* thumb size for sources given by digilib */ |
68b3d71eed27
formatting for preprint list. javascript for foldable divs.
casties
parents:
65
diff
changeset
|
889 width: auto; |
68b3d71eed27
formatting for preprint list. javascript for foldable divs.
casties
parents:
65
diff
changeset
|
890 height: auto; |
68b3d71eed27
formatting for preprint list. javascript for foldable divs.
casties
parents:
65
diff
changeset
|
891 } |
68b3d71eed27
formatting for preprint list. javascript for foldable divs.
casties
parents:
65
diff
changeset
|
892 |
153 | 893 div.row.double > div.col > div.mini div.thumb img { |
92 | 894 height: 180px; |
895 } | |
896 | |
154 | 897 div.row.double > div.col { |
898 width: 220px; | |
899 } | |
900 | |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
901 div.mini div.type { |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
902 color: #9f917a; |
65 | 903 margin-top: 0.5em; |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
904 } |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
905 |
27 | 906 div.mini div.title { |
907 margin-top: 0.5em; | |
908 } | |
909 | |
910 div.mini div.author { | |
11 | 911 color: #3b4186; |
27 | 912 margin-top: 0.5em; |
11 | 913 } |
914 | |
65 | 915 div.mini div.link { |
916 margin-top: 0.5em; | |
917 } | |
918 | |
92 | 919 div.mini h2 { |
920 /* e.g. title for mini-books */ | |
921 font-size: 14px; | |
102 | 922 /* but no line if used inside box */ |
923 border-bottom: 0; | |
92 | 924 } |
925 | |
65 | 926 div.mini.website div.description { |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
927 /* initially hidden */ |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
928 display: none; |
12 | 929 } |
930 | |
65 | 931 div.box.foldable div.fold { |
932 /* initially hidden */ | |
933 display: none; | |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
934 position: absolute; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
935 bottom: 0; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
936 right: 0; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
937 /* TODO: this should be an image */ |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
938 background-color: #ee7f2d; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
939 color: white; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
940 font-size: 14px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
941 } |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
942 |
30 | 943 /* |
944 * slider buttons | |
945 */ | |
108
782477730916
CLOSED - # 57: Research/ Research Units: Karussell f?r die Projekte in einem Department
casties
parents:
104
diff
changeset
|
946 div.box div.slidebutton { |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
947 position: absolute; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
948 top: 110px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
949 width: 16px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
950 height: 18px; |
108
782477730916
CLOSED - # 57: Research/ Research Units: Karussell f?r die Projekte in einem Department
casties
parents:
104
diff
changeset
|
951 z-index: 10; |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
952 } |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
953 |
108
782477730916
CLOSED - # 57: Research/ Research Units: Karussell f?r die Projekte in einem Department
casties
parents:
104
diff
changeset
|
954 div.box div.slidebutton.prev { |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
955 left: 0; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
956 } |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
957 |
108
782477730916
CLOSED - # 57: Research/ Research Units: Karussell f?r die Projekte in einem Department
casties
parents:
104
diff
changeset
|
958 div.box div.slidebutton.next { |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
959 right: 0; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
960 text-align: right; |
12 | 961 } |
11 | 962 |
108
782477730916
CLOSED - # 57: Research/ Research Units: Karussell f?r die Projekte in einem Department
casties
parents:
104
diff
changeset
|
963 .ajaxSlider .slidebutton.prev, |
782477730916
CLOSED - # 57: Research/ Research Units: Karussell f?r die Projekte in einem Department
casties
parents:
104
diff
changeset
|
964 .ajaxSlider .slidebutton.next { |
782477730916
CLOSED - # 57: Research/ Research Units: Karussell f?r die Projekte in einem Department
casties
parents:
104
diff
changeset
|
965 /* AJAX slider buttons initially hidden */ |
782477730916
CLOSED - # 57: Research/ Research Units: Karussell f?r die Projekte in einem Department
casties
parents:
104
diff
changeset
|
966 display: none; |
782477730916
CLOSED - # 57: Research/ Research Units: Karussell f?r die Projekte in einem Department
casties
parents:
104
diff
changeset
|
967 } |
782477730916
CLOSED - # 57: Research/ Research Units: Karussell f?r die Projekte in einem Department
casties
parents:
104
diff
changeset
|
968 |
782477730916
CLOSED - # 57: Research/ Research Units: Karussell f?r die Projekte in einem Department
casties
parents:
104
diff
changeset
|
969 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
|
970 /* space for slidebuttons */ |
112 | 971 padding-left: 20px; |
108
782477730916
CLOSED - # 57: Research/ Research Units: Karussell f?r die Projekte in einem Department
casties
parents:
104
diff
changeset
|
972 } |
782477730916
CLOSED - # 57: Research/ Research Units: Karussell f?r die Projekte in einem Department
casties
parents:
104
diff
changeset
|
973 |
11 | 974 /* |
30 | 975 * paragraph with line |
976 */ | |
977 div.item { | |
978 padding-top: 5px; | |
979 padding-bottom: 5px; | |
980 border-bottom: 1px solid #dccbae; | |
981 line-height: 1.5; | |
982 } | |
983 | |
66
68b3d71eed27
formatting for preprint list. javascript for foldable divs.
casties
parents:
65
diff
changeset
|
984 /* |
79 | 985 * pubman references |
66
68b3d71eed27
formatting for preprint list. javascript for foldable divs.
casties
parents:
65
diff
changeset
|
986 */ |
79 | 987 .reference .Italic { |
988 font-style: italic; | |
989 } | |
990 | |
991 | |
992 /* | |
993 * table with items (articles) | |
994 */ | |
995 table.items { | |
66
68b3d71eed27
formatting for preprint list. javascript for foldable divs.
casties
parents:
65
diff
changeset
|
996 /* no space between cells */ |
68b3d71eed27
formatting for preprint list. javascript for foldable divs.
casties
parents:
65
diff
changeset
|
997 border-collapse: collapse; |
68b3d71eed27
formatting for preprint list. javascript for foldable divs.
casties
parents:
65
diff
changeset
|
998 } |
68b3d71eed27
formatting for preprint list. javascript for foldable divs.
casties
parents:
65
diff
changeset
|
999 |
79 | 1000 table.items td { |
66
68b3d71eed27
formatting for preprint list. javascript for foldable divs.
casties
parents:
65
diff
changeset
|
1001 vertical-align: top; |
68b3d71eed27
formatting for preprint list. javascript for foldable divs.
casties
parents:
65
diff
changeset
|
1002 text-align: left; |
68b3d71eed27
formatting for preprint list. javascript for foldable divs.
casties
parents:
65
diff
changeset
|
1003 line-height: 1.5; |
67 | 1004 padding: 1em 1em 0.5em 0; |
66
68b3d71eed27
formatting for preprint list. javascript for foldable divs.
casties
parents:
65
diff
changeset
|
1005 } |
79 | 1006 table.items td:last-child { |
66
68b3d71eed27
formatting for preprint list. javascript for foldable divs.
casties
parents:
65
diff
changeset
|
1007 padding-right: 0; |
68b3d71eed27
formatting for preprint list. javascript for foldable divs.
casties
parents:
65
diff
changeset
|
1008 } |
104 | 1009 table.items.shorter td, |
1010 table.items tr.shorter td { | |
100 | 1011 padding: 0.5em 0.5em 0.5em 0; |
1012 } | |
66
68b3d71eed27
formatting for preprint list. javascript for foldable divs.
casties
parents:
65
diff
changeset
|
1013 |
79 | 1014 table.items th { |
66
68b3d71eed27
formatting for preprint list. javascript for foldable divs.
casties
parents:
65
diff
changeset
|
1015 font-family: Georgia, Times, serif; |
68b3d71eed27
formatting for preprint list. javascript for foldable divs.
casties
parents:
65
diff
changeset
|
1016 font-size: 16px; |
68b3d71eed27
formatting for preprint list. javascript for foldable divs.
casties
parents:
65
diff
changeset
|
1017 font-weight: normal; |
68b3d71eed27
formatting for preprint list. javascript for foldable divs.
casties
parents:
65
diff
changeset
|
1018 font-style: italic; |
68b3d71eed27
formatting for preprint list. javascript for foldable divs.
casties
parents:
65
diff
changeset
|
1019 color: #887163; |
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 border-bottom: 3px solid #dccbae; |
68b3d71eed27
formatting for preprint list. javascript for foldable divs.
casties
parents:
65
diff
changeset
|
1022 } |
68b3d71eed27
formatting for preprint list. javascript for foldable divs.
casties
parents:
65
diff
changeset
|
1023 |
79 | 1024 table.items h2 { |
1025 border-bottom: 3px solid #dccbae; | |
1026 margin-bottom: 0; | |
1027 } | |
1028 table.items h2 a { | |
1029 color: inherit; | |
1030 font-weight: inherit; | |
1031 text-decoration: none; | |
1032 } | |
1033 | |
1034 table.items img.thumb { | |
1035 width: 55px; | |
1036 height: 34px; | |
1037 } | |
1038 | |
1039 table.items td.line, | |
1040 table.items tr.line td { | |
1041 border-bottom: 1px solid #dccbae; | |
1042 } | |
1043 | |
124 | 1044 table.items td.fatline, |
1045 table.items tr.fatline td { | |
1046 border-bottom: 2px solid #dccbae; | |
1047 } | |
1048 | |
83 | 1049 table.items td.topline, |
1050 table.items tr.topline td { | |
1051 border-top: 1px solid #dccbae; | |
1052 } | |
1053 | |
124 | 1054 table.items td.line h2, |
1055 table.items tr.line td h2, | |
1056 table.items td.fatline h2, | |
1057 table.items tr.fatline td h2 { | |
1058 /* h2 in td.line has no line */ | |
1059 border-bottom: 0; | |
1060 } | |
1061 | |
79 | 1062 table.items tr.last_item td { |
1063 /* last_item has no padding-top */ | |
66
68b3d71eed27
formatting for preprint list. javascript for foldable divs.
casties
parents:
65
diff
changeset
|
1064 padding: 0 0 0.5em 0; |
68b3d71eed27
formatting for preprint list. javascript for foldable divs.
casties
parents:
65
diff
changeset
|
1065 } |
68b3d71eed27
formatting for preprint list. javascript for foldable divs.
casties
parents:
65
diff
changeset
|
1066 |
124 | 1067 table.items td p:first-child { |
1068 /* first p has no margin-top */ | |
1069 margin-top: 0; | |
1070 } | |
1071 | |
79 | 1072 table.items h3.fold_head { |
66
68b3d71eed27
formatting for preprint list. javascript for foldable divs.
casties
parents:
65
diff
changeset
|
1073 font-size: 12px; |
68b3d71eed27
formatting for preprint list. javascript for foldable divs.
casties
parents:
65
diff
changeset
|
1074 background-color: #f6f2eb; |
68b3d71eed27
formatting for preprint list. javascript for foldable divs.
casties
parents:
65
diff
changeset
|
1075 padding: 3px; |
68b3d71eed27
formatting for preprint list. javascript for foldable divs.
casties
parents:
65
diff
changeset
|
1076 } |
68b3d71eed27
formatting for preprint list. javascript for foldable divs.
casties
parents:
65
diff
changeset
|
1077 |
79 | 1078 table.items h3.fold_head img { |
66
68b3d71eed27
formatting for preprint list. javascript for foldable divs.
casties
parents:
65
diff
changeset
|
1079 margin: 0 5px 0 3px; |
68b3d71eed27
formatting for preprint list. javascript for foldable divs.
casties
parents:
65
diff
changeset
|
1080 } |
68b3d71eed27
formatting for preprint list. javascript for foldable divs.
casties
parents:
65
diff
changeset
|
1081 |
104 | 1082 table.items tr td:first-child div.fold_body { |
83 | 1083 /* e.g. preprint abstracts */ |
66
68b3d71eed27
formatting for preprint list. javascript for foldable divs.
casties
parents:
65
diff
changeset
|
1084 padding: 0.5em 0 0 20px; |
68b3d71eed27
formatting for preprint list. javascript for foldable divs.
casties
parents:
65
diff
changeset
|
1085 } |
68b3d71eed27
formatting for preprint list. javascript for foldable divs.
casties
parents:
65
diff
changeset
|
1086 |
103 | 1087 table.items .thumb_fold { |
1088 position: relative; | |
1089 padding-left: 14px; | |
1090 } | |
1091 | |
1092 table.items .thumb_fold .fold_head { | |
1093 position: absolute; | |
1094 left: 0; | |
1095 top: 3px; | |
1096 } | |
1097 | |
83 | 1098 ul.items { |
1099 list-style-type: none; | |
1100 padding: 0; | |
1101 } | |
1102 | |
1103 ul.items li { | |
1104 padding: 0 0 0.5em 20px; | |
1105 border-bottom: 3px solid #dccbae; | |
1106 margin-bottom: 0.5em; | |
1107 } | |
1108 | |
1109 ul.items .fold_head { | |
1110 text-indent: -20px; | |
1111 } | |
1112 ul.items .fold_head img.fold_open, | |
1113 ul.items .fold_head img.fold_closed { | |
1114 padding-right: 5px; | |
1115 } | |
1116 | |
1117 ul.items .type { | |
84 | 1118 /* font-size: 11px; */ |
83 | 1119 color: #696968; |
1120 } | |
1121 | |
1122 ul.items h2 { | |
1123 font-size: 12px; | |
1124 } | |
1125 | |
124 | 1126 ul.items td.key, |
1127 table.items td.key { | |
83 | 1128 color: #3b4186; |
1129 } | |
1130 | |
103 | 1131 .foldable img.fold_closed, |
1132 .foldableById img.fold_closed { | |
66
68b3d71eed27
formatting for preprint list. javascript for foldable divs.
casties
parents:
65
diff
changeset
|
1133 /* fold is initially open */ |
68b3d71eed27
formatting for preprint list. javascript for foldable divs.
casties
parents:
65
diff
changeset
|
1134 display: none; |
68b3d71eed27
formatting for preprint list. javascript for foldable divs.
casties
parents:
65
diff
changeset
|
1135 } |
68b3d71eed27
formatting for preprint list. javascript for foldable divs.
casties
parents:
65
diff
changeset
|
1136 |
75 | 1137 |
1138 /* | |
1139 * hierarchical list (of projects) | |
1140 */ | |
1141 div.hierlist h2 { | |
1142 text-indent: -20px; | |
1143 padding-left: 20px; | |
1144 padding-bottom: 5px; | |
1145 border-bottom: 3px solid #dccbae; | |
1146 margin-bottom: 0; | |
1147 } | |
1148 | |
1149 div.hierlist h2 img { | |
1150 padding: 0 3px 3px 3px; | |
1151 } | |
1152 | |
1153 div.hierlist h2 a { | |
1154 color: inherit; | |
1155 font-weight: inherit; | |
1156 text-decoration: none; | |
1157 } | |
1158 | |
1159 div.hierlist ul { | |
1160 list-style-type: none; | |
1161 padding: 0 0 10px 0; | |
1162 margin: 0; | |
1163 border-bottom: 1px solid #dccbae; | |
1164 } | |
1165 | |
1166 div.hierlist li { | |
1167 padding: 5px 0 5px 16px; | |
1168 text-indent: -13px; | |
1169 } | |
1170 | |
1171 div.hierlist li a { | |
1172 /* icon is more distant from text */ | |
1173 padding-left: 13px; | |
1174 } | |
1175 | |
1176 div.hierlist li.indent { | |
1177 padding-bottom: 10px; | |
1178 border-bottom: 1px solid #dccbae; | |
1179 margin-bottom: 5px; | |
1180 } | |
1181 | |
1182 div.hierlist li.level_1 { | |
1183 font-size: 14px; | |
1184 } | |
1185 | |
1186 div.hierlist li.level_2 { | |
1187 font-weight: bold; | |
1188 margin-left: 20px; | |
1189 } | |
1190 | |
1191 div.hierlist li.level_3 { | |
1192 margin-left: 40px; | |
1193 } | |
1194 | |
1195 div.hierlist li.level_4 { | |
1196 margin-left: 60px; | |
1197 } | |
1198 | |
1199 div.hierlist li.level_5 { | |
1200 margin-left: 80px; | |
1201 } | |
1202 | |
80 | 1203 |
1204 /* | |
84 | 1205 * figures (in project descriptions and features) |
80 | 1206 */ |
140 | 1207 div.figure { |
1208 float: left; | |
1209 padding: 0.5em 1em 0.5em 0; | |
1210 } | |
1211 | |
1212 div.feature div.figure, | |
1213 div.project div.figure { | |
1214 width: 230px; | |
1215 } | |
1216 div.feature div.figure img, | |
1217 div.project div.figure img { | |
1218 width: 230px; | |
1219 } | |
1220 | |
84 | 1221 div.image_small { |
80 | 1222 float: left; |
84 | 1223 width: 230px; |
80 | 1224 padding: 0.5em 1em 0 0; |
1225 } | |
84 | 1226 div.image_small.right { |
1227 float: right; | |
1228 padding: 0.5em 0 0 1em; | |
80 | 1229 } |
84 | 1230 div.image_small img { |
1231 width: 230px; | |
1232 } | |
140 | 1233 div.banner_large img { |
1234 width: 460px; | |
1235 } | |
1236 | |
84 | 1237 div.figure div.figcaption, |
1238 div.banner_large div.caption, | |
1239 div.image_small div.caption { | |
80 | 1240 font-size: 10px; |
84 | 1241 line-height: 1.5; |
80 | 1242 color: #9f917a; |
1243 margin-top: 0.5em; | |
1244 } | |
1245 | |
1246 /* | |
84 | 1247 * project description and feature |
80 | 1248 */ |
1249 h3.authors { | |
1250 margin-top: 0.5em; | |
1251 } | |
1252 | |
84 | 1253 p.maintext_authors { |
1254 font-size: 14px; | |
1255 color: #3b4186; | |
1256 } | |
1257 | |
80 | 1258 div.description { |
1259 margin-top: 0.5em; | |
1260 line-height: 1.5; | |
1261 } | |
1262 | |
92 | 1263 h2.type { |
1264 color: #9f917a; | |
1265 } | |
1266 | |
84 | 1267 /* |
1268 * feature story archive | |
1269 */ | |
1270 ul.items.features li { | |
1271 padding: 0 0 0.5em 0; | |
1272 border-bottom: 1px solid #dccbae; | |
1273 } | |
1274 ul.items.features .thumb { | |
1275 float:left; | |
1276 padding: 8px 10px 0 0; | |
1277 } | |
1278 ul.items.features .thumb img { | |
1279 width: 55px; | |
1280 height: 34px; | |
1281 } | |
1282 ul.items.features .feature_number { | |
1283 font-family: Georgia, Times, serif; | |
1284 font-size: 24px; | |
1285 color: #696968; | |
1286 } | |
1287 ul.items.features .date { | |
1288 font-size: 11px; | |
1289 color: #696968; | |
1290 } | |
1291 ul.items.features h1 { | |
1292 font-size: 12px; | |
1293 font-weight: bold; | |
1294 margin: 0; | |
1295 } | |
86 | 1296 |
153 | 1297 /* |
1298 * thesaurus | |
1299 */ | |
1300 | |
1301 .showApproach { | |
1302 color:#EA8500; | |
1303 cursor:pointer; | |
1304 } | |
1305 .showApproach:hover { | |
1306 text-decoration: underline; | |
1307 } | |
1308 | |
1309 | |
30 | 1310 /* |
8 | 1311 * sidebar |
1312 */ | |
1313 div.sidebar { | |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
1314 display: table-cell; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
1315 width: 220px; |
8 | 1316 border-top: 3px solid #dccbae; |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
1317 background-color: white; |
80 | 1318 padding: 20px 10px 20px 0; |
8 | 1319 } |
1320 | |
167 | 1321 /* like sidebar inside main */ |
1322 div.sidebox { | |
1323 width: 220px; | |
1324 padding: 0 0 20px 0; | |
1325 } | |
1326 | |
1327 div.sideblock h2, | |
1328 div.sidebox h2 { | |
86 | 1329 position: relative; |
8 | 1330 font-size: 12px; |
1331 margin-top: 20px; | |
1332 padding-bottom: 5px; | |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
1333 border-bottom: 3px solid #dccbae; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
1334 margin-bottom: 0; |
8 | 1335 } |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
1336 |
167 | 1337 div.sideblock:first-child h2, |
1338 div.sidebox:first-child h2 { | |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
1339 margin-top: 0; |
7 | 1340 } |
2 | 1341 |
13 | 1342 div.sideblock h3 { |
1343 font-size: 12px; | |
1344 margin-top: 5px; | |
1345 padding-bottom: 5px; | |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
1346 border-bottom: 1px solid #dccbae; |
13 | 1347 } |
1348 | |
66
68b3d71eed27
formatting for preprint list. javascript for foldable divs.
casties
parents:
65
diff
changeset
|
1349 |
2 | 1350 /* |
80 | 1351 * project sidebars |
1352 */ | |
126 | 1353 div.sideblock h2 .proj_state, |
1354 div.sideblock h2 .more { | |
80 | 1355 position: absolute; |
1356 right: 0; | |
1357 } | |
1358 | |
1359 div.sideblock .project { | |
1360 background: url(../images/internal.png) no-repeat scroll 6px 11px #F5DAAF; | |
1361 border-bottom: 1px solid #F3BE7C; | |
1362 padding: 6px 6px 6px 20px; | |
1363 } | |
1364 div.sideblock .project.inactive { | |
1365 background: url(../images/internal.png) no-repeat scroll 6px 11px #f6e6cc; | |
1366 } | |
1367 div.sideblock .project.parent { | |
1368 background: url(../images/up.png) no-repeat scroll 6px 11px #F9F4E1; | |
1369 border-bottom: 1px solid #DCCBAE; | |
1370 color: #666666; | |
1371 } | |
1372 div.sideblock .project a { | |
1373 color: #333; | |
1374 } | |
1375 | |
1376 /* | |
84 | 1377 * special sideblocks |
1378 */ | |
1379 div.sideblock .item.link, | |
1380 div.sideblock .item.internal { | |
1381 background: url(../images/internal.png) 0 11px no-repeat; | |
1382 padding-left: 10px; | |
1383 } | |
1384 | |
1385 div.sideblock .item.external { | |
1386 background: url(../images/external.png) 0 11px no-repeat; | |
1387 padding-left: 13px; | |
1388 } | |
1389 | |
1390 div.sideblock .item.download { | |
1391 background: url(../images/download.png) 0 8px no-repeat; | |
1392 padding-left: 15px; | |
1393 } | |
1394 | |
1395 div.sideblock .item.thumb img { | |
1396 width: 55px; | |
1397 height: 34px; | |
1398 } | |
1399 div.sideblock .item.thumb .text { | |
1400 padding-left: 0.5em; | |
1401 } | |
1402 | |
1403 /* | |
2 | 1404 * footer |
1405 */ | |
157 | 1406 #footservices { |
1407 position: relative; | |
1408 /* height: 20px; */ | |
1409 border-top: 1px solid #dccbae; | |
1410 padding-top: 8px; | |
1411 margin-top: 2em; | |
1412 } | |
1413 #footservices div.text { | |
161 | 1414 font-size: 11px; |
157 | 1415 display: inline; |
1416 } | |
1417 #footservices div.icons { | |
1418 display: inline; | |
1419 position: absolute; | |
1420 right: 0; | |
1421 } | |
1422 | |
8 | 1423 #footer { |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
1424 position: relative; |
6 | 1425 height: 50px; |
2 | 1426 border-top: 1px solid #dccbae; |
6 | 1427 padding-top: 8px; |
157 | 1428 margin-top: 1em; |
2 | 1429 } |
1430 | |
8 | 1431 #footer div.text { |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
1432 display: inline-block; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
1433 color: #d45a00; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
1434 font-size: 11px; |
2 | 1435 } |
1436 | |
8 | 1437 #footer div.logo { |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
1438 display: inline-block; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
1439 position: absolute; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
1440 right: 0; |
2 | 1441 } |
1442 | |
8 | 1443 #footer div.logo img { |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
1444 width: 204px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
1445 height: 41px; |
148 | 1446 } |
1447 | |
1448 /* | |
1449 * bookmark flags | |
1450 */ | |
1451 #bookmarks { | |
1452 position: absolute; | |
1453 top: 0; | |
150 | 1454 right: -131px; |
148 | 1455 width: 130px; |
1456 } | |
1457 | |
1458 #bookmarks div.bookmark { | |
1459 z-index: 1; | |
1460 font-family: Georgia, Times, serif; | |
1461 font-style: italic; | |
161 | 1462 font-size: 14px; |
148 | 1463 color: #3b4186; |
1464 background-color: white; | |
1465 padding: 5px 0.5em 5px 0.5em; | |
1466 margin: 0.5em 0; | |
1467 box-shadow: 2px 2px 3px 1px #d0d0d0; | |
1468 } | |
1469 | |
1470 #bookmarks div.bookmark a { | |
1471 display: inline-block; | |
150 | 1472 position: relative; |
148 | 1473 width: 100px; |
1474 color: #3b4186; | |
1475 background: url(../images/internal.png) center right no-repeat; | |
1476 padding-right: 13px; | |
150 | 1477 } |
1478 | |
1479 #bookmarks div.bookmark a img { | |
1480 position: absolute; | |
1481 right: 13px; | |
1482 } |