-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
script.css
99 lines (91 loc) · 1.86 KB
/
script.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
.video-status, .video-status-keep-showing {
position: absolute;
left: 15px;
top: 15px;
color: rgba(255, 255, 255, 1.0);
background: rgba(0, 0, 0, 0.6);
padding: 10px 7px;
border-radius: 10px;
font-family: 'Open Sans';
z-index: 100000;
font-size: 18px;
text-align: center;
width: 80px;
display: inline-block;
}
.video-debugging-status {
position: absolute;
right: 15px;
top: 15px;
color: rgba(255, 255, 255, 1.0);
background: rgba(128, 0, 0, 0.6);
padding: 10px 7px;
border-radius: 10px;
font-family: 'Open Sans';
z-index: 100000;
font-size: 18px;
text-align: center;
width: 120px;
display: inline-block;
}
.videocommander-fake-video-wrapper {
position: absolute;
pointer-events: none;
width: 100%;
height: 100%;
}
.videocommander-fake-video-wrapper video {
width: 100% !important;
height: 100% !important;
top: 0;
left: 0;
z-index: 100000;
background-color: black;
}
.videocommander-progress-bar-container {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
background: rgba(0, 0, 0, 0.3);
height: 39px;
font-family: 'Open Sans';
z-index: 100000;
display: inline-block;
opacity: 0;
}
.videocommander-progress-bar {
position: absolute;
left: 0;
width: 50%;
height: 3px;
background-color: rgb(251, 28, 50);
display: inline-block;
z-index: 3;
}
.videocommander-progress-buffered-bar {
position: absolute;
left: 0;
width: 75%;
height: 3px;
background-color: rgba(255, 255, 255, 0.5);
display: inline-block;
z-index: 2;
}
.videocommander-progress-time {
position: absolute;
left: 3%;
bottom: 9px;
font-size: 15px;
color: rgba(255, 255, 255, 1.0);
text-shadow: rgb(0, 0, 0) 0px 0px 50px;
}
.videocommander-entire-bar {
position: absolute;
left: 0;
width: 100%;
height: 3px;
background-color: rgba(255, 255, 255, 0.2);
display: inline-block;
z-index: 1;
}