@jburnhams/tube-ts 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,988 @@
1
+ /* node_modules/shaka-player/dist/controls.css */
2
+ .shaka-hidden {
3
+ display: none !important;
4
+ }
5
+ .shaka-video-container {
6
+ position: relative;
7
+ top: 0;
8
+ left: 0;
9
+ display: flex;
10
+ font-family:
11
+ Roboto,
12
+ sans-serif,
13
+ TengwarTelcontar;
14
+ font-weight: 400;
15
+ -webkit-font-smoothing: antialiased;
16
+ user-select: none;
17
+ -webkit-user-select: none;
18
+ }
19
+ .shaka-video-container .material-svg-icon {
20
+ font-size: 24px;
21
+ }
22
+ .shaka-video-container:fullscreen {
23
+ width: 100%;
24
+ height: 100%;
25
+ background-color: #000;
26
+ }
27
+ .shaka-video-container:fullscreen .shaka-text-container {
28
+ font-size: 4.4vmin;
29
+ }
30
+ .shaka-video-container:-webkit-full-screen {
31
+ width: 100%;
32
+ height: 100%;
33
+ background-color: #000;
34
+ }
35
+ .shaka-video-container:-webkit-full-screen .shaka-text-container {
36
+ font-size: 4.4vmin;
37
+ }
38
+ .shaka-video-container:-moz-full-screen {
39
+ width: 100%;
40
+ height: 100%;
41
+ background-color: #000;
42
+ }
43
+ .shaka-video-container:-moz-full-screen .shaka-text-container {
44
+ font-size: 4.4vmin;
45
+ }
46
+ .shaka-video-container:-ms-fullscreen {
47
+ width: 100%;
48
+ height: 100%;
49
+ background-color: #000;
50
+ }
51
+ .shaka-video-container:-ms-fullscreen .shaka-text-container {
52
+ font-size: 4.4vmin;
53
+ }
54
+ .shaka-controls-container {
55
+ position: absolute;
56
+ top: 0;
57
+ left: 0;
58
+ right: 0;
59
+ bottom: 0;
60
+ margin: 0;
61
+ padding: 0;
62
+ width: 100%;
63
+ height: 100%;
64
+ box-sizing: border-box;
65
+ display: flex;
66
+ flex-direction: column;
67
+ justify-content: flex-end;
68
+ align-items: center;
69
+ z-index: 1;
70
+ }
71
+ .shaka-video-container:not([shaka-controls=true]) .shaka-controls-container {
72
+ display: none;
73
+ }
74
+ .shaka-controls-container * {
75
+ flex-shrink: 0;
76
+ }
77
+ .shaka-controls-container[casting=true] .shaka-fullscreen-button {
78
+ display: none;
79
+ }
80
+ .shaka-canvas-container {
81
+ position: absolute;
82
+ top: 0;
83
+ left: 0;
84
+ right: 0;
85
+ bottom: 0;
86
+ margin: 0;
87
+ padding: 0;
88
+ width: 100%;
89
+ height: 100%;
90
+ pointer-events: none;
91
+ }
92
+ .shaka-vr-canvas-container {
93
+ position: absolute;
94
+ top: 0;
95
+ left: 0;
96
+ right: 0;
97
+ bottom: 0;
98
+ margin: 0;
99
+ padding: 0;
100
+ width: 100%;
101
+ height: 100%;
102
+ pointer-events: none;
103
+ }
104
+ .shaka-bottom-controls {
105
+ width: 98%;
106
+ padding: 0;
107
+ z-index: 1;
108
+ }
109
+ .shaka-controls-button-panel {
110
+ padding: 0;
111
+ margin: 0;
112
+ display: flex;
113
+ flex-direction: row;
114
+ justify-content: flex-end;
115
+ align-items: center;
116
+ overflow: hidden;
117
+ min-width: 48px;
118
+ font-size: 12px;
119
+ font-weight: 400;
120
+ font-style: normal;
121
+ user-select: none;
122
+ -webkit-user-select: none;
123
+ -moz-user-select: none;
124
+ -ms-user-select: none;
125
+ opacity: 0;
126
+ transition: opacity cubic-bezier(.4, 0, .6, 1) .6s;
127
+ }
128
+ .shaka-controls-container[casting=true] .shaka-controls-button-panel,
129
+ .shaka-controls-container[shown=true] .shaka-controls-button-panel {
130
+ opacity: 1;
131
+ }
132
+ .shaka-controls-button-panel > * {
133
+ color: #fff;
134
+ height: 48px;
135
+ width: 48px;
136
+ line-height: .5;
137
+ padding: 0 2px;
138
+ background: 0 0;
139
+ border: 0;
140
+ cursor: pointer;
141
+ opacity: .9;
142
+ transition: opacity cubic-bezier(.4, 0, .6, 1) .1s;
143
+ text-shadow: 0 0 2px rgba(0, 0, 0, .5);
144
+ }
145
+ .shaka-controls-button-panel > .shaka-fast-forward-button .material-svg-icon,
146
+ .shaka-controls-button-panel > .shaka-rewind-button .material-svg-icon,
147
+ .shaka-controls-button-panel > .shaka-skip-next-button .material-svg-icon,
148
+ .shaka-controls-button-panel > .shaka-skip-previous-button .material-svg-icon,
149
+ .shaka-controls-button-panel > .shaka-small-play-button .material-svg-icon {
150
+ font-size: 32px;
151
+ }
152
+ .shaka-controls-button-panel > .shaka-fullscreen-button .material-svg-icon {
153
+ font-size: 24px;
154
+ }
155
+ .shaka-controls-button-panel > .shaka-overflow-menu-button {
156
+ position: relative;
157
+ }
158
+ .shaka-controls-button-panel > .shaka-overflow-menu-button .material-svg-icon {
159
+ font-size: 24px;
160
+ }
161
+ .shaka-controls-button-panel > :hover {
162
+ opacity: 1;
163
+ }
164
+ .shaka-controls-button-panel .shaka-overflow-menu-only {
165
+ display: none;
166
+ }
167
+ .shaka-play-button-container {
168
+ margin: 0;
169
+ width: 100%;
170
+ height: 100%;
171
+ flex-shrink: 1;
172
+ position: absolute;
173
+ left: 0;
174
+ right: 0;
175
+ top: 0;
176
+ bottom: 0;
177
+ display: flex;
178
+ justify-content: center;
179
+ align-items: center;
180
+ z-index: 1;
181
+ }
182
+ .shaka-statistics-container {
183
+ overflow-x: hidden;
184
+ overflow-y: auto;
185
+ scrollbar-color: white rgba(0, 0, 0, 0.5);
186
+ scrollbar-width: thin;
187
+ min-width: 300px;
188
+ color: #fff;
189
+ background-color: rgba(35, 35, 35, .9);
190
+ font-size: 14px;
191
+ padding: 5px 10px;
192
+ border-radius: 2px;
193
+ position: absolute;
194
+ z-index: 2;
195
+ left: 15px;
196
+ top: 15px;
197
+ max-height: calc(100% - 115px);
198
+ opacity: 0;
199
+ transition: opacity cubic-bezier(.4, 0, .6, 1) .6s;
200
+ }
201
+ .shaka-controls-container[casting=true] .shaka-statistics-container,
202
+ .shaka-controls-container[shown=true] .shaka-statistics-container {
203
+ opacity: 1;
204
+ }
205
+ .shaka-statistics-container div {
206
+ display: flex;
207
+ justify-content: space-between;
208
+ }
209
+ .shaka-statistics-container span {
210
+ color: #969696;
211
+ }
212
+ .shaka-ad-statistics-container {
213
+ overflow-x: hidden;
214
+ overflow-y: auto;
215
+ scrollbar-color: white rgba(0, 0, 0, 0.5);
216
+ scrollbar-width: thin;
217
+ min-width: 150px;
218
+ color: #fff;
219
+ background-color: rgba(35, 35, 35, .9);
220
+ font-size: 14px;
221
+ padding: 5px 10px;
222
+ border-radius: 2px;
223
+ position: absolute;
224
+ z-index: 2;
225
+ right: 15px;
226
+ top: 15px;
227
+ max-height: calc(100% - 115px);
228
+ opacity: 0;
229
+ transition: opacity cubic-bezier(.4, 0, .6, 1) .6s;
230
+ }
231
+ .shaka-controls-container[casting=true] .shaka-ad-statistics-container,
232
+ .shaka-controls-container[shown=true] .shaka-ad-statistics-container {
233
+ opacity: 1;
234
+ }
235
+ .shaka-ad-statistics-container div {
236
+ display: flex;
237
+ justify-content: space-between;
238
+ }
239
+ .shaka-ad-statistics-container span {
240
+ color: #969696;
241
+ }
242
+ .shaka-context-menu {
243
+ overflow-x: hidden;
244
+ overflow-y: auto;
245
+ white-space: nowrap;
246
+ background: rgba(28, 28, 28, .9);
247
+ border-radius: 2px;
248
+ min-width: 190px;
249
+ opacity: 0;
250
+ transition: opacity cubic-bezier(.4, 0, .6, 1) .6s;
251
+ display: flex;
252
+ flex-direction: column;
253
+ align-items: stretch;
254
+ position: absolute;
255
+ z-index: 3;
256
+ }
257
+ .shaka-controls-container[casting=true] .shaka-context-menu,
258
+ .shaka-controls-container[shown=true] .shaka-context-menu {
259
+ opacity: 1;
260
+ }
261
+ .shaka-context-menu button {
262
+ font-size: 14px;
263
+ background: 0 0;
264
+ color: #fff;
265
+ border: none;
266
+ min-height: 30px;
267
+ padding: 10px;
268
+ display: flex;
269
+ align-items: center;
270
+ cursor: pointer;
271
+ }
272
+ .shaka-context-menu button:hover {
273
+ background: rgba(255, 255, 255, .1);
274
+ }
275
+ .shaka-context-menu button label {
276
+ cursor: pointer;
277
+ margin-left: 5px;
278
+ }
279
+ .shaka-keyboard-navigation .shaka-context-menu button:focus {
280
+ background: rgba(255, 255, 255, .1);
281
+ }
282
+ .shaka-context-menu button .shaka-current-selection-span {
283
+ display: none;
284
+ }
285
+ .shaka-scrim-container {
286
+ margin: 0;
287
+ width: 100%;
288
+ position: absolute;
289
+ left: 0;
290
+ right: 0;
291
+ bottom: 0;
292
+ flex-shrink: 1;
293
+ opacity: 0;
294
+ transition: opacity cubic-bezier(.4, 0, .6, 1) .6s;
295
+ height: 61px;
296
+ background: linear-gradient(rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, .5) 100%);
297
+ }
298
+ .shaka-controls-container[casting=true] .shaka-scrim-container,
299
+ .shaka-controls-container[shown=true] .shaka-scrim-container {
300
+ opacity: 1;
301
+ }
302
+ .shaka-text-container {
303
+ position: absolute;
304
+ left: 0;
305
+ right: 0;
306
+ top: 0;
307
+ bottom: 0;
308
+ pointer-events: none;
309
+ bottom: 0;
310
+ width: 100%;
311
+ min-width: 48px;
312
+ transition: bottom cubic-bezier(.4, 0, .6, 1) .1s;
313
+ transition-delay: 0.5s;
314
+ font-size: 20px;
315
+ line-height: 1.4;
316
+ color: #fff;
317
+ }
318
+ .shaka-text-container span.shaka-text-wrapper {
319
+ display: inline;
320
+ background: 0 0;
321
+ }
322
+ .shaka-controls-container[shown=true] ~ .shaka-text-container {
323
+ transition-delay: 0s;
324
+ }
325
+ .shaka-spinner-container {
326
+ position: absolute;
327
+ left: 0;
328
+ right: 0;
329
+ top: 0;
330
+ bottom: 0;
331
+ width: 100%;
332
+ height: 100%;
333
+ flex-shrink: 1;
334
+ display: flex;
335
+ justify-content: center;
336
+ align-items: center;
337
+ }
338
+ .shaka-video-container:not([shaka-controls=true]) .shaka-spinner-container {
339
+ display: none;
340
+ }
341
+ .shaka-hidden-fast-forward-container,
342
+ .shaka-hidden-rewind-container {
343
+ height: 100%;
344
+ width: 40%;
345
+ flex-shrink: 1;
346
+ z-index: 1;
347
+ }
348
+ .shaka-hidden-fast-forward-container {
349
+ position: absolute;
350
+ left: 0;
351
+ right: 0;
352
+ top: 0;
353
+ bottom: 0;
354
+ left: 60%;
355
+ }
356
+ .shaka-hidden-rewind-container {
357
+ position: absolute;
358
+ left: 0;
359
+ right: 0;
360
+ top: 0;
361
+ bottom: 0;
362
+ }
363
+ .shaka-video-container.no-cursor {
364
+ cursor: none !important;
365
+ }
366
+ .shaka-video-container.no-cursor * {
367
+ cursor: none !important;
368
+ }
369
+ .shaka-play-button {
370
+ box-sizing: border-box;
371
+ padding: calc(15% / 2);
372
+ width: 0;
373
+ height: 0;
374
+ margin: 0;
375
+ border-radius: 50%;
376
+ box-shadow: rgba(0, 0, 0, .1) 0 0 20px 0;
377
+ border: none;
378
+ background-size: 50%;
379
+ background-repeat: no-repeat;
380
+ background-position: center center;
381
+ background-color: rgba(255, 255, 255, .9);
382
+ opacity: 0;
383
+ transition: opacity cubic-bezier(.4, 0, .6, 1) .6s;
384
+ }
385
+ .shaka-controls-container[casting=true] .shaka-play-button,
386
+ .shaka-controls-container[shown=true] .shaka-play-button {
387
+ opacity: 1;
388
+ }
389
+ .shaka-play-button[icon=play] {
390
+ background-image: url(data:image/svg+xml,%3Csvg%20fill%3D%22%23000000%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20width%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpath%20d%3D%22M8%205v14l11-7z%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M0%200h24v24H0z%22%20fill%3D%22none%22%2F%3E%0A%3C%2Fsvg%3E);
391
+ }
392
+ .shaka-play-button[icon=pause] {
393
+ background-image: url(data:image/svg+xml,%3Csvg%20fill%3D%22%23000000%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20width%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpath%20d%3D%22M6%2019h4V5H6v14zm8-14v14h4V5h-4z%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M0%200h24v24H0z%22%20fill%3D%22none%22%2F%3E%0A%3C%2Fsvg%3E);
394
+ }
395
+ .shaka-play-button[icon=replay] {
396
+ background-image: url(data:image/svg+xml,%3Csvg%20fill%3D%22%231f1f1f%22%20height%3D%2224px%22%20viewBox%3D%220%20-960%20960%20960%22%20width%3D%2224px%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%3Cpath%20d%3D%22M480-80q-75%200-140.5-28.5t-114-77q-48.5-48.5-77-114T120-440h80q0%20117%2081.5%20198.5T480-160q117%200%20198.5-81.5T760-440q0-117-81.5-198.5T480-720h-6l62%2062-56%2058-160-160%20160-160%2056%2058-62%2062h6q75%200%20140.5%2028.5t114%2077q48.5%2048.5%2077%20114T840-440q0%2075-28.5%20140.5t-77%20114q-48.5%2048.5-114%2077T480-80Z%22%2F%3E%0A%3C%2Fsvg%3E);
397
+ }
398
+ @media (prefers-reduced-transparency: no-preference) {
399
+ .shaka-controls-container[shown=true] .shaka-play-button {
400
+ opacity: .75;
401
+ }
402
+ }
403
+ .shaka-current-time {
404
+ font-size: 14px;
405
+ color: #fff;
406
+ cursor: pointer;
407
+ width: auto;
408
+ padding: 0 5px;
409
+ }
410
+ .shaka-current-time[disabled] {
411
+ background-color: transparent;
412
+ color: #fff;
413
+ cursor: default;
414
+ }
415
+ .shaka-controls-container button:focus,
416
+ .shaka-controls-container input:focus {
417
+ outline: 1px solid Highlight;
418
+ }
419
+ .shaka-controls-container button:-moz-focus-inner,
420
+ .shaka-controls-container input:-moz-focus-outer {
421
+ outline: 0;
422
+ border: 0;
423
+ }
424
+ .shaka-controls-container:not(.shaka-keyboard-navigation) button:focus,
425
+ .shaka-controls-container:not(.shaka-keyboard-navigation) input:focus {
426
+ outline: 0;
427
+ }
428
+ .shaka-fast-forward-container,
429
+ .shaka-rewind-container {
430
+ height: 100%;
431
+ width: 100%;
432
+ flex-shrink: 1;
433
+ position: absolute;
434
+ left: 0;
435
+ right: 0;
436
+ top: 0;
437
+ bottom: 0;
438
+ display: flex;
439
+ flex-direction: row;
440
+ justify-content: center;
441
+ align-items: center;
442
+ margin: 0;
443
+ border: none;
444
+ color: #fff;
445
+ background-color: rgba(0, 0, 0, .5);
446
+ cursor: default;
447
+ font-size: 20px;
448
+ opacity: 0;
449
+ user-select: none;
450
+ -webkit-user-select: none;
451
+ -moz-user-select: none;
452
+ -ms-user-select: none;
453
+ }
454
+ .shaka-fast-forward-container {
455
+ border-radius: 40% 0 0 40%;
456
+ }
457
+ .shaka-rewind-container {
458
+ border-radius: 0 40% 40% 0;
459
+ }
460
+ .shaka-forward-rewind-container-icon {
461
+ font-size: 32px;
462
+ }
463
+ .shaka-range-container {
464
+ position: relative;
465
+ top: 0;
466
+ left: 0;
467
+ margin: calc((12px - 4px)/ 2) 6px;
468
+ height: 4px;
469
+ border-radius: 4px;
470
+ background: #fff;
471
+ box-sizing: content-box;
472
+ }
473
+ .shaka-volume-bar-container {
474
+ width: 100px;
475
+ padding: 0;
476
+ transition-property: opacity, width;
477
+ transition-duration: 250ms;
478
+ transition-timing-function: cubic-bezier(0.4, 0, 0.6, 1);
479
+ }
480
+ .shaka-volume-bar-container:hover {
481
+ width: 100px !important;
482
+ opacity: 1 !important;
483
+ }
484
+ @media (max-width: 474px) {
485
+ .shaka-volume-bar-container {
486
+ width: 50px;
487
+ }
488
+ .shaka-volume-bar-container:hover {
489
+ width: 50px !important;
490
+ }
491
+ .shaka-mute-button:hover + .shaka-volume-bar-container-allow-hiding {
492
+ width: 50px;
493
+ opacity: 1;
494
+ }
495
+ }
496
+ .shaka-mute-button + .shaka-volume-bar-container-allow-hiding:not(:focus-within) {
497
+ width: 0;
498
+ opacity: 0;
499
+ }
500
+ @media (min-width: 475px) {
501
+ .shaka-mute-button:hover + .shaka-volume-bar-container-allow-hiding {
502
+ width: 100px;
503
+ opacity: 1;
504
+ }
505
+ }
506
+ .shaka-range-element {
507
+ -webkit-appearance: none;
508
+ background: 0 0;
509
+ cursor: pointer;
510
+ position: absolute;
511
+ top: 0;
512
+ left: 0;
513
+ right: 0;
514
+ bottom: 0;
515
+ margin: 0;
516
+ padding: 0;
517
+ width: 100%;
518
+ height: 100%;
519
+ height: 12px;
520
+ top: calc((4px - 12px)/ 2);
521
+ z-index: 1;
522
+ }
523
+ .shaka-range-element::-webkit-slider-runnable-track {
524
+ width: 100%;
525
+ cursor: pointer;
526
+ height: 12px;
527
+ background: 0 0;
528
+ color: transparent;
529
+ border: none;
530
+ }
531
+ .shaka-range-element::-webkit-slider-thumb {
532
+ -webkit-appearance: none;
533
+ border: none;
534
+ border-radius: 12px;
535
+ height: 12px;
536
+ width: 12px;
537
+ background: #fff;
538
+ }
539
+ .shaka-range-element::-moz-range-track {
540
+ width: 100%;
541
+ cursor: pointer;
542
+ height: 12px;
543
+ background: 0 0;
544
+ color: transparent;
545
+ border: none;
546
+ }
547
+ .shaka-range-element::-moz-range-thumb {
548
+ -webkit-appearance: none;
549
+ border: none;
550
+ border-radius: 12px;
551
+ height: 12px;
552
+ width: 12px;
553
+ background: #fff;
554
+ }
555
+ .shaka-seek-bar-container {
556
+ opacity: 0;
557
+ transition: opacity cubic-bezier(.4, 0, .6, 1) .6s;
558
+ top: 5px;
559
+ height: 5px;
560
+ margin-bottom: 0;
561
+ background-clip: padding-box !important;
562
+ border-top: 4px solid transparent;
563
+ border-bottom: 4px solid transparent;
564
+ }
565
+ .shaka-controls-container[casting=true] .shaka-seek-bar-container,
566
+ .shaka-controls-container[shown=true] .shaka-seek-bar-container {
567
+ opacity: 1;
568
+ }
569
+ .shaka-seek-bar-container .shaka-seek-bar {
570
+ transition: opacity cubic-bezier(.4, 0, .6, 1) 250ms;
571
+ opacity: 0;
572
+ }
573
+ .shaka-seek-bar-container:hover .shaka-seek-bar {
574
+ opacity: 1;
575
+ }
576
+ .shaka-ad-markers {
577
+ position: absolute;
578
+ top: 0;
579
+ left: 0;
580
+ right: 0;
581
+ bottom: 0;
582
+ margin: 0;
583
+ padding: 0;
584
+ width: 100%;
585
+ height: 100%;
586
+ }
587
+ .shaka-spacer {
588
+ cursor: default;
589
+ flex-shrink: 1;
590
+ flex-grow: 1;
591
+ margin: 0;
592
+ }
593
+ .shaka-overflow-menu,
594
+ .shaka-settings-menu {
595
+ overflow-x: hidden;
596
+ overflow-y: auto;
597
+ scrollbar-color: white rgba(0, 0, 0, 0.5);
598
+ scrollbar-width: thin;
599
+ white-space: nowrap;
600
+ background: rgba(28, 28, 28, .9);
601
+ border-radius: 15px;
602
+ max-height: 250px;
603
+ min-width: 190px;
604
+ padding: 5px 0;
605
+ opacity: 0;
606
+ transition: opacity cubic-bezier(.4, 0, .6, 1) .6s;
607
+ display: flex;
608
+ flex-direction: column;
609
+ align-items: stretch;
610
+ position: absolute;
611
+ z-index: 2;
612
+ right: 15px;
613
+ bottom: 62px;
614
+ }
615
+ .shaka-controls-container[casting=true] .shaka-overflow-menu,
616
+ .shaka-controls-container[casting=true] .shaka-settings-menu,
617
+ .shaka-controls-container[shown=true] .shaka-overflow-menu,
618
+ .shaka-controls-container[shown=true] .shaka-settings-menu {
619
+ opacity: 1;
620
+ }
621
+ .shaka-overflow-menu button,
622
+ .shaka-settings-menu button {
623
+ font-size: 14px;
624
+ background: 0 0;
625
+ color: #fff;
626
+ border: none;
627
+ min-height: 30px;
628
+ padding: 10px;
629
+ display: flex;
630
+ align-items: center;
631
+ cursor: pointer;
632
+ }
633
+ .shaka-overflow-menu button:hover,
634
+ .shaka-settings-menu button:hover {
635
+ background: rgba(255, 255, 255, .1);
636
+ }
637
+ .shaka-overflow-menu button label,
638
+ .shaka-settings-menu button label {
639
+ cursor: pointer;
640
+ }
641
+ .shaka-keyboard-navigation .shaka-overflow-menu button:focus,
642
+ .shaka-keyboard-navigation .shaka-settings-menu button:focus {
643
+ background: rgba(255, 255, 255, .1);
644
+ }
645
+ .shaka-overflow-menu .material-svg-icon,
646
+ .shaka-settings-menu .material-svg-icon {
647
+ padding-left: 0;
648
+ padding-right: 10px;
649
+ }
650
+ .shaka-overflow-menu .material-svg-icon.shaka-chosen-item,
651
+ .shaka-settings-menu .material-svg-icon.shaka-chosen-item {
652
+ order: -1;
653
+ line-height: 17px;
654
+ font-size: 18px;
655
+ }
656
+ .shaka-overflow-menu.shaka-low-position,
657
+ .shaka-settings-menu.shaka-low-position {
658
+ bottom: 48px;
659
+ }
660
+ .shaka-overflow-menu span {
661
+ text-align: left;
662
+ }
663
+ .shaka-overflow-button-label {
664
+ position: relative;
665
+ display: flex;
666
+ flex-direction: column;
667
+ }
668
+ .shaka-overflow-button-label-inline {
669
+ box-sizing: border-box;
670
+ flex-direction: row;
671
+ justify-content: space-between;
672
+ width: calc(100% - 34px);
673
+ padding-right: 28px;
674
+ background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAwIDI0IDI0IiB3aWR0aD0iMjRweCIgZmlsbD0iI2VlZWVlZSI+PHBhdGggZD0iTTAgMGgyNHYyNEgwVjB6IiBmaWxsPSJub25lIi8+PHBhdGggZD0iTTguNTkgMTYuNTlMMTMuMTcgMTIgOC41OSA3LjQxIDEwIDZsNiA2LTYgNi0xLjQxLTEuNDF6Ii8+PC9zdmc+);
675
+ background-repeat: no-repeat;
676
+ background-position: right 5px center;
677
+ background-size: 24px 24px;
678
+ }
679
+ .shaka-simple-overflow-button-label-inline {
680
+ box-sizing: border-box;
681
+ flex-direction: row;
682
+ justify-content: space-between;
683
+ width: calc(100% - 50px);
684
+ }
685
+ .shaka-current-selection-span {
686
+ font-size: 12px;
687
+ padding-left: 10px;
688
+ }
689
+ .shaka-current-auto-quality {
690
+ margin-left: 5px;
691
+ font-size: 11px;
692
+ color: #ccc;
693
+ }
694
+ .shaka-current-quality-mark,
695
+ .shaka-quality-mark {
696
+ color: red;
697
+ margin-left: 2px !important;
698
+ font-size: 10px;
699
+ height: 17px;
700
+ }
701
+ .shaka-quality-mark {
702
+ line-height: 6px;
703
+ }
704
+ .shaka-overflow-playback-rate-mark,
705
+ .shaka-overflow-quality-mark {
706
+ background: red;
707
+ color: #fff;
708
+ border-radius: 2px;
709
+ font-family:
710
+ Roboto,
711
+ sans-serif,
712
+ TengwarTelcontar;
713
+ font-size: 10px;
714
+ font-weight: 700;
715
+ line-height: 10px;
716
+ text-shadow: none;
717
+ padding: 1px;
718
+ position: absolute;
719
+ right: 4px;
720
+ top: 10px;
721
+ }
722
+ .shaka-settings-menu span {
723
+ margin-left: 28px;
724
+ }
725
+ .shaka-settings-menu span.shaka-chosen-item {
726
+ margin-left: 0;
727
+ }
728
+ .shaka-settings-menu .shaka-chapter {
729
+ margin-left: 10px;
730
+ }
731
+ .shaka-back-to-overflow-button {
732
+ border-bottom: 1px solid rgba(255, 255, 255, .2) !important;
733
+ }
734
+ .shaka-back-to-overflow-button span {
735
+ margin-left: 0;
736
+ }
737
+ .shaka-back-to-overflow-button .material-svg-icon {
738
+ padding-right: 10px;
739
+ font-size: 18px !important;
740
+ }
741
+ .shaka-back-to-overflow-button:hover {
742
+ background: 0 0 !important;
743
+ }
744
+ .shaka-controls-container[ad-active=true] {
745
+ pointer-events: none;
746
+ }
747
+ .shaka-controls-container[ad-active=true] .shaka-bottom-controls {
748
+ pointer-events: auto;
749
+ }
750
+ .shaka-client-side-ad-container,
751
+ .shaka-server-side-ad-container {
752
+ position: absolute;
753
+ left: 0;
754
+ right: 0;
755
+ top: 0;
756
+ bottom: 0;
757
+ }
758
+ .shaka-video-container[shaka-controls=true] .shaka-client-side-ad-container iframe,
759
+ .shaka-video-container[shaka-controls=true] .shaka-server-side-ad-container iframe {
760
+ height: 90%;
761
+ }
762
+ .shaka-ad-controls {
763
+ display: flex;
764
+ flex-direction: row;
765
+ z-index: 1;
766
+ padding-bottom: 1%;
767
+ }
768
+ .shaka-video-container:not([shaka-controls=true]) .shaka-ad-controls {
769
+ display: none;
770
+ }
771
+ .shaka-ad-controls button,
772
+ .shaka-ad-controls div {
773
+ color: #fff;
774
+ font-size: initial;
775
+ }
776
+ .shaka-ad-info {
777
+ font-size: 14px;
778
+ color: #fff;
779
+ width: auto;
780
+ padding: 0 5px;
781
+ }
782
+ .shaka-ad-info[disabled] {
783
+ background-color: transparent;
784
+ color: #fff;
785
+ cursor: default;
786
+ padding: 0;
787
+ }
788
+ .shaka-skip-ad-container {
789
+ position: relative;
790
+ right: calc((100% - 98%)/ 2 * -1);
791
+ display: flex;
792
+ flex-direction: row;
793
+ margin: 0;
794
+ margin-left: auto;
795
+ }
796
+ .shaka-skip-ad-button {
797
+ padding: 5px 15px;
798
+ background: rgba(0, 0, 0, .7);
799
+ border: none;
800
+ cursor: pointer;
801
+ }
802
+ .shaka-skip-ad-button:disabled {
803
+ background: rgba(0, 0, 0, .3);
804
+ }
805
+ .shaka-skip-ad-counter {
806
+ padding: 5px;
807
+ background: rgba(0, 0, 0, .7);
808
+ margin: 0;
809
+ }
810
+ .shaka-tooltips-on {
811
+ overflow: visible;
812
+ }
813
+ .shaka-tooltips-on > .shaka-tooltip,
814
+ .shaka-tooltips-on > .shaka-tooltip-status {
815
+ position: relative;
816
+ }
817
+ .shaka-tooltips-on > .shaka-tooltip-status:active:after,
818
+ .shaka-tooltips-on > .shaka-tooltip-status:focus-visible:after,
819
+ .shaka-tooltips-on > .shaka-tooltip-status:hover:after,
820
+ .shaka-tooltips-on > .shaka-tooltip:active:after,
821
+ .shaka-tooltips-on > .shaka-tooltip:focus-visible:after,
822
+ .shaka-tooltips-on > .shaka-tooltip:hover:after {
823
+ content: attr(aria-label);
824
+ font-family:
825
+ Roboto,
826
+ sans-serif,
827
+ TengwarTelcontar;
828
+ line-height: 20px;
829
+ white-space: nowrap;
830
+ font-size: 14px;
831
+ background: rgba(0, 0, 0, .5);
832
+ color: #fff;
833
+ border-radius: 2px;
834
+ padding: 2px 10px;
835
+ position: absolute;
836
+ bottom: 62px;
837
+ left: calc(48px / 2);
838
+ -webkit-transform: translateX(-50%);
839
+ -moz-transform: translateX(-50%);
840
+ -ms-transform: translateX(-50%);
841
+ -o-transform: translateX(-50%);
842
+ transform: translateX(-50%);
843
+ }
844
+ @media (prefers-reduced-transparency) {
845
+ .shaka-tooltips-on > .shaka-tooltip-status:active:after,
846
+ .shaka-tooltips-on > .shaka-tooltip-status:focus-visible:after,
847
+ .shaka-tooltips-on > .shaka-tooltip-status:hover:after,
848
+ .shaka-tooltips-on > .shaka-tooltip:active:after,
849
+ .shaka-tooltips-on > .shaka-tooltip:focus-visible:after,
850
+ .shaka-tooltips-on > .shaka-tooltip:hover:after {
851
+ background-color: rgba(0, 0, 0, .9);
852
+ }
853
+ }
854
+ .shaka-tooltips-on.shaka-tooltips-low-position > .shaka-tooltip:active:after,
855
+ .shaka-tooltips-on.shaka-tooltips-low-position > .shaka-tooltip:focus-visible:after,
856
+ .shaka-tooltips-on.shaka-tooltips-low-position > .shaka-tooltip:hover:after {
857
+ bottom: 48px;
858
+ }
859
+ .shaka-tooltips-on > .shaka-tooltip-status:active:after,
860
+ .shaka-tooltips-on > .shaka-tooltip-status:focus-visible:after,
861
+ .shaka-tooltips-on > .shaka-tooltip-status:hover:after {
862
+ content: attr(aria-label) " (" attr(shaka-status) ")";
863
+ }
864
+ .shaka-tooltips-on button:first-child:active:after,
865
+ .shaka-tooltips-on button:first-child:focus-visible:after,
866
+ .shaka-tooltips-on button:first-child:hover:after {
867
+ left: 0;
868
+ -webkit-transform: translateX(0);
869
+ -moz-transform: translateX(0);
870
+ -ms-transform: translateX(0);
871
+ -o-transform: translateX(0);
872
+ transform: translateX(0);
873
+ }
874
+ .shaka-tooltips-on button:last-child:active:after,
875
+ .shaka-tooltips-on button:last-child:focus-visible:after,
876
+ .shaka-tooltips-on button:last-child:hover:after {
877
+ left: 48px;
878
+ -webkit-transform: translateX(-100%);
879
+ -moz-transform: translateX(-100%);
880
+ -ms-transform: translateX(-100%);
881
+ -o-transform: translateX(-100%);
882
+ transform: translateX(-100%);
883
+ }
884
+ #shaka-player-ui-thumbnail-container {
885
+ background-color: #000;
886
+ border: 1px solid #000;
887
+ box-shadow: 0 8px 8px 0 rgba(0, 0, 0, .5);
888
+ min-width: 150px;
889
+ overflow: hidden;
890
+ position: absolute;
891
+ visibility: hidden;
892
+ width: 15%;
893
+ z-index: 1;
894
+ pointer-events: none;
895
+ }
896
+ #shaka-player-ui-thumbnail-container #shaka-player-ui-thumbnail-image {
897
+ position: absolute;
898
+ }
899
+ #shaka-player-ui-thumbnail-container #shaka-player-ui-thumbnail-time-container {
900
+ bottom: 0;
901
+ left: 0;
902
+ position: absolute;
903
+ right: 0;
904
+ display: flex;
905
+ justify-content: center;
906
+ }
907
+ #shaka-player-ui-thumbnail-container #shaka-player-ui-thumbnail-time-container #shaka-player-ui-thumbnail-time {
908
+ background-color: rgba(0, 0, 0, .5);
909
+ border-radius: 14px;
910
+ color: #fff;
911
+ font-size: 14px;
912
+ padding: 0 5px;
913
+ }
914
+ @media (prefers-reduced-transparency) {
915
+ #shaka-player-ui-thumbnail-container #shaka-player-ui-thumbnail-time-container #shaka-player-ui-thumbnail-time {
916
+ background-color: rgba(0, 0, 0, .9);
917
+ }
918
+ }
919
+ #shaka-player-ui-thumbnail-container.portrait-thumbnail {
920
+ min-width: 75px;
921
+ width: 7.5%;
922
+ }
923
+ #shaka-player-ui-time-container {
924
+ background-color: rgba(0, 0, 0, .5);
925
+ border-radius: 5px;
926
+ color: #fff;
927
+ display: flex;
928
+ font-size: 14px;
929
+ justify-content: center;
930
+ overflow: hidden;
931
+ padding: 0 3px;
932
+ position: absolute;
933
+ visibility: hidden;
934
+ z-index: 1;
935
+ }
936
+ @media (prefers-reduced-transparency) {
937
+ #shaka-player-ui-time-container {
938
+ background-color: rgba(0, 0, 0, .9);
939
+ }
940
+ }
941
+ .material-svg-icon {
942
+ display: inline-block;
943
+ fill: currentcolor;
944
+ width: 1em;
945
+ height: 1em;
946
+ }
947
+ @font-face {
948
+ font-family: Roboto;
949
+ font-style: normal;
950
+ font-weight: 400;
951
+ font-stretch: normal;
952
+ src: url(https://fonts.gstatic.com/s/roboto/v50/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWubEbVmUiA8.ttf) format("truetype");
953
+ }
954
+ /*! Bundled license information:
955
+
956
+ shaka-player/dist/controls.css:
957
+ (*! @license
958
+ * Shaka Player
959
+ * Copyright 2016 Google LLC
960
+ * SPDX-License-Identifier: Apache-2.0
961
+ *)
962
+ (*!
963
+ * @license
964
+ * The tooltip is based on https://github.com/felipefialho/css-components/
965
+ * Local modifications have been performed.
966
+ *
967
+ * Copyright (c) 2017 Felipe Fialho
968
+ *
969
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
970
+ * of this software and associated documentation files (the "Software"), to deal
971
+ * in the Software without restriction, including without limitation the rights
972
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
973
+ * copies of the Software, and to permit persons to whom the Software is
974
+ * furnished to do so, subject to the following conditions:
975
+ *
976
+ * The above copyright notice and this permission notice shall be included in
977
+ * all copies or substantial portions of the Software.
978
+ *
979
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
980
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
981
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
982
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
983
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
984
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
985
+ * SOFTWARE.
986
+ *)
987
+ */
988
+ /*# sourceMappingURL=index.css.map */