-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
executable file
·85 lines (75 loc) · 1.4 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
body {
color: rgb(88, 88, 88);
/* background: rgba(209, 240, 255); */
width: 100%;
}
#app {
padding: 5%;
display: flex;
flex-direction: column;
align-content: center;
justify-items: center;
width: 100%;
margin: auto 0;
align-content: left;
/* box-sizing: border-box; */
}
#video-panel {
display: flex;
flex-direction: column;
align-content: center;
justify-items: center;
padding: 2%;
}
#videoPlayer {
width: 100%;
}
#controls {
display: flex;
flex-direction: column;
align-content: flex-start;
padding: 2%;
}
#play-button {
/* border: 4px dotted white; */
border-radius: 5px;
margin: 10px;
padding: 10px;
width: 30px;
}
#canvasGroup {
/* border: 8px solid #444444; */
/* box-sizing: border-box;
padding: 10px;
width: 100%;
margin: 10px;
background: rgb(219, 217, 217); */
}
input[type="range"] {
/* min-width: 400px; */
/* width: 500px; */
/* height: 100px;
cursor: pointer;
font-size: .7em;
margin: 20px 3px 0 3px;
position: relative;
top: 100%;
text-align: justify; */
}
input[type="range"] {
/* -webkit-appearance: none; */
background: transparent;
}
input[type="range"]::-webkit-slider-thumb {
-webkit-appearance: none;
background: #fff;
height: 18px;
width: 18px;
margin-top: -8px;
border-radius: 99px;
}
input[type="range"]::-webkit-slider-runnable-track {
width: 300px;
height: 4px;
background: #ddd;
}