-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
41 lines (41 loc) · 899 Bytes
/
style.css
File metadata and controls
41 lines (41 loc) · 899 Bytes
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
body {
background: #121212;
color: white;
font-family: sans-serif;
display: flex;
flex-direction: column;
align-items: center;
padding: 20px;
}
video {
width: 80%;
max-width: 720px;
margin: 20px 0;
border-radius: 12px;
box-shadow: 0 0 10px rgba(0,0,0,0.5);
}
.controls, .url-loader {
display: flex;
flex-wrap: wrap;
gap: 10px;
justify-content: center;
margin: 10px 0;
}
input[type="text"] {
padding: 10px;
width: 300px;
border-radius: 6px;
border: none;
outline: none;
}
button, input[type="range"] {
padding: 10px;
background: #1f1f1f;
border: none;
border-radius: 5px;
color: white;
cursor: pointer;
}
button:hover {
background: #2c2c2c;
}