| author | ymh <ymh.work@gmail.com> |
| Tue, 12 Feb 2013 10:54:34 +0100 | |
| changeset 134 | 678b07d351ef |
| parent 129 | d796993fe244 |
| permissions | -rw-r--r-- |
| 50 | 1 |
/* http://meyerweb.com/eric/tools/css/reset/ |
2 |
v2.0 | 20110126 |
|
3 |
License: none (public domain) |
|
4 |
*/ |
|
5 |
||
6 |
html, body, div, span, applet, object, iframe, |
|
7 |
h1, h2, h3, h4, h5, h6, p, blockquote, pre, |
|
8 |
a, abbr, acronym, address, big, cite, code, |
|
9 |
del, dfn, em, img, ins, kbd, q, s, samp, |
|
10 |
small, strike, strong, sub, sup, tt, var, |
|
11 |
b, u, i, center, |
|
12 |
dl, dt, dd, ol, ul, li, |
|
13 |
fieldset, form, label, legend, |
|
14 |
table, caption, tbody, tfoot, thead, tr, th, td, |
|
15 |
article, aside, canvas, details, embed, |
|
16 |
figure, figcaption, footer, header, hgroup, |
|
17 |
menu, nav, output, ruby, section, summary, |
|
18 |
time, mark, audio, video { |
|
19 |
margin: 0; |
|
20 |
padding: 0; |
|
21 |
border: 0; |
|
22 |
font-size: 100%; |
|
23 |
font: inherit; |
|
24 |
vertical-align: baseline; |
|
25 |
} |
|
26 |
/* HTML5 display-role reset for older browsers */ |
|
27 |
article, aside, details, figcaption, figure, |
|
28 |
footer, header, hgroup, menu, nav, section { |
|
29 |
display: block; |
|
30 |
} |
|
31 |
body { |
|
32 |
line-height: 1; |
|
33 |
} |
|
34 |
ol, ul { |
|
35 |
list-style: none; |
|
36 |
} |
|
37 |
blockquote, q { |
|
38 |
quotes: none; |
|
39 |
} |
|
40 |
blockquote:before, blockquote:after, |
|
41 |
q:before, q:after { |
|
42 |
content: ''; |
|
43 |
content: none; |
|
44 |
} |
|
45 |
table { |
|
46 |
border-collapse: collapse; |
|
47 |
border-spacing: 0; |
|
48 |
} |
|
49 |
||
50 |
.clear{ |
|
51 |
clear: both; |
|
52 |
} |
|
53 |
||
54 |
input::-moz-focus-inner { |
|
55 |
border: 0 none; |
|
56 |
padding: 0; |
|
57 |
} |
|
58 |
||
59 |
/* END RESET.CSS */ |
|
60 |
||
| 64 | 61 |
/* FONTS */ |
62 |
@font-face { |
|
63 |
font-family: "arial_black"; |
|
64 |
src: url('arial_black-webfont.eot'); |
|
65 |
src: url('arial_black-webfont.eot?#iefix') format('embedded-opentype'), |
|
66 |
url('arial_black-webfont.woff') format('woff'), |
|
67 |
url('arial_black-webfont.ttf') format('truetype'), |
|
68 |
url('arial_black-webfont.svg#arial_blackregular') format('svg'); |
|
69 |
font-weight: normal; |
|
70 |
font-style: normal; |
|
71 |
} |
|
72 |
@font-face { |
|
73 |
font-family: "arial_base"; |
|
74 |
src: url('arial_bold-webfont.eot'); |
|
75 |
src: url('arial_bold-webfont.eot?#iefix') format('embedded-opentype'), |
|
76 |
url('arial_bold-webfont.woff') format('woff'), |
|
77 |
url('arial_bold-webfont.ttf') format('truetype'), |
|
78 |
url('arial_bold-webfont.svg#arialbold') format('svg'); |
|
79 |
font-weight: bold; |
|
80 |
font-style: normal; |
|
81 |
} |
|
82 |
@font-face { |
|
83 |
font-family: "arial_base"; |
|
84 |
src: url('arial-webfont.eot'); |
|
85 |
src: url('arial-webfont.eot?#iefix') format('embedded-opentype'), |
|
86 |
url('arial-webfont.woff') format('woff'), |
|
87 |
url('arial-webfont.ttf') format('truetype') |
|
88 |
url('arial-webfont.svg#arialregular') format('svg'); |
|
89 |
font-weight: normal; |
|
90 |
font-style: normal; |
|
91 |
} |
|
92 |
/* END FONTS */ |
|
93 |
||
| 50 | 94 |
fieldset, img, button { |
95 |
border: none; |
|
96 |
} |
|
97 |
||
98 |
body { |
|
| 64 | 99 |
font-family: "arial_base", sans-serif; |
| 50 | 100 |
background-color: black; font-size: 12px; |
101 |
overflow: hidden; |
|
102 |
} |
|
103 |
h1 { |
|
| 64 | 104 |
font-family: "arial_black", sans-serif; |
| 50 | 105 |
font-size: 43px; |
106 |
color: #ffffff; |
|
107 |
text-transform: uppercase; |
|
108 |
} |
|
109 |
b, |
|
110 |
strong, |
|
111 |
.bold { |
|
112 |
font-weight: bold; |
|
113 |
} |
|
114 |
.uppercase{ |
|
115 |
text-transform:uppercase; |
|
116 |
} |
|
117 |
a, |
|
118 |
a:link, |
|
119 |
a:visited, |
|
120 |
a:active { |
|
121 |
text-decoration: none; |
|
122 |
} |
|
123 |
a.link_img, |
|
124 |
a.link_img:link, |
|
125 |
a.link_img:visited, |
|
126 |
a.link_img:active { |
|
127 |
opacity: 0.586; |
|
128 |
} |
|
129 |
a.link_img:hover { |
|
130 |
opacity: 1; |
|
131 |
} |
|
132 |
footer { |
|
133 |
||
134 |
position: fixed; |
|
135 |
bottom: 0; |
|
136 |
left: 0; |
|
137 |
width: 100%; |
|
138 |
|
|
139 |
height: 50px; |
|
140 |
-webkit-box-sizing: border-box; |
|
141 |
-moz-box-sizing: border-box; |
|
142 |
box-sizing: border-box; |
|
143 |
} |
|
144 |
.floatL { |
|
145 |
float: left; |
|
146 |
} |
|
147 |
.floatR { |
|
148 |
float: right; |
|
149 |
} |
|
150 |
/*----------------------------------------------*/ |
|
151 |
/* 4- Main HP */ |
|
152 |
/*----------------------------------------------*/ |
|
153 |
section a, |
|
154 |
section a:link, |
|
155 |
section a:visited, |
|
156 |
section a:active { |
|
157 |
color: #ffffff; |
|
158 |
} |
|
159 |
section a:hover { |
|
160 |
color: #bfbfbf; |
|
161 |
} |
|
162 |
/*----------------------------------------------*/ |
|
163 |
/* 9- Footer HP */ |
|
164 |
/*----------------------------------------------*/ |
|
165 |
||
166 |
footer a, |
|
167 |
footer a:link, |
|
168 |
footer a:visited, |
|
169 |
footer a:active { |
|
170 |
color: #bfbfbf; |
|
171 |
} |
|
172 |
footer a:hover { |
|
173 |
color: #ffffff; |
|
174 |
} |
|
175 |
footer ul { |
|
176 |
margin: 0; |
|
177 |
||
| 64 | 178 |
font-weight: bold; |
| 50 | 179 |
font-size: 9px; |
180 |
color: #b9b9b9; |
|
181 |
text-transform: uppercase; |
|
182 |
} |
|
183 |
footer ul li{ |
|
184 |
display: inline; |
|
185 |
} |
|
186 |
footer ul li a{ |
|
187 |
display: inline-block; |
|
188 |
} |
|
189 |
/*----------------------------------------------*/ |
|
190 |
/* 5- Video Page */ |
|
191 |
/*----------------------------------------------*/ |
|
192 |
.link_prev{ |
|
193 |
display: inline-block; |
|
194 |
width: 17px; |
|
195 |
height: 20px; |
|
196 |
margin-left: 6px; |
|
197 |
vertical-align: baseline; |
|
198 |
} |
|
199 |
.link_prev img { |
|
200 |
width: 100%; |
|
201 |
} |
|
202 |
#title_vp { |
|
203 |
padding: 19px 0 5px 0; |
|
204 |
} |
|
205 |
#title_vp h1{ |
|
206 |
display: inline-block; |
|
207 |
margin-left: 12px; |
|
208 |
font-size: 27px; |
|
209 |
} |
|
210 |
||
211 |
/*----------------------------------------------*/ |
|
212 |
/* Video */ |
|
213 |
/*----------------------------------------------*/ |
|
214 |
.video_wrap { |
|
215 |
width: 100%; position: relative; background: #333333; |
|
216 |
} |
|
217 |
#video_sequence { |
|
218 |
position: relative; width: 237px; height: 100px; margin: 0 auto; |
|
219 |
} |
|
220 |
.float_sequence { |
|
221 |
white-space: nowrap; |
|
222 |
overflow: hidden; |
|
223 |
} |
|
224 |
.float_sequence ul{ |
|
225 |
display: inline-block; |
|
226 |
margin: 0; |
|
227 |
padding: 7px 0; |
|
228 |
} |
|
229 |
.float_sequence li { |
|
230 |
display: inline-block; |
|
| 64 | 231 |
margin: 0 6px; |
| 50 | 232 |
} |
233 |
.float_sequence li a { |
|
234 |
display: inline-block; |
|
235 |
} |
|
236 |
#title_sequence { |
|
237 |
width: 100%; |
|
238 |
margin-bottom: 9px; |
|
239 |
||
| 64 | 240 |
font-family: "arial_black", sans-serif; |
| 50 | 241 |
font-size: 16px; |
242 |
color: #777777; |
|
243 |
} |
|
244 |
#title_sequence ul { |
|
245 |
left: 36px; |
|
246 |
} |
|
247 |
#title_sequence a, |
|
248 |
#title_sequence a:link, |
|
249 |
#title_sequence a:visited, |
|
250 |
#title_sequence a:active{ |
|
| 64 | 251 |
font-family: "arial_black", sans-serif; |
| 50 | 252 |
font-size: 16px; |
253 |
color: #777777; |
|
254 |
} |
|
255 |
#title_sequence a:hover { |
|
256 |
color: #ffffff; |
|
257 |
} |
|
258 |
#title_sequence .here a{ |
|
259 |
color: #ffffff; |
|
260 |
} |
|
261 |
#tag_container { |
|
262 |
margin: 9px 0; |
|
263 |
} |
|
264 |
#tag_sequence { |
|
265 |
margin-right: 209px; |
|
266 |
font-size: 13px; |
|
| 64 | 267 |
font-weight: bold; |
| 50 | 268 |
} |
269 |
/*----------------------------------------------*/ |
|
270 |
/* Search/Tag */ |
|
271 |
/*----------------------------------------------*/ |
|
272 |
input { |
|
| 64 | 273 |
font-family: "arial_base", sans-serif; |
| 50 | 274 |
font-size: 13px; |
275 |
color: #000000; |
|
276 |
height: 24px; |
|
277 |
border: none; |
|
278 |
padding: 0; |
|
279 |
margin: 0; |
|
280 |
float: left; |
|
281 |
-webkit-appearance: none; |
|
282 |
} |
|
283 |
input[type=text] { |
|
284 |
width: 158px; |
|
285 |
background-color: #999999; |
|
286 |
border-radius: 4px 0 0 4px; |
|
287 |
padding:0 8px; |
|
288 |
} |
|
289 |
input[type=search] { |
|
290 |
width: 200px; |
|
291 |
background-color: #999999; |
|
292 |
border-radius: 4px; |
|
293 |
padding:0 8px; |
|
294 |
margin-right: 20px; |
|
295 |
} |
|
296 |
input[type=submit] { |
|
297 |
width: 33px; |
|
298 |
background-color: #636363; |
|
299 |
font-weight: bold; |
|
300 |
font-size: 15px; |
|
301 |
text-align: center; |
|
302 |
line-height: 24px; |
|
303 |
border-radius: 0 4px 4px 0; |
|
304 |
margin: 0 5px; |
|
305 |
} |
|
306 |
input[type=submit]:hover{ |
|
307 |
background-color: #ffffff; |
|
308 |
} |
|
309 |
::-webkit-input-placeholder { |
|
310 |
color: #333; text-style: italic; |
|
311 |
} |
|
312 |
:-moz-placeholder { |
|
313 |
color: #333; text-style: italic; |
|
314 |
} |
|
315 |
:-ms-input-placeholder { |
|
316 |
color: #333; text-style: italic; |
|
317 |
} |
|
318 |
#form_tag, |
|
319 |
#form_search { |
|
320 |
float: right; |
|
321 |
margin-left: 13px; |
|
322 |
} |
|
323 |
/*----------------------------------------------*/ |
|
324 |
/* Video Controls */ |
|
325 |
/*----------------------------------------------*/ |
|
326 |
.video-wait { |
|
327 |
background: url(../img/playvideo.png) rgba(128,128,128,.5) center no-repeat; |
|
328 |
font-size: 48px; |
|
329 |
z-index: 8; |
|
330 |
position: absolute; left: 0; top: 0; width: 100%; height: 100%; |
|
331 |
} |
|
332 |
.video-wait.pause { |
|
333 |
background: none; |
|
334 |
} |
|
335 |
#controlContainer{ |
|
| 64 | 336 |
overflow: hidden; |
| 50 | 337 |
} |
338 |
#controlbar { |
|
339 |
position: absolute; |
|
340 |
bottom: 0px; |
|
341 |
left: 0; |
|
342 |
right: 0; |
|
343 |
height: 50px; |
|
| 64 | 344 |
text-align: center; |
345 |
font-size: 0; |
|
346 |
white-space: nowrap; |
|
| 50 | 347 |
} |
348 |
#progressContainer { |
|
349 |
width: 240px; |
|
350 |
padding-top: 8px; |
|
| 64 | 351 |
margin: 0 16px; |
352 |
display: inline-block; |
|
353 |
font-size: 10px; |
|
| 50 | 354 |
} |
| 64 | 355 |
|
| 50 | 356 |
#progressBar { |
357 |
position: relative; |
|
358 |
z-index: 1; |
|
359 |
width: 240px; |
|
| 64 | 360 |
background: #777777; border: none; |
361 |
height: 5px; |
|
362 |
border-radius: 2px; |
|
| 50 | 363 |
} |
364 |
||
365 |
#progressBar .ui-slider-handle { |
|
| 64 | 366 |
width: 12px; |
367 |
height: 12px; |
|
368 |
background: #000000; |
|
369 |
border-radius: 2px; |
|
370 |
border: 2px solid #777777; |
|
371 |
-moz-box-shadow: 0 0 5px 3px #000000; |
|
372 |
-webkit-box-shadow: 0 0 5px 3px #000000; |
|
373 |
box-shadow: 0 0 5px 3px #000000; |
|
| 50 | 374 |
background-position: -72px 0; |
| 64 | 375 |
margin-left: -8px; |
| 50 | 376 |
margin-top: -2px; |
377 |
cursor: hand; |
|
378 |
} |
|
379 |
||
380 |
#progressBar .ui-slider-range { |
|
| 64 | 381 |
background: #ffffff; border: none; |
382 |
border-radius: 2px; |
|
| 50 | 383 |
} |
384 |
||
385 |
#btnPlayPause { |
|
| 64 | 386 |
width: 16px; |
387 |
height: 18px; |
|
388 |
background-position: -77px 0; |
|
| 50 | 389 |
margin-top: 2px; |
390 |
} |
|
391 |
#btnPlayPause.pause { |
|
| 64 | 392 |
background-position: -77px -17px; |
| 50 | 393 |
} |
394 |
||
395 |
footer ul#progressTime{ |
|
396 |
margin: 10px 0; |
|
397 |
width: 240px; |
|
398 |
font-size: 11px; |
|
399 |
} |
|
400 |
.txt_white { |
|
401 |
color: #ffffff; |
|
402 |
} |
|
403 |
||
| 57 | 404 |
.btn, .sdhdbtn { |
| 50 | 405 |
background: transparent url(../img/controls.png) no-repeat top left; |
| 64 | 406 |
display: inline-block; vertical-align: top; |
| 57 | 407 |
} |
408 |
||
409 |
.btn, .sdhdgroup { |
|
| 50 | 410 |
margin: 0 16px; |
411 |
} |
|
| 57 | 412 |
|
413 |
.sdhdgroup { |
|
414 |
margin-top: 5px; |
|
| 64 | 415 |
display: inline-block; vertical-align: top; |
| 57 | 416 |
} |
417 |
||
418 |
.sdhdbtn { |
|
419 |
height: 12px; |
|
420 |
} |
|
421 |
||
422 |
#btnSD { |
|
423 |
width: 24px; |
|
424 |
} |
|
425 |
||
426 |
.SD #btnSD, .HD #btnSD:hover { |
|
| 50 | 427 |
background-position: 0 0; |
428 |
} |
|
| 57 | 429 |
.HD #btnSD { |
| 50 | 430 |
background-position: 0 -12px; |
| 57 | 431 |
} |
432 |
||
433 |
.sdhdsep { |
|
434 |
background-position: -24px 0; width: 6px; |
|
435 |
} |
|
436 |
||
437 |
#btnHD { |
|
438 |
width: 25px; |
|
439 |
} |
|
440 |
||
441 |
.SD #btnHD { |
|
442 |
background-position: -30px 0; |
|
443 |
} |
|
444 |
.SD #btnHD:hover, .HD #btnHD { |
|
445 |
background-position: -30px -12px; |
|
446 |
} |
|
447 |
||
| 50 | 448 |
#btnBck { |
449 |
background-position: -55px 0; |
|
450 |
width: 16px; |
|
451 |
height: 16px; |
|
452 |
margin-top: 3px; |
|
453 |
} |
|
454 |
#btnBck:hover { |
|
455 |
background-position: -55px -16px; |
|
456 |
} |
|
457 |
#btnFwd { |
|
458 |
background-position: -93px 0; |
|
459 |
width: 16px; |
|
460 |
height: 16px; |
|
461 |
margin-top: 3px; |
|
462 |
} |
|
463 |
#btnFwd:hover { |
|
464 |
background-position: -93px -16px; |
|
465 |
} |
|
466 |
#btnInfo { |
|
467 |
background-position: -109px 0; |
|
468 |
width: 21px; |
|
469 |
height: 21px; |
|
470 |
} |
|
471 |
#btnInfo:hover { |
|
472 |
background-position: -109px -21px; |
|
473 |
} |
|
474 |
#btnChoice { |
|
475 |
background-position: -130px 0; |
|
476 |
width: 21px; |
|
477 |
height: 21px; |
|
478 |
} |
|
479 |
#btnChoice:hover { |
|
480 |
background-position: -130px -21px; |
|
481 |
} |
|
482 |
||
483 |
/* HOME PAGE */ |
|
484 |
||
485 |
.home_header { |
|
486 |
margin-top: 20px; |
|
487 |
} |
|
488 |
||
489 |
.taglist_container { |
|
490 |
position: absolute; top:80px; |
|
491 |
bottom: 0; left: 0; right: 0; overflow: hidden; |
|
492 |
} |
|
493 |
||
494 |
.taglist_container table { |
|
| 129 | 495 |
position: absolute; border-collapse: collapse; border: 1px solid #151515; |
| 50 | 496 |
} |
497 |
||
498 |
.taglist_container td { |
|
499 |
width: 180px; min-width: 180px; max-width: 180px; font-size: 16px; |
|
| 129 | 500 |
height: 52px; min-height: 52px; max-height: 52px; text-align: center; |
501 |
overflow: hidden; vertical-align: middle; border: 1px solid #151515; |
|
| 50 | 502 |
} |
| 64 | 503 |
|
504 |
/* ARROWS */ |
|
505 |
||
506 |
.arrow { |
|
507 |
position: absolute; width: 22px; height: 22px; margin-left: -11px; margin-top: -11px; background: url(../img/arrows.png); |
|
508 |
cursor: pointer; |
|
509 |
} |
|
510 |
||
511 |
.arrow_left { |
|
512 |
left: 0; top: 50%; margin-left: 0; background-position: top left; |
|
513 |
} |
|
514 |
||
515 |
.arrow_right { |
|
516 |
right: 0; top: 50%; margin-left: 0; background-position: top right; |
|
517 |
} |
|
518 |
||
519 |
.arrow_top { |
|
520 |
top: 0; left: 50%; margin-top: 0; background-position: bottom left; |
|
521 |
} |
|
522 |
||
523 |
.arrow_bottom { |
|
524 |
bottom: 0; left: 50%; margin-top: 0; background-position: bottom right; |
|
525 |
} |
|
526 |
||
527 |
/* AUTOCOMPLETE */ |
|
528 |
||
529 |
.ui-autocomplete { |
|
530 |
max-height: 100px; |
|
531 |
max-width: 170px; |
|
532 |
overflow: auto; |
|
| 129 | 533 |
background: #1d1d1d; |
534 |
border: none; |
|
535 |
border-radius: 0; |
|
| 64 | 536 |
} |
537 |
.home .ui-autocomplete { |
|
538 |
max-width: 210px; |
|
539 |
max-height: 500px; |
|
540 |
} |
|
|
73
fb4d0566ab19
Bugfixes, Segment list now moves when changing segments
veltr
parents:
64
diff
changeset
|
541 |
|
| 129 | 542 |
.ui-menu-item { |
543 |
margin: 0 2px; padding: 5px; border-bottom: 2px solid #000000; color: #ffffff; |
|
544 |
} |
|
545 |
||
546 |
.ui-menu-item a { |
|
547 |
color: #f0f0f0; |
|
548 |
} |
|
549 |
||
|
73
fb4d0566ab19
Bugfixes, Segment list now moves when changing segments
veltr
parents:
64
diff
changeset
|
550 |
/* LIGHTBOX */ |
|
fb4d0566ab19
Bugfixes, Segment list now moves when changing segments
veltr
parents:
64
diff
changeset
|
551 |
|
|
fb4d0566ab19
Bugfixes, Segment list now moves when changing segments
veltr
parents:
64
diff
changeset
|
552 |
.lightBoxWrap { |
|
fb4d0566ab19
Bugfixes, Segment list now moves when changing segments
veltr
parents:
64
diff
changeset
|
553 |
display: none; z-index: 100; |
|
fb4d0566ab19
Bugfixes, Segment list now moves when changing segments
veltr
parents:
64
diff
changeset
|
554 |
} |
|
fb4d0566ab19
Bugfixes, Segment list now moves when changing segments
veltr
parents:
64
diff
changeset
|
555 |
|
|
fb4d0566ab19
Bugfixes, Segment list now moves when changing segments
veltr
parents:
64
diff
changeset
|
556 |
.lightBoxWrap, .lightBoxBg { |
|
fb4d0566ab19
Bugfixes, Segment list now moves when changing segments
veltr
parents:
64
diff
changeset
|
557 |
position: absolute; top: 0; left: 0; right: 0; bottom: 0; |
|
fb4d0566ab19
Bugfixes, Segment list now moves when changing segments
veltr
parents:
64
diff
changeset
|
558 |
} |
|
fb4d0566ab19
Bugfixes, Segment list now moves when changing segments
veltr
parents:
64
diff
changeset
|
559 |
|
|
fb4d0566ab19
Bugfixes, Segment list now moves when changing segments
veltr
parents:
64
diff
changeset
|
560 |
.lightBoxBg { |
|
fb4d0566ab19
Bugfixes, Segment list now moves when changing segments
veltr
parents:
64
diff
changeset
|
561 |
background: black; opacity: .8; |
|
fb4d0566ab19
Bugfixes, Segment list now moves when changing segments
veltr
parents:
64
diff
changeset
|
562 |
} |
|
fb4d0566ab19
Bugfixes, Segment list now moves when changing segments
veltr
parents:
64
diff
changeset
|
563 |
|
|
fb4d0566ab19
Bugfixes, Segment list now moves when changing segments
veltr
parents:
64
diff
changeset
|
564 |
.lightBox { |
| 95 | 565 |
position: absolute; top: 15%; left: 15%; right: 15%; bottom: 15%; color: #FFFFFF; |
|
73
fb4d0566ab19
Bugfixes, Segment list now moves when changing segments
veltr
parents:
64
diff
changeset
|
566 |
} |
|
fb4d0566ab19
Bugfixes, Segment list now moves when changing segments
veltr
parents:
64
diff
changeset
|
567 |
|
|
fb4d0566ab19
Bugfixes, Segment list now moves when changing segments
veltr
parents:
64
diff
changeset
|
568 |
.lightBoxScroll { |
| 95 | 569 |
position: absolute; top: 60px; left: 0; right: 0; bottom: 0; overflow: auto; |
|
73
fb4d0566ab19
Bugfixes, Segment list now moves when changing segments
veltr
parents:
64
diff
changeset
|
570 |
} |
|
fb4d0566ab19
Bugfixes, Segment list now moves when changing segments
veltr
parents:
64
diff
changeset
|
571 |
|
|
fb4d0566ab19
Bugfixes, Segment list now moves when changing segments
veltr
parents:
64
diff
changeset
|
572 |
.lightBox h3 { |
| 95 | 573 |
font-family: "arial_black", sans-serif; |
574 |
font-size: 24px; text-align: center; margin: 3px 0; |
|
|
73
fb4d0566ab19
Bugfixes, Segment list now moves when changing segments
veltr
parents:
64
diff
changeset
|
575 |
} |
|
fb4d0566ab19
Bugfixes, Segment list now moves when changing segments
veltr
parents:
64
diff
changeset
|
576 |
|
|
fb4d0566ab19
Bugfixes, Segment list now moves when changing segments
veltr
parents:
64
diff
changeset
|
577 |
a.lightBoxClose { |
| 95 | 578 |
float: right; font-size: 30px; color: #ACACAC; |
579 |
font-weight: bold; |
|
|
73
fb4d0566ab19
Bugfixes, Segment list now moves when changing segments
veltr
parents:
64
diff
changeset
|
580 |
} |
|
fb4d0566ab19
Bugfixes, Segment list now moves when changing segments
veltr
parents:
64
diff
changeset
|
581 |
|
|
fb4d0566ab19
Bugfixes, Segment list now moves when changing segments
veltr
parents:
64
diff
changeset
|
582 |
a.lightBoxClose:hover { |
|
fb4d0566ab19
Bugfixes, Segment list now moves when changing segments
veltr
parents:
64
diff
changeset
|
583 |
color: #FFFFFF; |
|
fb4d0566ab19
Bugfixes, Segment list now moves when changing segments
veltr
parents:
64
diff
changeset
|
584 |
} |
|
fb4d0566ab19
Bugfixes, Segment list now moves when changing segments
veltr
parents:
64
diff
changeset
|
585 |
|
| 91 | 586 |
.lightBoxScroll p { |
| 95 | 587 |
font-size: 14px; margin: 14px 20px 14px 0; line-height: 21px; |
|
73
fb4d0566ab19
Bugfixes, Segment list now moves when changing segments
veltr
parents:
64
diff
changeset
|
588 |
} |
|
fb4d0566ab19
Bugfixes, Segment list now moves when changing segments
veltr
parents:
64
diff
changeset
|
589 |
|
|
fb4d0566ab19
Bugfixes, Segment list now moves when changing segments
veltr
parents:
64
diff
changeset
|
590 |
.lightBoxScroll h4 { |
| 95 | 591 |
font-size: 18px; font-family: "arial_black", sans-serif; margin: 18px 0; |
592 |
} |
|
593 |
||
594 |
.grey { |
|
595 |
color: #9B9A9A; |
|
|
73
fb4d0566ab19
Bugfixes, Segment list now moves when changing segments
veltr
parents:
64
diff
changeset
|
596 |
} |
|
76
4bdadca1cd5a
Now uses sort by weight option and unloads unnecessary video files
veltr
parents:
73
diff
changeset
|
597 |
|
|
4bdadca1cd5a
Now uses sort by weight option and unloads unnecessary video files
veltr
parents:
73
diff
changeset
|
598 |
/* METANAV COMPENSATION */ |
|
4bdadca1cd5a
Now uses sort by weight option and unloads unnecessary video files
veltr
parents:
73
diff
changeset
|
599 |
|
|
4bdadca1cd5a
Now uses sort by weight option and unloads unnecessary video files
veltr
parents:
73
diff
changeset
|
600 |
.metanav { |
|
4bdadca1cd5a
Now uses sort by weight option and unloads unnecessary video files
veltr
parents:
73
diff
changeset
|
601 |
position: fixed !important; |
|
4bdadca1cd5a
Now uses sort by weight option and unloads unnecessary video files
veltr
parents:
73
diff
changeset
|
602 |
z-index: 1000; |
|
4bdadca1cd5a
Now uses sort by weight option and unloads unnecessary video files
veltr
parents:
73
diff
changeset
|
603 |
} |