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