-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtipsyy-control.css
150 lines (125 loc) · 2.51 KB
/
tipsyy-control.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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
sticky-bottom {
padding: 10px 20px;
position: absolute;
width: 100%;
bottom: 0;
left: 0;
right: 0;
}
video-wrapper:not(:fullscreen) {
display: block;
height: inherit;
max-height: inherit;
background: #000;
position: relative;
border-radius: inherit;
box-shadow: 0 3px 8px rgba(0,0,0,.2);
}
video-wrapper:fullscreen video {
height: 100%;
}
video-wrapper video {
display: block;
max-height: inherit;
height: inherit;
border-radius: inherit;
}
video-wrapper video,
video-wrapper video-controls {
width: 100%;
}
video-wrapper video-controls {
display: block;
position: absolute;
bottom: 0;
color: #fff;
height: 100%;
box-shadow: inset 0 -80px 80px 10px rgba(20,20,20,0.6);
}
video-controls > .left {
height: 30px;
}
video-controls > * {
margin-bottom: 0;
user-select: none;
}
video-controls button.material-icons,
video-controls a.material-icons {
border: none;
color: #fff;
background: transparent;
padding: 10px;
display: inline-block;
}
video-controls button:hover,
video-controls a:hover {
border-radius: 50px;
background: rgba(0,0,0,.8);
cursor: pointer;
}
video-controls button:active,
video-controls a:active {
border-radius: 50px;
background: rgba(0,0,0,.6);
cursor: pointer;
}
video-controls .row {
margin-bottom: 5px;
}
video-controls .row > * > *:not(.dropdown-content) {
display: inline-block;
}
video-wrapper volume-wrapper:hover input,
video-wrapper volume-wrapper:focus-within input {
display: inline;
width: 70px;
padding: 3px 0;
}
video-controls volume-wrapper .range-field {
vertical-align: top;
margin-top: 10px;
}
video-controls time-wrapper {
display: block;
vertical-align: top;
margin: 13px 3px 0;
}
volume-wrapper > * {
display: inline-block;
}
video-controls input[type=range] {
margin: 8px 3px;
border: none;
cursor: pointer;
height: 5px;
}
video-controls input[type=range]::-moz-range-thumb {
background-color: #fff;
}
video-controls input[type=range]::-ms-thumb {
background-color: #fff;
}
video-controls input[type=range]::-webkit-slider-thumb {
background-color: #fff;
}
video-controls .dropdown-content > li {
font-size: 14px;
color: #000;
display: block;
min-height: unset;
line-height: unset;
padding: 8px 10px;
}
video-controls .thumb {
display: none !important;
}
@media only screen and (max-width: 600px) {
video-controls button.material-icons,
video-controls a.material-icons{
padding: 5px;
}
video-controls time-wrapper {
font-size: 12px;
margin-top: 9px;
}
}