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