-
-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathstyles.css
More file actions
105 lines (96 loc) · 1.93 KB
/
styles.css
File metadata and controls
105 lines (96 loc) · 1.93 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;
overflow: hidden;
background: #000;
}
#webcam, #canvas, #three-canvas {
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
object-fit: cover;
pointer-events: none;
transform: scaleX(-1);
}
#recycle-bin {
position: absolute;
bottom: 60px;
right: 60px;
width: 160px;
height: 160px;
z-index: 20;
pointer-events: none;
}
#recycle-bin.active {
filter: drop-shadow(0 0 10px #ff0000);
transform: scale(1.1);
transition: transform 0.2s, filter 0.2s;
}
#instructions {
position: absolute;
top: 5px;
left: 5px;
text-align: left;
/* color: white; */
/* background: rgba(0, 0, 0, 0.5); */
/* padding: 10px 15px; */
/* border-radius: 10px; */
/* font-family: sans-serif; */
/* font-size: 14px; */
/* z-index: 30; */
}
#links-para{
position: absolute;
bottom: 5px;
left: 5px;
font-family: Helvetica, sans-serif;
font-size: 16px;
background-color: rgba(255, 255, 255, 0.5);
padding: 10px;
}
a {
color: #0000FF !important;
}
#coffee-link {
position: absolute;
top: 5px;
right: 5px;
font-family: Helvetica, sans-serif;
font-size: 16px;
background-color: rgba(255, 255, 255, 0.5);
padding: 10px;
}
.text-box {
padding: 8px 15px;
background-color: rgba(255, 255, 255, 0.9);
color: black;
border-radius: 4px;
font-family: "Arial", "Helvetica Neue", Helvetica, sans-serif;
border: 2px solid black;
box-shadow: 3px 3px 0px black;
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;
}
#social-links {
position: absolute;
bottom: 10px;
left: 10px;
}
#logo-container {
position: absolute;
top: 10px;
right: 10px;
}
#video-link {
position: absolute;
top: 10px;
left: 10px;
}
#logo {
font-size: 2em;
}