-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
64 lines (55 loc) · 978 Bytes
/
styles.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
* {
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
letter-spacing: 0.05rem;
word-spacing: 0.1rem;
}
html,
body {
background-color: black;
overflow: hidden;
}
video {
position: absolute;
top: 0;
left: 0;
/* opacity: 0; */
}
canvas {
outline: 3px dashed brown;
}
nav {
position: fixed;
right: 0;
top: 0;
padding: 1rem;
display: flex;
gap: 0.5rem;
}
button {
background-color: white;
outline: none;
border: 1px dashed;
padding: 0.21rem 0.6rem;
cursor: pointer;
transition: all 0.6s;
}
button:hover {
background-color: black;
color: white;
border: 1px solid;
}
button:hover:disabled {
background-color: #00000090;
color: #ffffff90;
cursor: not-allowed;
}
button#startCamera {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
button#startCamera.hide {
opacity: 0;
z-index: -9;
}