-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
58 lines (50 loc) · 789 Bytes
/
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
/* style.css */
body {
font-family: Arial, sans-serif;
text-align: center;
margin: 0;
padding: 0;
background-color: #f0f0f0;
}
h1 {
margin-top: 20px;
}
.video-container {
position: relative;
width: 640px;
height: 480px;
margin: 20px auto;
border: 1px solid #ccc;
background: black;
}
#video-input {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
}
#output-canvas {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
}
#controls {
width: 640px;
margin: 20px auto;
background-color: #ffffff;
padding: 15px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
#controls div {
margin: 10px 0;
}
select {
padding: 5px;
font-size: 14px;
}