-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathstyle.css
66 lines (60 loc) · 1.31 KB
/
style.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
.sophis-video-control {
position: absolute;
z-index: 9999999;
}
.sophis-video-control::shadow .sophis-bg {
transition: opacity 0.25s;
opacity: 0.3;
-webkit-user-select: none;
font: 12px/1em "Helvetica Neue Light", Helvetica, Arial, sans-serif;
vertical-align: middle;
background: black;
color: white;
border-radius: 5px;
border: 1px solid #ccc;
padding: 5px;
margin: 10px;
position: relative;
}
.sophis-video-control:hover::shadow .sophis-bg {
opacity: 1;
}
.sophis-video-control::shadow .sophis-btn {
display: inline-block;
height: 20px;
width: 20px;
color: white;
background: black;
border: 1px solid white;
border-radius: 1000px;
outline: none;
-webkit-transition: all 0.2s;
line-height: 20px;
padding: 0;
vertical-align: center;
cursor: pointer;
}
.sophis-video-control::shadow .sophis-btn:active {
border: 1px solid lightblue;
color: lightblue;
}
.sophis-video-control::shadow .speed-indicator {
color: white;
padding: 0 10px;
cursor: default;
}
.sophis-video-control::shadow .sophis-btn.sophis-close-button {
position: absolute;
border-radius: none;
background: none;
bottom: -20px;
left: calc(50% - 15px);
width: 30px;
text-align: center;
margin: auto;
display: block;
color: #ccc;
font-size: 10px;
font-weight: light;
border: none;
}