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