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