-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
49 lines (45 loc) · 1.03 KB
/
Copy pathstyle.css
File metadata and controls
49 lines (45 loc) · 1.03 KB
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
body {
margin: 0;
overflow: hidden;
background: #000;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
#ui {
position: absolute;
top: 20px;
left: 20px;
color: white;
text-shadow: 0 0 10px rgba(0,0,0,0.8);
pointer-events: none;
z-index: 10;
}
#loading {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: #00ffcc;
font-size: 20px;
letter-spacing: 2px;
}
canvas {
display: block;
}
.label {
color: #00ffcc;
font-weight: bold;
}
#webcam {
position: fixed;
bottom: 20px;
right: 20px;
width: 240px; /*controls the size*/
height: auto;
border-radius: 12px;
border: 2px solid #00ffcc;
transform: scaleX(-1); /* Mirrors the feed */
z-index: 100; /* Higher number to stay on top */
box-shadow: 0 0 20px rgba(0, 255, 204, 0.3);
background: #222; /* Shows a dark box if camera is slow to load */
/*display:none*/
}