-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathstyles.css
More file actions
105 lines (97 loc) · 1.88 KB
/
Copy pathstyles.css
File metadata and controls
105 lines (97 loc) · 1.88 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
body, html {
margin: 0;
padding: 0;
width: 100vw;
height: 100vh;
overflow: hidden;
background: black;
}
#webcam, #three-canvas, #canvas {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
#webcam {
transform: scaleX(-1);
object-fit: cover;
z-index: 0;
}
#canvas {
transform: scaleX(-1);
z-index: 11;
}
#three-canvas {
z-index: 2;
pointer-events: none;
}
#color-control {
position: absolute;
top: 30px;
right: 30px;
z-index: 10;
}
.text-box {
padding: 8px 15px;
background-color: rgba(255, 255, 255, 0.6);
color: black;
border-radius: 4px;
font-family: "Helvetica Neue", Helvetica, sans-serif;
border: 2px solid rgb(53, 47, 108);
box-shadow: 3px 3px 0px rgb(23, 17, 77);
font-size: clamp(13px, 2vw, 15px);
text-align: center;
z-index: 200;
opacity: 1;
transition: opacity 0.3s ease-in-out, bottom 0.3s ease-in-out, box-shadow 0.2s ease;
}
#info-text {
position: absolute;
top: 10px;
left: 50%;
transform: translateX(-50%);
padding: 8px 15px;
background-color: rgba(255, 255, 255, 0.6);
color: black;
border-radius: 4px;
font-family: "Helvetica Neue", Helvetica, sans-serif;
border: 2px solid rgb(53, 47, 108);
box-shadow: 3px 3px 0px rgb(23, 17, 77);
font-size: clamp(20px, 4vw, 30px);
text-align: center;
z-index: 200;
}
#instruction-text {
position: absolute;
top: 10px;
left: 50%;
transform: translateX(-50%);
pointer-events: none;
text-align: left;
max-width: 300px;
}
#social-links {
position: absolute;
bottom: 10px;
left: 10px;
text-align: left;
}
#coffee-link {
position: absolute;
bottom: 10px;
right: 10px;
}
#video-link {
position: absolute;
top: 10px;
left: 10px;
}
#logo-container {
position: absolute;
top: 10px;
left: 10px;
}
#logo {
font-size: 2em;
}