-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
64 lines (54 loc) · 1.64 KB
/
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
64
body {
background-color: #000000;
overflow: hidden;
}
.page {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
color: #FFFFFF;
font-family: 'Arcadia-Regular';
}
.page h3 {
font-size: xx-large;
margin-top: 2em;
}
.container {
display: flex;
justify-content: space-evenly;
align-items: center;
height: 100vh;
}
#canvas {
--scaleFactor: 1;
transform: scale(var(--scaleFactor));
}
@font-face {
font-family: 'Arcadia-Regular';
src: url('./Arcadia-Regular.ttf');
}
@keyframes shake {
0% { transform: translate(1px, 1px) rotate(0deg) scale(var(--scaleFactor)); }
10% { transform: translate(-1px, -2px) rotate(-1deg) scale(var(--scaleFactor)); }
20% { transform: translate(-3px, 0px) rotate(1deg) scale(var(--scaleFactor)); }
30% { transform: translate(3px, 2px) rotate(0deg) scale(var(--scaleFactor)); }
40% { transform: translate(1px, -1px) rotate(1deg) scale(var(--scaleFactor)); }
50% { transform: translate(-1px, 2px) rotate(-1deg) scale(var(--scaleFactor)); }
60% { transform: translate(-3px, 1px) rotate(0deg) scale(var(--scaleFactor)); }
70% { transform: translate(3px, 1px) rotate(-1deg) scale(var(--scaleFactor)); }
80% { transform: translate(-1px, -1px) rotate(1deg) scale(var(--scaleFactor)); }
90% { transform: translate(1px, 2px) rotate(0deg) scale(var(--scaleFactor)); }
100% { transform: translate(1px, -2px) rotate(-1deg) scale(var(--scaleFactor)); }
}
#liveView {
display: flex;
align-items: center;
justify-content: center;
}
#webcam {
position: absolute;
}
#webcamCanvas {
position: relative;
}