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