-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
54 lines (49 loc) · 1.17 KB
/
styles.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
.video-speed-overlay {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background: rgba(0, 0, 0, 0.8);
color: white;
padding: 10px 20px;
border-radius: 5px;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
font-size: 16px;
z-index: 999999;
pointer-events: none;
opacity: 0;
transition: opacity 0.3s ease;
}
.video-speed-controls {
position: fixed;
bottom: 20px;
right: 20px;
display: flex;
gap: 5px;
background: rgba(0, 0, 0, 0.8);
padding: 5px;
border-radius: 5px;
z-index: 999999;
}
.video-speed-controls button {
background: transparent;
border: 1px solid rgba(255, 255, 255, 0.3);
color: white;
padding: 5px 10px;
border-radius: 3px;
cursor: pointer;
display: flex;
align-items: center;
gap: 5px;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}
.video-speed-controls button:hover {
background: rgba(255, 255, 255, 0.1);
}
.video-speed-controls .icon {
font-weight: bold;
}
.video-speed-controls .shortcut {
font-size: 0.8em;
opacity: 0.7;
}