Mercurial > hg > MPIWGWeb
annotate css/mpiwg.css @ 26:8a99ad8713d6
new common template for fragments. new styles for servicebox.
author | casties |
---|---|
date | Thu, 18 Apr 2013 20:39:01 +0200 |
parents | 5a4b22fa726c |
children | 9a75eb1b31b3 |
rev | line source |
---|---|
2 | 1 /* MPIWG website style sheet |
2 * | |
11 | 3 * (c) 2013 MPIWG Berlin |
4 * Author: Robert Casties | |
2 | 5 */ |
6 body { | |
7 margin: 0; | |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
8 font-family: Verdana, Arial, sans-serif; |
2 | 9 background-color: #fdf8ef; |
10 font-size: 12px; | |
11 } | |
12 | |
13 /* | |
14 * global styles | |
15 */ | |
16 img { | |
17 border: none; | |
18 } | |
19 | |
20 a { | |
4 | 21 color: #d45a00; |
2 | 22 text-decoration: none; |
23 } | |
24 | |
25 a:hover { | |
26 text-decoration: underline; | |
27 } | |
28 | |
25 | 29 /* link-classes (with icons) */ |
2 | 30 a.internal { |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
31 background: url(../images/internal.png) center left no-repeat; |
25 | 32 padding-left: 10px; |
2 | 33 } |
34 | |
35 a.download { | |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
36 background: url(../images/download.png) center left no-repeat; |
25 | 37 padding-left: 15px; |
2 | 38 } |
39 | |
40 a.external { | |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
41 background: url(../images/external.png) center left no-repeat; |
2 | 42 padding-left: 15px; |
43 } | |
25 | 44 |
2 | 45 a.pdf { |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
46 background: url(../images/pdf.gif) no-repeat; |
2 | 47 padding-left: 15px; |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
48 /* padding-top:1px; */ |
2 | 49 } |
50 | |
51 a.audio { | |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
52 background: url(../images/audio.png) center left no-repeat; |
2 | 53 padding-left: 15px; |
25 | 54 } |
55 | |
56 a.down { | |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
57 background: url(../images/down.png) center left no-repeat; |
25 | 58 padding-left: 15px; |
2 | 59 } |
60 | |
61 a.book { | |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
62 background: url(../images/book.gif) no-repeat; |
2 | 63 padding-left: 20px; |
64 margin-left: -5px; | |
65 margin-top: -1px; | |
66 } | |
67 | |
68 a.maillink { | |
4 | 69 color: #3b4186 !important; |
70 } | |
71 | |
72 h1 { | |
73 color: #3b4186; | |
11 | 74 font-size: 20px; |
75 font-weight: normal; | |
8 | 76 margin: 0.5em 0; |
2 | 77 } |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
78 |
11 | 79 h1:first-child { |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
80 /* does this work correctly? */ |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
81 margin-top: 0; |
11 | 82 } |
2 | 83 |
4 | 84 h2 { |
85 color: #3b4186; | |
5 | 86 font-size: 16px; |
4 | 87 font-weight: normal; |
8 | 88 margin: 0.5em 0; |
4 | 89 } |
90 | |
91 h3 { | |
92 color: #3b4186; | |
5 | 93 font-size: 14px; |
4 | 94 font-weight: normal; |
6 | 95 margin: 0; |
4 | 96 } |
97 | |
2 | 98 h1 a { |
99 /* a header with a link looks like a header */ | |
100 color: inherit; | |
101 font-weight: inherit; | |
102 text-decoration: none; | |
103 } | |
104 | |
7 | 105 p { |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
106 margin: 0.5em 0; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
107 line-height: 1.5; |
7 | 108 } |
2 | 109 |
11 | 110 ul.inline { |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
111 padding: 0; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
112 margin: 0; |
11 | 113 } |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
114 |
11 | 115 ul.inline li { |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
116 display: inline; |
11 | 117 } |
118 | |
119 div.rows { | |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
120 display: table; |
11 | 121 } |
122 | |
123 div.row { | |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
124 display: table-row; |
11 | 125 } |
126 | |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
127 div.row>div.col { |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
128 display: table-cell; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
129 vertical-align: top; |
11 | 130 } |
131 | |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
132 div.row>div.col:first-child { |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
133 /* first block has no left margin */ |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
134 padding-left: 0 !important; |
11 | 135 } |
8 | 136 |
2 | 137 /* |
11 | 138 * page wrapper and header |
2 | 139 */ |
140 #wrapper { | |
4 | 141 width: 900px; |
2 | 142 margin: 0 auto; |
4 | 143 padding: 10px 40px 10px 20px; |
2 | 144 background-color: #fcf2df; |
4 | 145 box-shadow: 0 0 5px 3px #d0d0d0; |
2 | 146 } |
147 | |
148 #header { | |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
149 display: block; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
150 position: relative; |
8 | 151 height: 95px; |
2 | 152 margin: 0 0 10px 0; |
153 } | |
154 | |
155 #header div.title { | |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
156 position: absolute; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
157 left: 0; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
158 top: 25px; |
2 | 159 } |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
160 |
8 | 161 #header div.title img { |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
162 width: 661px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
163 height: 40px; |
8 | 164 } |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
165 |
2 | 166 #header div.logo { |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
167 position: absolute; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
168 right: 0; |
8 | 169 } |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
170 |
8 | 171 #header div.logo img { |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
172 width: 87px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
173 height: 88px; |
2 | 174 } |
175 | |
6 | 176 /* |
177 * Main Navigation | |
178 */ | |
2 | 179 #mainnav { |
8 | 180 display: block; |
4 | 181 position: relative; |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
182 font-family: Verdana, Arial, sans-serif; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
183 font-size: 12px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
184 border-top: 8px solid #fab775; |
6 | 185 padding-top: 5px; |
8 | 186 margin-bottom: 15px; |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
187 /* make iPhone-Safari not botch text size */ |
12 | 188 -webkit-text-size-adjust: 100%; |
6 | 189 } |
12 | 190 |
6 | 191 #mainnav ul { |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
192 padding: 0; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
193 margin: 0; |
6 | 194 } |
12 | 195 |
6 | 196 #mainnav li.sec { |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
197 display: inline; |
6 | 198 border-top: 8px solid #fab775; |
199 margin: 0 35px 0 0; | |
2 | 200 padding-top: 5px; |
201 } | |
202 | |
6 | 203 #mainnav li.sec:hover { |
8 | 204 border-top: 8px solid #d45a00; |
2 | 205 } |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
206 |
2 | 207 #mainnav a { |
4 | 208 color: #696968; |
2 | 209 outline: none; |
210 } | |
211 | |
212 #mainnav a:hover { | |
213 color: #000000; | |
214 text-decoration: none; | |
215 } | |
216 | |
6 | 217 #mainnav li.sec.on { |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
218 border-top: 8px solid #d45a00; |
2 | 219 } |
220 | |
6 | 221 #mainnav li.sec.on a { |
8 | 222 color: #d45a00; |
2 | 223 outline: none; |
224 font-weight: bold; | |
225 } | |
226 | |
6 | 227 #mainnav li.sec.lang { |
4 | 228 position: absolute; |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
229 right: 0; |
4 | 230 top: -8px; |
2 | 231 margin-right: 0; |
232 } | |
233 | |
8 | 234 /* |
235 * breadcrumbs | |
236 */ | |
237 #breadcrumbs { | |
238 font-size: 11px; | |
239 color: #6a4d3c; | |
240 margin-bottom: 5px; | |
241 } | |
242 | |
243 #breadcrumbs a { | |
244 color: #6a4d3c; | |
245 } | |
246 | |
247 #breadcrumbs .selected { | |
248 font-weight: bold; | |
249 } | |
250 | |
251 /* | |
252 * main section wrapper | |
253 */ | |
254 #mainrow { | |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
255 display: table-row; |
8 | 256 } |
257 | |
2 | 258 /* |
259 * subnavigation | |
260 */ | |
261 div.leftbox { | |
8 | 262 display: table-cell; |
263 vertical-align: top; | |
2 | 264 width: 170px; |
8 | 265 border-top: 3px solid #dccbae; |
2 | 266 } |
267 | |
268 div.subnav { | |
269 font-size: 11px; | |
270 } | |
271 | |
8 | 272 div.subnav ul { |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
273 margin: 0; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
274 padding: 0; |
8 | 275 } |
276 | |
277 div.subnav li { | |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
278 list-style-type: none; |
2 | 279 border-bottom: 1px solid #dccbae; |
8 | 280 padding: 3px 6px 6px 3px; |
2 | 281 } |
282 | |
283 div.subnav .sn_on { | |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
284 padding-left: 6px; |
8 | 285 background: #d45a00; |
2 | 286 } |
287 | |
288 div.subnav .sn_on a { | |
8 | 289 color: #fcf2df; |
2 | 290 font-weight: bold; |
291 } | |
292 | |
25 | 293 div.subnav h2.subnavhead { |
294 background-color: white; | |
295 color: #d45a00; | |
296 border-bottom: 1px solid #dccbae; | |
297 font-size: 11px; | |
298 font-weight: bold; | |
299 margin: 0; | |
300 padding: 5px 3px; | |
301 } | |
302 | |
303 div.subnav li.dept { | |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
304 padding-left: 18px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
305 list-style-position: inside; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
306 list-style-image: url(../images/internal.png); |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
307 text-indent: -14px; |
25 | 308 } |
309 | |
310 div.subnav li.dept .type { | |
311 font-style: italic; | |
312 color: #6a4d3c; | |
313 } | |
314 | |
315 div.subnav li.dept.sn_on .type { | |
316 color: #f9f4e1; | |
317 } | |
318 | |
8 | 319 div.subnavbox { |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
320 /* navigation below e.g. research projects */ |
8 | 321 font-size: 11px; |
322 margin-top: 30px; | |
323 } | |
324 | |
2 | 325 div.subnavbox h2 { |
326 font-size: 11px; | |
327 color: #b69f7b; | |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
328 padding-bottom: 3px; |
8 | 329 border-bottom: 1px solid #dccbae; |
2 | 330 margin-top: 20px; |
331 } | |
332 | |
333 /* | |
6 | 334 * main section |
2 | 335 */ |
6 | 336 div.main { |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
337 display: table-cell; |
8 | 338 vertical-align: top; |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
339 background-color: white; |
8 | 340 border-top: 3px solid #dccbae; |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
341 padding: 20px; |
8 | 342 } |
343 | |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
344 div.main div.row>div.col { |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
345 /* col default padding */ |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
346 padding-left: 20px; |
2 | 347 } |
348 | |
11 | 349 /* |
350 * frontpage | |
351 */ | |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
352 div.main.home { |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
353 background-color: transparent; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
354 border-top: 0; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
355 padding: 0; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
356 } |
2 | 357 |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
358 div.main.home b { |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
359 /* bold is blue */ |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
360 color: #3b4186; |
8 | 361 } |
2 | 362 |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
363 div.main.home div.row.triple>div.col { |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
364 /* frontpage col width */ |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
365 width: 286px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
366 padding-left: 21px; |
2 | 367 } |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
368 |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
369 div.main.home div.box h2 { |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
370 /* more-links in title are right */ |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
371 position: relative; |
2 | 372 } |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
373 |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
374 div.main.home div.box h2 a:link { |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
375 /* more-links in title are right */ |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
376 position: absolute; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
377 right: 0; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
378 top: 3px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
379 /* more-links in title are small */ |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
380 font-size: 12px; |
2 | 381 } |
382 | |
383 /* | |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
384 * front page feature teaser |
2 | 385 */ |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
386 div.main.home div.teaser { |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
387 background-color: #f4e0c7; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
388 } |
2 | 389 |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
390 div.main.home div.teaser div.box { |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
391 /* teaser box needs no margins */ |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
392 margin: 0; |
2 | 393 } |
394 | |
8 | 395 div.teaser_image { |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
396 position: relative; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
397 width: 593px; |
6 | 398 height: 351px; |
2 | 399 } |
400 | |
8 | 401 div.teaser_image div.caption { |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
402 /* caption inside image */ |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
403 position: absolute; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
404 bottom: 0; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
405 padding: 3px; |
6 | 406 text-align: right; |
407 color: white; | |
2 | 408 font-size: 10px; |
6 | 409 opacity: 0.8; |
410 background-color: gray; | |
411 /* background-color: rgba(80,80,80,0.6); */ | |
2 | 412 } |
413 | |
8 | 414 div.teaser_text { |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
415 padding-right: 21px; |
2 | 416 } |
8 | 417 /* feature number */ |
418 div.teaser_text div.feature_number { | |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
419 position: absolute; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
420 right: 14px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
421 top: 5px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
422 font-family: Georgia, Times, serif; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
423 font-size: 26px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
424 color: #887163; |
2 | 425 } |
8 | 426 /* feature title */ |
427 div.teaser_text h1 { | |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
428 font-size: 16px; |
6 | 429 font-weight: normal; |
430 margin-top: 0; | |
2 | 431 } |
22 | 432 /* current research topic */ |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
433 div.teaser_text h3 { |
6 | 434 color: #887163; |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
435 margin-bottom: 3px; |
7 | 436 margin-top: 15px; |
2 | 437 } |
6 | 438 /* feature date */ |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
439 div.teaser_text div.date { |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
440 color: #3b4186; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
441 padding-top: 20px; |
6 | 442 margin-bottom: 20px; |
2 | 443 } |
8 | 444 |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
445 /* teaser slider */ |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
446 div.teaser div.box div.slider { |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
447 top: 150px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
448 width: 18px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
449 height: 24px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
450 padding-top: 11px; |
21 | 451 } |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
452 |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
453 div.teaser div.box div.slider.prev { |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
454 background-image: url(../images/slider_prev_bg.png); |
21 | 455 } |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
456 |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
457 div.teaser div.box div.slider.next { |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
458 background-image: url(../images/slider_next_bg.png); |
21 | 459 } |
460 | |
8 | 461 /* |
11 | 462 * toolboxes |
463 */ | |
25 | 464 div.tool.box { |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
465 background-color: #efeeec; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
466 color: black; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
467 padding: 20px; |
11 | 468 box-shadow: 0 0 1px 1px #e0e0e0; |
469 } | |
470 | |
25 | 471 div.tool.box a { |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
472 color: #3b4186; |
11 | 473 } |
474 | |
25 | 475 div.tool.box div.searchbox { |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
476 /* only to make it shrink-wrap */ |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
477 display: table-cell; |
11 | 478 } |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
479 |
25 | 480 div.tool.box div.searchbox input.text { |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
481 height: 20px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
482 width: 380px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
483 background-color: #9fa0a7; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
484 color: white; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
485 font-size: 14px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
486 font-style: italic; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
487 border: 0; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
488 padding: 3px; |
11 | 489 } |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
490 |
25 | 491 div.tool.box div.searchbox input.submit { |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
492 /* submit uses border-box. don't ask */ |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
493 height: 26px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
494 width: 26px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
495 border: 0; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
496 padding: 2px 3px 4px 3px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
497 /* TODO: this should be an image */ |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
498 background-color: #ee7f2d; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
499 color: white; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
500 font-size: 14px; |
11 | 501 } |
502 | |
25 | 503 div.tool.box div.searchbox div.extended { |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
504 text-align: right; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
505 padding: 5px 30px 5px 3px; |
11 | 506 } |
507 | |
25 | 508 div.tool.box h3 { |
26
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-style: italic; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
511 font-size: 16px; |
11 | 512 color: #887163; |
513 margin: 0.5em 0; | |
514 } | |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
515 |
25 | 516 div.tool.box h3:first-child { |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
517 /* does this work correctly? */ |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
518 margin-top: 0; |
12 | 519 } |
11 | 520 |
25 | 521 div.tool.box ul { |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
522 margin: 0; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
523 padding: 0; |
24 | 524 } |
525 | |
25 | 526 div.tool.box div.options li { |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
527 font-family: Georgia, Times, serif; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
528 font-style: italic; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
529 font-size: 16px; |
24 | 530 color: #887163; |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
531 list-style-type: none; |
24 | 532 margin: 0.5em 0; |
533 } | |
534 | |
25 | 535 div.tool.box div.options { |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
536 margin-top: 20px; |
24 | 537 } |
538 | |
25 | 539 div.tool.box div.atoz { |
11 | 540 color: #887163; |
541 font-size: 14px; | |
542 } | |
543 | |
25 | 544 div.tool.box input.checkbox, |
545 div.tool.box input.radio { | |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
546 /* checkbox uses border-box. don't ask */ |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
547 width: 20px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
548 height: 20px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
549 margin: 0; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
550 /* TODO: this should be an image */ |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
551 background-color: white; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
552 } |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
553 |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
554 /* |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
555 * service box on frontpage |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
556 */ |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
557 div.box h2.service { |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
558 /* title has no line */ |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
559 border: 0; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
560 } |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
561 |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
562 div.tool.box.service { |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
563 margin-top: 0; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
564 padding: 0; |
15 | 565 } |
566 | |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
567 div.tool.box.service div.row > div.col { |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
568 padding: 0; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
569 } |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
570 div.tool.box.service div.search { |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
571 width: 200px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
572 height: 20px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
573 padding: 26px 0 26px 16px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
574 border-bottom: 1px solid #9fa0a7; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
575 } |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
576 div.tool.box.service div.search.both { |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
577 height: 44px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
578 padding: 14px 0 14px 16px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
579 } |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
580 div.tool.box.service div.searchicon { |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
581 width: 38px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
582 height: 40px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
583 text-align: center; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
584 padding: 16px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
585 border-bottom: 1px solid #9fa0a7; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
586 } |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
587 div.tool.box.service div.icon { |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
588 width: 71px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
589 height: 70px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
590 text-align: center; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
591 line-height: 2.5; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
592 padding: 1px 0; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
593 border-left: 1px solid #9fa0a7; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
594 } |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
595 div.tool.box.service div.icon.first { |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
596 border-left: 0; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
597 width: 70px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
598 } |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
599 div.tool.box.service div.searchbox { |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
600 display: block; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
601 } |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
602 div.tool.box.service div.searchbox input.text { |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
603 width: 170px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
604 height: 17px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
605 font-size: 12px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
606 padding: 1px 3px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
607 } |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
608 div.tool.box.service div.searchbox input.submit { |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
609 height: 19px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
610 width: 19px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
611 padding: 0; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
612 margin: 0; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
613 vertical-align: bottom; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
614 } |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
615 div.tool.box.service select.quickfinder { |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
616 width: 200px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
617 height: 19px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
618 font-size: 12px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
619 background-color: white; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
620 margin-bottom: 5px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
621 border: 0; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
622 } |
11 | 623 /* |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
624 * sonstige boxen |
11 | 625 */ |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
626 div.box { |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
627 margin: 20px 0; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
628 position: relative; |
11 | 629 } |
630 | |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
631 div.box h2 { |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
632 /* h2 is title with line */ |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
633 padding-bottom: 5px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
634 border-bottom: 3px solid #dccbae; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
635 margin-bottom: 5px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
636 } |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
637 |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
638 div.box.line { |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
639 border-bottom: 1px solid #dccbae; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
640 } |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
641 |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
642 div.box h3 { |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
643 /* h3 is subtitle/type */ |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
644 font-size: 12px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
645 color: #6a4d3c; |
11 | 646 } |
647 | |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
648 div.box h3+h2 { |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
649 /* directly over h2 */ |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
650 margin-top: 0; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
651 } |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
652 |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
653 div.mini { |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
654 padding: 10px 0; |
11 | 655 } |
656 | |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
657 div.mini div.thumb { |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
658 background-color: #f8f8f8; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
659 text-align: center; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
660 } |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
661 |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
662 div.mini div.type { |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
663 font-size: 11px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
664 color: #9f917a; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
665 } |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
666 |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
667 div.box div.source div.author,div.box div.website div.title { |
11 | 668 color: #3b4186; |
669 } | |
670 | |
25 | 671 div.box div.website div.description { |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
672 /* initially hidden */ |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
673 display: none; |
12 | 674 } |
675 | |
25 | 676 div.box div.website.item { |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
677 min-height: 180px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
678 position: relative; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
679 margin: 10px 0 0 0; |
12 | 680 } |
681 | |
25 | 682 div.box div.website.item div.fold { |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
683 position: absolute; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
684 bottom: 0; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
685 right: 0; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
686 /* TODO: this should be an image */ |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
687 background-color: #ee7f2d; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
688 color: white; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
689 font-size: 14px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
690 } |
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 /* paragraph with line */ |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
693 div.item { |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
694 padding-top: 5px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
695 padding-bottom: 5px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
696 border-bottom: 1px solid #dccbae; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
697 line-height: 1.5; |
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 |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
700 /* slider buttons */ |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
701 div.box div.slider { |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
702 position: absolute; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
703 top: 110px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
704 width: 16px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
705 height: 18px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
706 } |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
707 |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
708 div.box div.slider.prev { |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
709 left: 0; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
710 } |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
711 |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
712 div.box div.slider.next { |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
713 right: 0; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
714 text-align: right; |
12 | 715 } |
11 | 716 |
717 /* | |
8 | 718 * sidebar |
719 */ | |
720 div.sidebar { | |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
721 display: table-cell; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
722 width: 220px; |
8 | 723 border-top: 3px solid #dccbae; |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
724 background-color: white; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
725 padding: 20px 8px 20px 0; |
8 | 726 } |
727 | |
728 div.sideblock h2 { | |
729 font-size: 12px; | |
730 margin-top: 20px; | |
731 padding-bottom: 5px; | |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
732 border-bottom: 3px solid #dccbae; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
733 margin-bottom: 0; |
8 | 734 } |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
735 |
8 | 736 div.sideblock:first-child h2 { |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
737 margin-top: 0; |
7 | 738 } |
2 | 739 |
13 | 740 div.sideblock h3 { |
741 font-size: 12px; | |
742 margin-top: 5px; | |
743 padding-bottom: 5px; | |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
744 border-bottom: 1px solid #dccbae; |
13 | 745 } |
746 | |
2 | 747 /* |
748 * footer | |
749 */ | |
8 | 750 #footer { |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
751 position: relative; |
6 | 752 height: 50px; |
2 | 753 border-top: 1px solid #dccbae; |
6 | 754 padding-top: 8px; |
8 | 755 margin-top: 29px; |
2 | 756 } |
757 | |
8 | 758 #footer div.text { |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
759 display: inline-block; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
760 color: #d45a00; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
761 font-size: 11px; |
2 | 762 } |
763 | |
8 | 764 #footer div.logo { |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
765 display: inline-block; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
766 position: absolute; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
767 right: 0; |
2 | 768 } |
769 | |
8 | 770 #footer div.logo img { |
26
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
771 width: 204px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
772 height: 41px; |
8a99ad8713d6
new common template for fragments. new styles for servicebox.
casties
parents:
25
diff
changeset
|
773 } |