-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
63 lines (54 loc) · 953 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
59
60
61
62
63
body {
font-family: Roboto, sans-serif;
margin: 2em;
color: #3d3d3d;
}
h1 {
color: #007f8b;
text-align: center;
}
h2 {
clear: both;
margin-top: 20px;
text-align: center;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
gap: 20px;
}
.button-group {
display: flex;
flex-wrap: wrap;
gap: 10px;
justify-content: center;
}
#liveView {
display: flex;
flex-direction: column;
align-items: center;
gap: 10px;
position: relative;
}
#output_canvas {
transform: rotateY(180deg);
border: 1px solid #ccc;
background-color: #f9f9f9;
}
video {
display: none; /* Hide the video element */
}
#message {
font-size: 24px;
font-weight: bold;
padding: 15px;
background-color: #f0f0f0;
border-radius: 5px;
text-align: center;
width: 100%;
max-width: 640px;
}
label[for="videoUpload"] {
cursor: pointer;
}