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 |
|
18
|
46 |
/* End of the reset part */ |
|
47 |
|
0
|
48 |
html { |
|
49 |
overflow: hidden; |
|
50 |
} |
|
51 |
|
2
|
52 |
/* Fonts */ |
|
53 |
|
|
54 |
@font-face { |
18
|
55 |
font-family: 'OpenSans'; |
|
56 |
font-weight: 400; |
|
57 |
src: url('../fonts/OpenSans-Regular.woff') format('woff'), |
|
58 |
url('../fonts/OpenSans-Regular.ttf') format('truetype'), |
|
59 |
url('../fonts/OpenSans-Regular.svg#OpenSans') format('svg'); |
|
60 |
} |
|
61 |
|
|
62 |
@font-face { |
|
63 |
font-family: 'OpenSans'; |
|
64 |
font-weight: 700; |
|
65 |
src: url('../fonts/OpenSans-Bold.woff') format('woff'), |
|
66 |
url('../fonts/OpenSans-Bold.ttf') format('truetype'), |
|
67 |
url('../fonts/OpenSans-Bold.svg#OpenSans-Bold') format('svg'); |
2
|
68 |
} |
|
69 |
|
9
|
70 |
@font-face { |
18
|
71 |
font-family: 'OpenSans'; |
|
72 |
font-weight: 800; |
|
73 |
src: url('../fonts/OpenSans-ExtraBold.woff') format('woff'), |
|
74 |
url('../fonts/OpenSans-ExtraBold.ttf') format('truetype'), |
|
75 |
url('../fonts/OpenSans-ExtraBold.svg#OpenSans-Extrabold') format('svg'); |
9
|
76 |
} |
0
|
77 |
|
18
|
78 |
@font-face { |
|
79 |
font-family: 'OpenSans-CondensedBold'; |
|
80 |
src: url('../fonts/OpenSans-CondBold.woff') format('woff'), |
|
81 |
url('../fonts/OpenSans-CondBold.ttf') format('truetype'), |
|
82 |
url('../fonts/OpenSans-CondBold.svg#OpenSans-CondensedBold') format('svg'); |
|
83 |
} |
0
|
84 |
body { |
18
|
85 |
background: #000000; font-family: 'OpenSans'; font-weight: 400; |
0
|
86 |
} |
|
87 |
|
64
|
88 |
::-webkit-scrollbar { |
|
89 |
width: 10px; |
|
90 |
} |
|
91 |
|
|
92 |
::-webkit-scrollbar:hover { |
|
93 |
background: rgba(128,128,128,.2); |
|
94 |
} |
|
95 |
|
|
96 |
::-webkit-scrollbar-thumb { |
|
97 |
background: rgba(128,128,128,.4); width: 10px; border-radius: 10px; |
|
98 |
} |
|
99 |
|
|
100 |
::-webkit-scrollbar-thumb:hover { |
|
101 |
background: rgba(128,128,128,.6); |
|
102 |
} |
|
103 |
|
0
|
104 |
/* Top Bar */ |
|
105 |
|
|
106 |
.top-bar { |
18
|
107 |
position: absolute; left: 0; right: 0; top: 0; height: 40px; |
|
108 |
} |
|
109 |
|
|
110 |
.topright-buttons { |
|
111 |
float: right; |
|
112 |
} |
|
113 |
|
|
114 |
.topright-buttons a { |
|
115 |
float: left; background-image: url(../img/sprites.png); margin: 8px 8px 0 0; opacity: .5; |
|
116 |
transition: opacity 0.5s; -webkit-transition: opacity 0.5s; width: 24px; height: 24px; |
|
117 |
} |
|
118 |
|
|
119 |
.topright-buttons a:hover { |
|
120 |
opacity: 1; |
|
121 |
} |
|
122 |
|
|
123 |
.about { |
|
124 |
background-position: -24px -232px; |
|
125 |
} |
|
126 |
|
|
127 |
.full-screen { |
|
128 |
background-position: 0 -232px; |
0
|
129 |
} |
|
130 |
|
|
131 |
/* Main Video Frame */ |
|
132 |
|
|
133 |
.main-video { |
18
|
134 |
position: absolute; z-index: 1; top: 40px; left: 0; right: 0; bottom: 96px; |
|
135 |
} |
|
136 |
|
|
137 |
.video-container { |
|
138 |
position: absolute; left: 0; top: 0; width: 100%; height: 100%; |
|
139 |
} |
|
140 |
|
|
141 |
.video-container video { |
|
142 |
max-width: 100%; max-height: 100%; margin: 0 auto; display: block; |
0
|
143 |
} |
|
144 |
|
|
145 |
.project-title { |
2
|
146 |
text-align: center; line-height: 40px; font-size: 17px; color: #b0b0b0; |
18
|
147 |
font-weight: 700; |
0
|
148 |
} |
|
149 |
|
|
150 |
.tags { |
3
|
151 |
position: absolute; top: 0; left: 0; width: 140px; z-index: 2; font-size: 12px; cursor: pointer; |
0
|
152 |
} |
|
153 |
|
|
154 |
.tags-title { |
8
|
155 |
line-height: 40px; padding: 0 15px; font-size: 11px; color: #B8155F; |
18
|
156 |
font-weight: 700; text-transform: uppercase; |
0
|
157 |
} |
1
|
158 |
|
3
|
159 |
.tags:hover .tags-title { |
|
160 |
background: #404040; color: #ffffff; |
|
161 |
} |
|
162 |
|
|
163 |
.tags-list { |
|
164 |
background: #303030; |
|
165 |
padding: 10px 0; display: none; |
|
166 |
} |
|
167 |
|
|
168 |
.tag { |
|
169 |
color: #cccccc; padding: 5px 15px; |
|
170 |
} |
|
171 |
|
|
172 |
.tag:hover { |
8
|
173 |
color: #ffffff; background: #202020; |
6
|
174 |
} |
|
175 |
|
|
176 |
.tag.found { |
8
|
177 |
color: #ffffff; |
3
|
178 |
} |
|
179 |
|
5
|
180 |
/* Annotation colors */ |
|
181 |
|
|
182 |
.video { |
|
183 |
color: #be4477; |
|
184 |
} |
|
185 |
|
|
186 |
.audio { |
|
187 |
color:#63be6c; |
|
188 |
} |
|
189 |
|
|
190 |
.slideshow { |
|
191 |
color: #f69058; |
|
192 |
} |
|
193 |
|
|
194 |
.text { |
|
195 |
color:#5e90cb; |
|
196 |
} |
|
197 |
|
|
198 |
.quote { |
|
199 |
color:#00aeb5; |
|
200 |
} |
|
201 |
|
|
202 |
.link { |
|
203 |
color:#8985bb; |
|
204 |
} |
|
205 |
|
|
206 |
|
1
|
207 |
/* Pictograms on the left */ |
|
208 |
|
|
209 |
.pictolist { |
|
210 |
position: absolute; |
18
|
211 |
left: 0; bottom: 0; margin: 0 0 24px 14px; |
1
|
212 |
} |
|
213 |
|
5
|
214 |
.pictolist li { |
8
|
215 |
line-height: 38px; opacity: 0; display: none; height: 0; |
|
216 |
padding: 6px; width: 38px; overflow: hidden; |
18
|
217 |
-webkit-transition: width 0.5s; |
|
218 |
transition: width 0.5s; |
8
|
219 |
} |
|
220 |
|
|
221 |
.pictolist li.hover { |
|
222 |
width: 400px; |
5
|
223 |
} |
|
224 |
|
1
|
225 |
.picto { |
5
|
226 |
float: left; padding: 7px; background:black; |
1
|
227 |
border-radius: 19px; cursor: pointer; |
18
|
228 |
-webkit-transition: background 0.5s; |
|
229 |
transition: background 0.5s; |
6
|
230 |
} |
|
231 |
|
5
|
232 |
.picto-title { |
8
|
233 |
margin-left: 8px; font-size: 12px; text-transform: uppercase; |
9
|
234 |
padding: 4px 6px; background: rgba(0, 0, 0, .7); |
18
|
235 |
font-family: 'OpenSans-CondensedBold'; |
9
|
236 |
} |
|
237 |
|
|
238 |
.found .picto-title { |
|
239 |
background: rgba(255, 255, 255, .7); |
5
|
240 |
} |
|
241 |
|
1
|
242 |
.picto a { |
|
243 |
background: url(../img/sprites.png); display: block; width: 24px; height: 24px; |
|
244 |
} |
|
245 |
|
6
|
246 |
.video.hover .picto , |
|
247 |
.video.current .picto { |
1
|
248 |
background: #be4477; |
|
249 |
} |
|
250 |
|
6
|
251 |
.video.hover .picto a , |
|
252 |
.video.current .picto a { |
1
|
253 |
background-position: -24px 0; |
|
254 |
} |
|
255 |
|
5
|
256 |
.audio .picto a { |
1
|
257 |
background-position: 0 -24px; |
|
258 |
} |
|
259 |
|
6
|
260 |
.audio.hover .picto, |
|
261 |
.audio.current .picto { |
1
|
262 |
background: #63be6c; |
|
263 |
} |
|
264 |
|
6
|
265 |
.audio.hover .picto a , |
|
266 |
.audio.current .picto a { |
1
|
267 |
background-position: -24px -24px; |
|
268 |
} |
|
269 |
|
5
|
270 |
.slideshow .picto a { |
1
|
271 |
background-position: 0 -48px; |
|
272 |
} |
|
273 |
|
6
|
274 |
.slideshow.hover .picto , |
|
275 |
.slideshow.current .picto { |
1
|
276 |
background: #f69058; |
|
277 |
} |
|
278 |
|
6
|
279 |
.slideshow.hover .picto a , |
|
280 |
.slideshow.current .picto a { |
1
|
281 |
background-position: -24px -48px; |
|
282 |
} |
|
283 |
|
5
|
284 |
.text .picto a { |
1
|
285 |
background-position: 0 -72px; |
|
286 |
} |
|
287 |
|
6
|
288 |
.text.hover .picto , |
|
289 |
.text.current .picto { |
1
|
290 |
background: #5e90cb; |
|
291 |
} |
|
292 |
|
6
|
293 |
.text.hover .picto a , |
|
294 |
.text.current .picto a { |
1
|
295 |
background-position: -24px -72px; |
|
296 |
} |
|
297 |
|
5
|
298 |
.quote .picto a { |
1
|
299 |
background-position: 0 -96px; |
|
300 |
} |
|
301 |
|
6
|
302 |
.quote.hover .picto , |
|
303 |
.quote.current .picto { |
1
|
304 |
background: #00aeb5; |
|
305 |
} |
|
306 |
|
6
|
307 |
.quote.hover .picto a , |
|
308 |
.quote.current .picto a { |
1
|
309 |
background-position: -24px -96px; |
|
310 |
} |
|
311 |
|
5
|
312 |
.link .picto a { |
1
|
313 |
background-position: 0 -120px; |
|
314 |
} |
|
315 |
|
6
|
316 |
.link.hover .picto , |
|
317 |
.link.current .picto { |
1
|
318 |
background: #8985bb; |
|
319 |
} |
|
320 |
|
6
|
321 |
.link.hover .picto a , |
|
322 |
.link.current .picto a { |
1
|
323 |
background-position: -24px -120px; |
|
324 |
} |
|
325 |
|
9
|
326 |
.found .picto, |
|
327 |
.current.found picto, |
|
328 |
.hover.found .picto { |
|
329 |
background: #ffffff; |
|
330 |
} |
|
331 |
|
2
|
332 |
/* Annotations */ |
|
333 |
|
5
|
334 |
.annotation-templates { |
|
335 |
display: none; |
|
336 |
} |
|
337 |
|
2
|
338 |
.annotation { |
64
|
339 |
position: absolute; left: 50%; |
2
|
340 |
} |
|
341 |
|
|
342 |
.annotation-title { |
18
|
343 |
font-weight: 800; text-align: center; |
2
|
344 |
} |
|
345 |
|
|
346 |
.close-annotation { |
9
|
347 |
float: right; margin: 10px 10px 0 0; width: 11px; height: 10px; background-image: url(../img/sprites.png); |
2
|
348 |
} |
|
349 |
|
6
|
350 |
.annotation { |
64
|
351 |
top: 800px; width: 920px; margin-left: -455px; |
18
|
352 |
transition: top 0.5s; -webkit-transition: top 0.5s; |
8
|
353 |
} |
|
354 |
|
18
|
355 |
.annotation-main:after, .about-collaboration:after { |
15
|
356 |
content: "."; visibility: hidden; display: block; height: 0; line-height: 0; clear: both; |
2
|
357 |
} |
|
358 |
|
8
|
359 |
/* Narrow annotations */ |
2
|
360 |
|
8
|
361 |
.narrow-annotation { |
64
|
362 |
width: 590px; margin-left: -290px; |
8
|
363 |
} |
|
364 |
|
|
365 |
/* White annotations */ |
|
366 |
|
|
367 |
.white-annotation { |
64
|
368 |
background: #ffffff; |
2
|
369 |
} |
|
370 |
|
8
|
371 |
.white-annotation { |
2
|
372 |
color: #000000; |
|
373 |
} |
|
374 |
|
9
|
375 |
.white-annotation .close-annotation { |
|
376 |
background-position: -24px -160px; |
|
377 |
} |
|
378 |
|
8
|
379 |
.white-annotation .close-annotation:hover { |
9
|
380 |
background-position: -36px -160px; |
3
|
381 |
} |
|
382 |
|
8
|
383 |
.white-annotation .annotation-title { |
64
|
384 |
font-size: 23px; margin: 24px; line-height: 24px; |
2
|
385 |
} |
|
386 |
|
8
|
387 |
/* Black annotations */ |
|
388 |
|
|
389 |
.black-annotation .annotation-main { |
9
|
390 |
background: rgba(0,0,0,.7); |
8
|
391 |
} |
|
392 |
|
|
393 |
.black-annotation .annotation-title { |
|
394 |
height: 35px; line-height: 35px; color: #ffffff; font-size: 14px; background: #000000; |
|
395 |
} |
|
396 |
|
|
397 |
.black-annotation .close-annotation { |
9
|
398 |
background-position: -24px -170px; |
8
|
399 |
} |
|
400 |
|
|
401 |
.black-annotation .close-annotation:hover { |
9
|
402 |
background-position: -36px -170px; |
8
|
403 |
} |
|
404 |
|
|
405 |
.black-annotation p { |
|
406 |
margin: 10px 25px 10px 15px; |
|
407 |
font-size: 12px; color: #CCCCCC; |
|
408 |
} |
|
409 |
|
|
410 |
/* Text annotation */ |
|
411 |
|
64
|
412 |
.text-contents, .link-contents { |
2
|
413 |
font-family: Georgia, 'Times New Roman', serif; |
64
|
414 |
overflow: auto; |
|
415 |
} |
|
416 |
|
|
417 |
.text-contents { |
|
418 |
margin: 0 25px 35px; font-size: 15px; padding: 0 20px 0; |
15
|
419 |
} |
|
420 |
|
|
421 |
.text-contents p, .text-contents ul, .text-contents ol { |
|
422 |
margin-bottom: 10px; |
|
423 |
} |
|
424 |
|
|
425 |
.text-contents h2, .text-contents h3, .text-contents h4 { |
|
426 |
/* text-align: center; */ |
18
|
427 |
font-family: 'OpenSans-CondensedBold'; margin: 12px 0; |
|
428 |
text-transform: uppercase; |
15
|
429 |
} |
|
430 |
|
|
431 |
.text-contents img { |
|
432 |
float: left; margin: 0 5px 2px 0; |
|
433 |
} |
18
|
434 |
|
15
|
435 |
.column-group { |
2
|
436 |
column-count: 2; column-gap: 60px; |
|
437 |
-moz-column-count: 2; -moz-column-gap: 60px; |
|
438 |
-webkit-column-count: 2; -webkit-column-gap: 60px; |
|
439 |
} |
18
|
440 |
|
6
|
441 |
.text-contents h2 { |
|
442 |
font-size: 21px; |
|
443 |
} |
|
444 |
|
|
445 |
.text-contents h3 { |
|
446 |
font-size: 18px; |
|
447 |
} |
|
448 |
|
|
449 |
.text-contents h4 { |
|
450 |
font-size: 15px; |
|
451 |
} |
|
452 |
|
|
453 |
.text-contents b, .text-contents strong { |
|
454 |
font-weight: bold; |
|
455 |
} |
|
456 |
|
|
457 |
.text-contents em, .text-contents i { |
|
458 |
font-style: italic; |
|
459 |
} |
|
460 |
|
|
461 |
.text-contents a { |
|
462 |
color: #5E90CB; |
|
463 |
} |
|
464 |
|
|
465 |
.text-contents ul { |
|
466 |
list-style: disc; padding-left: 2em; |
|
467 |
} |
|
468 |
|
|
469 |
.text-contents ol { |
|
470 |
list-style: decimal; padding-left: 2em; |
|
471 |
} |
|
472 |
|
|
473 |
.text-contents li { |
|
474 |
list-style: inherit; margin: 2px 0; |
|
475 |
} |
|
476 |
|
|
477 |
/* Link annotation */ |
|
478 |
|
|
479 |
.link-contents { |
|
480 |
font-family: Georgia, 'Times New Roman', serif; |
64
|
481 |
margin: 40px 60px 60px; padding: 0 20px 0; |
6
|
482 |
} |
|
483 |
|
|
484 |
.link-contents p { |
9
|
485 |
text-align: center; font-size: 23px; margin: 25px 0; |
6
|
486 |
} |
|
487 |
|
|
488 |
.link-contents a { |
|
489 |
color: #000000; |
2
|
490 |
} |
|
491 |
|
3
|
492 |
/* Audio annotation */ |
|
493 |
|
7
|
494 |
.audio-annotation .media-description { |
15
|
495 |
margin: 25px 0 0; font-size: 15px; |
8
|
496 |
} |
|
497 |
|
|
498 |
.audio-annotation .annotation-main { |
|
499 |
padding: 25px 0 15px; |
6
|
500 |
} |
|
501 |
|
7
|
502 |
.audio-annotation .media-frame { |
8
|
503 |
margin: 0 15px; |
6
|
504 |
} |
|
505 |
|
7
|
506 |
.audio-annotation p { |
8
|
507 |
margin: 10px 15px; |
3
|
508 |
} |
|
509 |
|
8
|
510 |
/* Video annotation */ |
2
|
511 |
|
7
|
512 |
.video-annotation .media-frame { |
|
513 |
float: left; width: 650px; max-height: 487px; |
|
514 |
} |
|
515 |
|
|
516 |
.video-annotation video { |
|
517 |
width: 650px; max-height: 487px; |
6
|
518 |
} |
|
519 |
|
8
|
520 |
.video-annotation .media-description { |
|
521 |
max-height: 487px; overflow: auto; |
|
522 |
} |
|
523 |
|
|
524 |
/* Slideshow annotation */ |
|
525 |
|
|
526 |
.slideshow-frame { |
9
|
527 |
float: left; width: 650px; height: 452px; position: relative; background: #000000; |
8
|
528 |
} |
2
|
529 |
.slideshow-image { |
|
530 |
max-width: 650px; max-height: 452px; margin: 0 auto; display: block; |
|
531 |
} |
|
532 |
|
|
533 |
.slideshow-play-pause { |
|
534 |
float: left; padding: 10px 15px 11px; |
3
|
535 |
background: #404040; cursor: pointer; |
18
|
536 |
-webkit-transition: background 0.5s; |
|
537 |
transition: background 0.5s; |
2
|
538 |
} |
|
539 |
|
|
540 |
.slideshow-play-pause a { |
|
541 |
background-image: url(../img/sprites.png); width: 14px; height: 14px; |
|
542 |
background-position: 0 -194px; display: block; |
|
543 |
} |
|
544 |
|
|
545 |
.slideshow-play-pause.pause a { |
|
546 |
background-position: -24px -194px; |
|
547 |
} |
|
548 |
|
|
549 |
.slideshow-play-pause:hover { |
|
550 |
background: #606060; |
|
551 |
} |
|
552 |
|
|
553 |
.slideshow-bottom { |
|
554 |
clear: both; height: 35px; background: #000000; |
|
555 |
} |
|
556 |
|
|
557 |
.slideshow-description { |
9
|
558 |
height: 452px; overflow: auto; |
2
|
559 |
} |
|
560 |
|
|
561 |
.slideshow-title { |
18
|
562 |
line-height: 35px; margin: 0 15px; font-weight: 700; font-size: 13px; color: #cccccc; float: left; |
2
|
563 |
} |
|
564 |
|
|
565 |
.slideshow-arrow { |
|
566 |
position: absolute; top: 50%; margin-top: -22px; padding: 10px; cursor: pointer; |
18
|
567 |
-webkit-transition: background 0.5s; |
|
568 |
transition: background 0.5s; |
2
|
569 |
} |
|
570 |
|
|
571 |
.slideshow-arrow a { |
|
572 |
display: block; height: 24px; width: 14px; background-image: url(../img/sprites.png); |
|
573 |
} |
|
574 |
|
|
575 |
.slideshow-arrow:hover { |
|
576 |
background-color: rgba(255,255,255,.5); |
|
577 |
} |
|
578 |
|
|
579 |
.slideshow-previous { |
|
580 |
left: 0; |
|
581 |
} |
|
582 |
|
|
583 |
.slideshow-previous a { |
|
584 |
background-position: 0 -208px; |
|
585 |
} |
|
586 |
|
|
587 |
.slideshow-next { |
|
588 |
right: 0; |
|
589 |
} |
|
590 |
|
|
591 |
.slideshow-next a { |
|
592 |
background-position: -14px -208px; |
|
593 |
} |
|
594 |
|
18
|
595 |
/* About box */ |
|
596 |
|
|
597 |
.about-box { |
|
598 |
overflow: visible; |
|
599 |
} |
|
600 |
|
|
601 |
.about-box h3 { |
|
602 |
text-align: center; font-weight: 700; font-size: 16px; |
|
603 |
} |
|
604 |
|
|
605 |
.about-collaboration { |
|
606 |
margin: 5px 0 40px; |
|
607 |
} |
|
608 |
|
|
609 |
.about-collaboration li { |
|
610 |
width: 50%; float: left; text-align: center; font-size: 14px; |
|
611 |
} |
|
612 |
|
|
613 |
.about-collaboration img { |
|
614 |
display: block; margin: 5px auto; height: 120px; |
|
615 |
} |
|
616 |
|
1
|
617 |
/* Bottom bar */ |
|
618 |
|
|
619 |
.bottom-bar { |
21
|
620 |
position: absolute; bottom: 0; left: 0; right: 0; height: 80px; |
1
|
621 |
} |
|
622 |
|
|
623 |
.play-button { |
2
|
624 |
float: left; width: 14px; height: 14px; |
|
625 |
padding: 8px; border-radius: 15px; |
18
|
626 |
background: #404040; cursor: pointer; |
21
|
627 |
margin: 12px 0 0 15px; |
18
|
628 |
-webkit-transition: background 0.5s; |
|
629 |
transition: background 0.5s; |
1
|
630 |
} |
|
631 |
|
2
|
632 |
.play-button:hover { |
|
633 |
background: #909090; |
|
634 |
} |
|
635 |
|
|
636 |
.play-button a { |
|
637 |
background-image: url(../img/sprites.png); width: 14px; height: 14px; display: block; |
|
638 |
background-position: 0 -180px; |
|
639 |
} |
|
640 |
|
|
641 |
.play-button.pause a { |
|
642 |
background-position: -24px -180px; |
|
643 |
} |
|
644 |
|
18
|
645 |
.timelines { |
|
646 |
margin: 0 20px 0 60px; |
|
647 |
} |
|
648 |
|
|
649 |
.timeline { |
55
|
650 |
background: #303030; height: 10px; position: relative; cursor: pointer; overflow: hidden; |
18
|
651 |
} |
|
652 |
|
|
653 |
.annotation-onscreen .timeline { |
|
654 |
background: #181818; |
|
655 |
} |
|
656 |
|
1
|
657 |
.chapters-bar { |
18
|
658 |
margin-top: 3px; height: 42px; position: relative; cursor: pointer; |
1
|
659 |
} |
|
660 |
|
|
661 |
.chapter { |
|
662 |
position: absolute; top: 0; |
|
663 |
} |
|
664 |
|
|
665 |
.chapter-block { |
18
|
666 |
width: 100%; height: 42px; background: #303030; |
2
|
667 |
margin: 0 -1px; |
|
668 |
border-style: none solid; border-width: 1px; |
|
669 |
border-color: #000000; |
18
|
670 |
-webkit-transition: background 0.5s, opacity 0.5s; |
|
671 |
transition: background 0.5s, opacity 0.5s; |
1
|
672 |
} |
|
673 |
|
3
|
674 |
.chapter.active .chapter-block { |
18
|
675 |
background: #505050; |
3
|
676 |
} |
|
677 |
|
|
678 |
.chapter.found .chapter-block { |
9
|
679 |
background: #ffffff; |
1
|
680 |
} |
|
681 |
|
5
|
682 |
.annotation-onscreen .chapter-block { |
|
683 |
opacity: .5; |
|
684 |
} |
|
685 |
|
1
|
686 |
.chapter-title { |
18
|
687 |
position: absolute; top: 46px; left: 50%; width: 300px; margin-left: -150px; |
2
|
688 |
font-size: 9px; text-transform: uppercase; |
8
|
689 |
text-align: center; color: #909090; opacity: 0; |
18
|
690 |
font-weight: 700; |
|
691 |
-webkit-transition: background 0.5s; |
|
692 |
transition: opacity 0.5s; |
1
|
693 |
} |
|
694 |
|
3
|
695 |
.chapter.active .chapter-title { |
8
|
696 |
opacity: 1; |
1
|
697 |
} |
2
|
698 |
|
|
699 |
.chip { |
6
|
700 |
position: absolute; top: 0; width: 1px; |
5
|
701 |
} |
|
702 |
|
|
703 |
.chip-circle { |
18
|
704 |
width: 11px; height: 11px; top: 15px; left: -5px; border-radius: 6px; position: absolute; |
|
705 |
-webkit-transition: background 0.5s, opacity 0.5s; |
|
706 |
transition: background 0.5s, opacity 0.5s; |
8
|
707 |
} |
|
708 |
|
|
709 |
.chip-pole { |
18
|
710 |
position: absolute; top: 0; left: 0; width: 0; height: 15px; border-left: 1px solid; display: none; |
8
|
711 |
} |
|
712 |
|
|
713 |
.chip.hover .chip-pole { |
|
714 |
display: block; |
5
|
715 |
} |
|
716 |
|
|
717 |
.chip-title { |
32
|
718 |
position: absolute; top: 0; left: 3px; font-size: 10px; line-height: 13px; height: 13px; |
18
|
719 |
font-weight: 700; |
9
|
720 |
display: block; width: 0; overflow: hidden; |
18
|
721 |
-webkit-transition: width 0.5s; |
|
722 |
transition: width 0.5s; |
6
|
723 |
} |
|
724 |
|
|
725 |
.chip.hover .chip-title { |
8
|
726 |
width: 200px; |
|
727 |
} |
|
728 |
|
|
729 |
.chip.left .chip-title { |
|
730 |
left: auto; right: 3px; text-align: right; |
5
|
731 |
} |
|
732 |
|
|
733 |
.annotation-onscreen .chip { |
|
734 |
opacity: .3; |
|
735 |
} |
|
736 |
|
|
737 |
.chip.current, |
|
738 |
.chip.hover { |
|
739 |
opacity: 1; |
|
740 |
} |
|
741 |
|
|
742 |
.video .chip-circle { |
9
|
743 |
background: #be4477; color: #be4477; |
2
|
744 |
} |
|
745 |
|
5
|
746 |
.audio .chip-circle { |
9
|
747 |
background: #63be6c; color: #63be6c; |
2
|
748 |
} |
|
749 |
|
5
|
750 |
.slideshow .chip-circle { |
9
|
751 |
background: #f69058; color: #f69058; |
2
|
752 |
} |
|
753 |
|
5
|
754 |
.text .chip-circle { |
9
|
755 |
background: #5e90cb; color: #5e90cb; |
2
|
756 |
} |
|
757 |
|
5
|
758 |
.quote .chip-circle { |
9
|
759 |
background: #00aeb5; color: #00aeb5; |
2
|
760 |
} |
|
761 |
|
5
|
762 |
.link .chip-circle { |
9
|
763 |
background: #8985bb; color: #8985bb; |
|
764 |
} |
|
765 |
|
|
766 |
.found .chip-circle { |
|
767 |
background: #ffffff; |
32
|
768 |
border: 2px solid; left: -6px; top: 14px; width: 9px; height: 9px; |
2
|
769 |
} |
|
770 |
|
|
771 |
.left-hiding-block, .right-hiding-block { |
23
|
772 |
position: absolute; width: 6px; height: 11px; top: 15px; background: #000000; |
2
|
773 |
} |
|
774 |
|
|
775 |
.left-hiding-block { |
|
776 |
left: -6px; |
|
777 |
} |
|
778 |
|
|
779 |
.right-hiding-block { |
|
780 |
right: -6px; |
|
781 |
} |
|
782 |
|
8
|
783 |
.chapter-nav { |
|
784 |
position: relative; |
|
785 |
} |
|
786 |
|
2
|
787 |
.prev-chapter, .next-chapter { |
8
|
788 |
position: absolute; z-index: 4; |
18
|
789 |
width: 12px; height: 16px; margin: 4px 5px; |
3
|
790 |
background: url(../img/sprites.png); cursor: pointer; |
2
|
791 |
} |
|
792 |
|
|
793 |
.next-chapter { |
8
|
794 |
right: 0; background-position: -12px -144px; |
2
|
795 |
} |
|
796 |
|
|
797 |
.next-chapter:hover { |
|
798 |
background-position: -36px -144px; |
|
799 |
} |
|
800 |
|
|
801 |
.next-chapter.inactive { |
|
802 |
background-position: -12px -160px; |
|
803 |
} |
|
804 |
|
|
805 |
.prev-chapter { |
8
|
806 |
left: 0; background-position: 0 -144px; |
2
|
807 |
} |
|
808 |
|
|
809 |
.prev-chapter:hover { |
|
810 |
background-position: -24px -144px; |
|
811 |
} |
|
812 |
|
|
813 |
.prev-chapter.inactive { |
|
814 |
background-position: 0 -160px; |
|
815 |
} |
|
816 |
|
18
|
817 |
.elapsed { |
|
818 |
position: absolute; background: #505050; left: 0; top: 0; height: 100%; |
|
819 |
} |
|
820 |
|
|
821 |
.annotation-onscreen .elapsed { |
|
822 |
background: #282828; |
2
|
823 |
} |
|
824 |
|
18
|
825 |
.progress-indicator, .mouse-progress-indicator { |
|
826 |
position: absolute; top: 0; width: 2px; height: 100%; margin-left: -1px; |
|
827 |
} |
|
828 |
|
|
829 |
.progress-indicator { |
|
830 |
background: #c0c0c0; |
|
831 |
} |
|
832 |
|
|
833 |
.mouse-progress-indicator { |
|
834 |
background: #B8155F; display: none; |
2
|
835 |
} |
|
836 |
|
55
|
837 |
.media-duration, .media-position, .time-at-mouse { |
|
838 |
text-align: right; color: #e0e0e0; line-height: 10px; font-size: 10px; position: absolute; right: 2px; top: 0; |
|
839 |
} |
|
840 |
|
|
841 |
.time-at-mouse { |
|
842 |
color: #db8aaf; padding-right: 1px; |
|
843 |
} |
|
844 |
|
2
|
845 |
/* */ |