0
|
1 |
/* Resetting the usual suspects */ |
|
2 |
|
|
3 |
html, body, div, span, applet, object, iframe, |
|
4 |
h1, h2, h3, h4, h5, h6, p, blockquote, pre, |
|
5 |
a, abbr, acronym, address, big, cite, code, |
|
6 |
del, dfn, em, img, ins, kbd, q, s, samp, |
|
7 |
small, strike, strong, sub, sup, tt, var, |
|
8 |
b, u, i, center, |
|
9 |
dl, dt, dd, ol, ul, li, |
|
10 |
fieldset, form, label, legend, |
|
11 |
table, caption, tbody, tfoot, thead, tr, th, td, |
|
12 |
article, aside, canvas, details, embed, |
|
13 |
figure, figcaption, footer, header, hgroup, |
|
14 |
menu, nav, output, ruby, section, summary, |
|
15 |
time, mark, audio, video { |
|
16 |
margin: 0; |
|
17 |
padding: 0; |
|
18 |
border: 0; |
|
19 |
font-size: 100%; |
|
20 |
font: inherit; |
|
21 |
vertical-align: baseline; |
|
22 |
} |
|
23 |
|
|
24 |
ul, li { |
|
25 |
list-style: none; |
|
26 |
} |
|
27 |
|
|
28 |
input::-moz-focus-inner /*Remove button padding in FF*/ |
|
29 |
{ |
|
30 |
border: 0; |
|
31 |
padding: 0; |
|
32 |
} |
|
33 |
|
|
34 |
table { |
|
35 |
border-collapse: separate; border-spacing: 0; |
|
36 |
} |
|
37 |
|
|
38 |
th, td { |
|
39 |
vertical-align: top; |
|
40 |
} |
|
41 |
|
|
42 |
img a { |
|
43 |
border: none; |
|
44 |
} |
|
45 |
|
|
46 |
html { |
|
47 |
overflow: hidden; |
|
48 |
} |
|
49 |
|
2
|
50 |
/* Fonts */ |
|
51 |
|
|
52 |
@font-face { |
|
53 |
font-family: 'Futura-Medium'; |
|
54 |
src: url('../fonts/Futura-Medium.woff') format('woff'), |
|
55 |
url('../fonts/Futura-Medium.ttf') format('truetype'), |
|
56 |
url('../fonts/Futura-Medium.svg#Futura-Medium') format('svg'); |
|
57 |
} |
|
58 |
|
0
|
59 |
/* End of the reset part */ |
|
60 |
|
|
61 |
body { |
|
62 |
background: #000000; font-family: Helvetica, Arial, sans-serif; |
|
63 |
} |
|
64 |
|
|
65 |
/* Top Bar */ |
|
66 |
|
|
67 |
.top-bar { |
|
68 |
height: 40px; |
|
69 |
} |
|
70 |
|
|
71 |
/* Main Video Frame */ |
|
72 |
|
|
73 |
.main-video { |
2
|
74 |
height: 562px; position: relative; |
0
|
75 |
} |
|
76 |
|
|
77 |
.project-title { |
2
|
78 |
text-align: center; line-height: 40px; font-size: 17px; color: #b0b0b0; |
|
79 |
font-family: 'Futura-Medium'; |
0
|
80 |
} |
|
81 |
|
|
82 |
.tags { |
3
|
83 |
position: absolute; top: 0; left: 0; width: 140px; z-index: 2; font-size: 12px; cursor: pointer; |
0
|
84 |
} |
|
85 |
|
|
86 |
.tags-title { |
3
|
87 |
line-height: 40px; padding: 0 15px; font-size: 11px; color: #B8155F; |
2
|
88 |
font-family: 'Futura-Medium'; text-transform: uppercase; |
0
|
89 |
} |
1
|
90 |
|
3
|
91 |
.tags:hover .tags-title { |
|
92 |
background: #404040; color: #ffffff; |
|
93 |
} |
|
94 |
|
|
95 |
.tags-list { |
|
96 |
background: #303030; |
|
97 |
padding: 10px 0; display: none; |
|
98 |
} |
|
99 |
|
|
100 |
.tags:hover .tags-list { |
|
101 |
display: block; |
|
102 |
} |
|
103 |
|
|
104 |
.tag { |
|
105 |
color: #cccccc; padding: 5px 15px; |
|
106 |
} |
|
107 |
|
|
108 |
.tag:hover { |
|
109 |
color: #B8155F; background: #202020; |
|
110 |
} |
|
111 |
|
1
|
112 |
/* Pictograms on the left */ |
|
113 |
|
|
114 |
.pictolist { |
|
115 |
position: absolute; |
|
116 |
left: 20px; bottom: 115px; |
|
117 |
} |
|
118 |
|
|
119 |
.picto { |
|
120 |
width: 24px; height: 24px; padding: 7px; margin-top: 12px; background:black; |
|
121 |
border-radius: 19px; cursor: pointer; |
|
122 |
} |
|
123 |
|
|
124 |
.picto a { |
|
125 |
background: url(../img/sprites.png); display: block; width: 24px; height: 24px; |
|
126 |
} |
|
127 |
|
|
128 |
.picto.video:hover { |
|
129 |
background: #be4477; |
|
130 |
} |
|
131 |
|
|
132 |
.picto.video:hover a { |
|
133 |
background-position: -24px 0; |
|
134 |
} |
|
135 |
|
|
136 |
.picto.audio a { |
|
137 |
background-position: 0 -24px; |
|
138 |
} |
|
139 |
|
|
140 |
.picto.audio:hover { |
|
141 |
background: #63be6c; |
|
142 |
} |
|
143 |
|
|
144 |
.picto.audio:hover a { |
|
145 |
background-position: -24px -24px; |
|
146 |
} |
|
147 |
|
|
148 |
.picto.slideshow a { |
|
149 |
background-position: 0 -48px; |
|
150 |
} |
|
151 |
|
|
152 |
.picto.slideshow:hover { |
|
153 |
background: #f69058; |
|
154 |
} |
|
155 |
|
|
156 |
.picto.slideshow:hover a { |
|
157 |
background-position: -24px -48px; |
|
158 |
} |
|
159 |
|
|
160 |
.picto.text a { |
|
161 |
background-position: 0 -72px; |
|
162 |
} |
|
163 |
|
|
164 |
.picto.text:hover { |
|
165 |
background: #5e90cb; |
|
166 |
} |
|
167 |
|
|
168 |
.picto.text:hover a { |
|
169 |
background-position: -24px -72px; |
|
170 |
} |
|
171 |
|
|
172 |
.picto.quote a { |
|
173 |
background-position: 0 -96px; |
|
174 |
} |
|
175 |
|
|
176 |
.picto.quote:hover { |
|
177 |
background: #00aeb5; |
|
178 |
} |
|
179 |
|
|
180 |
.picto.quote:hover a { |
|
181 |
background-position: -24px -96px; |
|
182 |
} |
|
183 |
|
|
184 |
.picto.link a { |
|
185 |
background-position: 0 -120px; |
|
186 |
} |
|
187 |
|
|
188 |
.picto.link:hover { |
|
189 |
background: #8985bb; |
|
190 |
} |
|
191 |
|
|
192 |
.picto.link:hover a { |
|
193 |
background-position: -24px -120px; |
|
194 |
} |
|
195 |
|
2
|
196 |
/* Annotations */ |
|
197 |
|
|
198 |
.annotation { |
3
|
199 |
position: absolute; display: none; |
2
|
200 |
} |
|
201 |
|
|
202 |
.annotation-title { |
|
203 |
font-family: 'Futura-Medium'; text-align: center; |
|
204 |
} |
|
205 |
|
|
206 |
.close-annotation { |
|
207 |
float: right; text-decoration: none; margin: 0 5px; |
|
208 |
font-weight: bold; font-size: 20px; |
|
209 |
} |
|
210 |
|
3
|
211 |
.text-annotation, .slideshow-annotation, .video-annotation, .audio-annotation { |
2
|
212 |
left: 45px; top: 20px; right: 35px; |
|
213 |
} |
|
214 |
|
|
215 |
/* Text annotation */ |
|
216 |
|
|
217 |
.text-annotation { |
|
218 |
background: #ffffff; max-height: 522px; overflow: auto; |
|
219 |
} |
|
220 |
|
3
|
221 |
.text-annotation .close-annotation, |
|
222 |
.audio-annotation .close-annotation { |
2
|
223 |
color: #000000; |
|
224 |
} |
|
225 |
|
3
|
226 |
.text-annotation .close-annotation:hover, |
|
227 |
.audio-annotation .close-annotation:hover { |
|
228 |
color: #666666; |
|
229 |
} |
|
230 |
|
|
231 |
.text-annotation .annotation-title, |
|
232 |
.audio-annotation .annotation-title { |
|
233 |
font-size: 23px; margin: 24px 0; |
2
|
234 |
} |
|
235 |
|
|
236 |
.text-annotation .annotation-contents { |
|
237 |
font-family: Georgia, 'Times New Roman', serif; |
3
|
238 |
margin: 0 45px 45px; |
2
|
239 |
column-count: 2; column-gap: 60px; |
|
240 |
-moz-column-count: 2; -moz-column-gap: 60px; |
|
241 |
-webkit-column-count: 2; -webkit-column-gap: 60px; |
|
242 |
} |
|
243 |
|
|
244 |
.text-annotation p { |
|
245 |
margin-bottom: 10px; |
|
246 |
} |
|
247 |
|
3
|
248 |
/* Audio annotation */ |
|
249 |
|
|
250 |
.audio-annotation { |
|
251 |
background: #ffffff; |
|
252 |
} |
|
253 |
|
2
|
254 |
/* Slideshow annotation */ |
|
255 |
|
|
256 |
.slideshow-center { |
|
257 |
position: relative; background: rgba(0,0,0,.7); |
|
258 |
} |
|
259 |
|
|
260 |
.slideshow-annotation .annotation-title { |
|
261 |
height: 35px; line-height: 35px; color: #ffffff; font-size: 14px; background: #000000; |
|
262 |
} |
|
263 |
|
|
264 |
.slideshow-frame { |
3
|
265 |
float: left; |
2
|
266 |
} |
|
267 |
|
|
268 |
.slideshow-image { |
|
269 |
max-width: 650px; max-height: 452px; margin: 0 auto; display: block; |
|
270 |
} |
|
271 |
|
|
272 |
.slideshow-play-pause { |
|
273 |
float: left; padding: 10px 15px 11px; |
3
|
274 |
background: #404040; cursor: pointer; |
2
|
275 |
} |
|
276 |
|
|
277 |
.slideshow-play-pause a { |
|
278 |
background-image: url(../img/sprites.png); width: 14px; height: 14px; |
|
279 |
background-position: 0 -194px; display: block; |
|
280 |
} |
|
281 |
|
|
282 |
.slideshow-play-pause.pause a { |
|
283 |
background-position: -24px -194px; |
|
284 |
} |
|
285 |
|
|
286 |
.slideshow-play-pause:hover { |
|
287 |
background: #606060; |
|
288 |
} |
|
289 |
|
|
290 |
.slideshow-bottom { |
|
291 |
clear: both; height: 35px; background: #000000; |
|
292 |
} |
|
293 |
|
|
294 |
.slideshow-annotation .close-annotation, |
|
295 |
.video-annotation .close-annotation { |
3
|
296 |
color: #ffffff; margin-right: 10px; |
|
297 |
} |
|
298 |
|
|
299 |
.slideshow-annotation .close-annotation:hover, |
|
300 |
.video-annotation .close-annotation:hover { |
|
301 |
color: #cccccc; |
2
|
302 |
} |
|
303 |
|
|
304 |
.slideshow-annotation p, |
|
305 |
.video-annotation p { |
3
|
306 |
margin: 10px 25px 10px 15px; |
2
|
307 |
font-size: 12px; color: #CCCCCC; |
|
308 |
} |
|
309 |
|
|
310 |
.slideshow-description { |
3
|
311 |
max-height: 452px; overflow: auto; |
2
|
312 |
} |
|
313 |
|
|
314 |
.slideshow-center:after { |
|
315 |
content: "."; visibility: hidden; display: block; height: 1px; clear: both; |
|
316 |
} |
|
317 |
|
|
318 |
.slideshow-title, .slideshow-credits { |
|
319 |
line-height: 35px; margin: 0 15px; font-family: 'Futura-Medium'; font-size: 10px; |
|
320 |
} |
|
321 |
|
|
322 |
.slideshow-title { |
|
323 |
float: left; color: #cccccc; |
|
324 |
} |
|
325 |
|
|
326 |
.slideshow-credits { |
|
327 |
float: right; color: #808080; |
|
328 |
} |
|
329 |
|
|
330 |
.slideshow-arrow { |
|
331 |
position: absolute; top: 50%; margin-top: -22px; padding: 10px; cursor: pointer; |
|
332 |
} |
|
333 |
|
|
334 |
.slideshow-arrow a { |
|
335 |
display: block; height: 24px; width: 14px; background-image: url(../img/sprites.png); |
|
336 |
} |
|
337 |
|
|
338 |
.slideshow-arrow:hover { |
|
339 |
background-color: rgba(255,255,255,.5); |
|
340 |
} |
|
341 |
|
|
342 |
.slideshow-previous { |
|
343 |
left: 0; |
|
344 |
} |
|
345 |
|
|
346 |
.slideshow-previous a { |
|
347 |
background-position: 0 -208px; |
|
348 |
} |
|
349 |
|
|
350 |
.slideshow-next { |
|
351 |
right: 0; |
|
352 |
} |
|
353 |
|
|
354 |
.slideshow-next a { |
|
355 |
background-position: -14px -208px; |
|
356 |
} |
|
357 |
|
1
|
358 |
/* Bottom bar */ |
|
359 |
|
|
360 |
.bottom-bar { |
|
361 |
padding-top: 20px; |
|
362 |
} |
|
363 |
|
|
364 |
.play-button { |
2
|
365 |
float: left; width: 14px; height: 14px; |
|
366 |
padding: 8px; border-radius: 15px; |
|
367 |
background: #555555; cursor: pointer; |
1
|
368 |
margin: 8px 0 0 15px; |
|
369 |
} |
|
370 |
|
2
|
371 |
.play-button:hover { |
|
372 |
background: #909090; |
|
373 |
} |
|
374 |
|
|
375 |
.play-button a { |
|
376 |
background-image: url(../img/sprites.png); width: 14px; height: 14px; display: block; |
|
377 |
background-position: 0 -180px; |
|
378 |
} |
|
379 |
|
|
380 |
.play-button.pause a { |
|
381 |
background-position: -24px -180px; |
|
382 |
} |
|
383 |
|
1
|
384 |
.chapters-bar { |
2
|
385 |
margin: 0 20px 0 60px; height: 45px; position: relative; cursor: pointer; |
1
|
386 |
} |
|
387 |
|
|
388 |
.chapter { |
|
389 |
position: absolute; top: 0; |
|
390 |
} |
|
391 |
|
|
392 |
.chapter-block { |
|
393 |
width: 100%; height: 45px; background: #303030; |
2
|
394 |
margin: 0 -1px; |
|
395 |
border-style: none solid; border-width: 1px; |
|
396 |
border-color: #000000; |
1
|
397 |
} |
|
398 |
|
3
|
399 |
.chapter.active .chapter-block { |
|
400 |
background: #404040; |
|
401 |
} |
|
402 |
|
|
403 |
.chapter.found .chapter-block { |
|
404 |
background: #510829; |
|
405 |
} |
|
406 |
|
|
407 |
.chapter.found.active .chapter-block { |
|
408 |
background: #8a1249; |
1
|
409 |
} |
|
410 |
|
|
411 |
.chapter-title { |
3
|
412 |
position: absolute; top: 53px; left: 50%; width: 240px; margin-left: -120px; |
2
|
413 |
font-size: 9px; text-transform: uppercase; |
|
414 |
text-align: center; color: #909090; display: none; |
|
415 |
font-family: 'Futura-Medium'; |
1
|
416 |
} |
|
417 |
|
3
|
418 |
.chapter.active .chapter-title { |
1
|
419 |
display: block; |
|
420 |
} |
2
|
421 |
|
|
422 |
.chip { |
|
423 |
position: absolute; width: 11px; height: 11px; top: 17px; border-radius: 6px; |
|
424 |
margin-left: -6px; |
|
425 |
} |
|
426 |
|
|
427 |
.chip.video { |
|
428 |
background: #be4477; |
|
429 |
} |
|
430 |
|
|
431 |
.chip.audio { |
|
432 |
background: #63be6c; |
|
433 |
} |
|
434 |
|
|
435 |
.chip.slideshow { |
|
436 |
background: #f69058; |
|
437 |
} |
|
438 |
|
|
439 |
.chip.text { |
|
440 |
background: #5e90cb; |
|
441 |
} |
|
442 |
|
|
443 |
.chip.quote { |
|
444 |
background: #00aeb5; |
|
445 |
} |
|
446 |
|
|
447 |
.chip.link { |
|
448 |
background: #8985bb; |
|
449 |
} |
|
450 |
|
|
451 |
.left-hiding-block, .right-hiding-block { |
|
452 |
position: absolute; width: 6px; height: 11px; top: 17px; background: #000000; |
|
453 |
} |
|
454 |
|
|
455 |
.left-hiding-block { |
|
456 |
left: -6px; |
|
457 |
} |
|
458 |
|
|
459 |
.right-hiding-block { |
|
460 |
right: -6px; |
|
461 |
} |
|
462 |
|
|
463 |
.prev-chapter, .next-chapter { |
|
464 |
width: 12px; height: 16px; margin: 8px 5px; |
3
|
465 |
background: url(../img/sprites.png); cursor: pointer; |
2
|
466 |
} |
|
467 |
|
|
468 |
.next-chapter { |
|
469 |
float: right; background-position: -12px -144px; |
|
470 |
} |
|
471 |
|
|
472 |
.next-chapter:hover { |
|
473 |
background-position: -36px -144px; |
|
474 |
} |
|
475 |
|
|
476 |
.next-chapter.inactive { |
|
477 |
background-position: -12px -160px; |
|
478 |
} |
|
479 |
|
|
480 |
.prev-chapter { |
|
481 |
float: left; background-position: 0 -144px; |
|
482 |
} |
|
483 |
|
|
484 |
.prev-chapter:hover { |
|
485 |
background-position: -24px -144px; |
|
486 |
} |
|
487 |
|
|
488 |
.prev-chapter.inactive { |
|
489 |
background-position: 0 -160px; |
|
490 |
} |
|
491 |
|
|
492 |
.progress-indicator { |
|
493 |
position: absolute; top: 0; width: 2px; height: 100%; background: #c0c0c0; /* margin-left: -1px; */ |
|
494 |
} |
|
495 |
|
|
496 |
.progress-indicator:hover { |
|
497 |
background: #ffffff; |
|
498 |
} |
|
499 |
|
|
500 |
/* */ |