-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathstyles.css
More file actions
210 lines (194 loc) · 4.24 KB
/
styles.css
File metadata and controls
210 lines (194 loc) · 4.24 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Courier New', Courier, monospace;
}
#container {
position: fixed;
width: 100%;
height: 100%;
background: linear-gradient(180deg,
#00050a 0%,
#000a14 50%,
#001020 100%
);
overflow: hidden;
}
.glow {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
background: radial-gradient(circle at 50% 50%,
rgba(0, 100, 180, 0.02) 0%,
rgba(30, 0, 100, 0.03) 50%,
transparent 75%
);
mix-blend-mode: screen;
opacity: 0.5;
}
#instructions {
position: fixed;
bottom: 10px;
left: 10px;
color: white;
font-size: 13px;
background-color: rgba(0, 0, 0, 0.4); /* Darker background */
padding: 8px 12px; /* Slightly larger padding */
border-radius: 5px; /* Rounded corners */
z-index: 100;
pointer-events: none;
line-height: 1.4;
max-width: 300px; /* Limit width */
font-family: 'Courier New', Courier, monospace;
}
.input_video {
/* Make video visible and position top-left */
display: block; /* Changed from none */
position: fixed;
top: 10px;
left: 20%;
transform: translateX(50%);
width: 320px; /* Smaller size */
height: 180px; /* Maintain 16:9 ratio */
border: 1px solid white;
z-index: 101; /* Ensure it's above the main canvas slightly */
transform: scaleX(-1); /* Mirror flip */
}
.output_canvas {
/* Make canvas visible and position over video */
display: block; /* Changed from none */
position: fixed;
top: 10px;
left: 20%;
transform: translateX(50%);
width: 320px; /* Smaller size */
height: 180px; /* Maintain 16:9 ratio */
z-index: 102; /* Above video */
pointer-events: none; /* Allow clicks to go through */
transform: scaleX(-1); /* Mirror flip to match video */
}
/* dat.gui styling */
.dg.ac {
z-index: 1000 !important;
position: fixed !important;
top: 0 !important;
right: 0 !important;
margin: 0 !important;
margin: 0 auto;
justify-content: center;
text-align: center;
}
.dg.main .close-button {
background-color: #000 !important;
margin: 0 auto;
justify-content: center;
text-align: center;
}
.dg.main {
background-color: rgba(0, 0, 0, 0.8) !important;
margin-right: 0 !important;
max-width: 200px;
text-align: center;
margin: 0 auto;
justify-content: center;
}
/* Instagram credit link styling */
#instagram-link {
position: fixed;
bottom: 10px;
right: 10px;
color: white;
font-family: sans-serif;
font-size: 14px;
background-color: rgba(0, 0, 0, 0.4);
padding: 8px 12px;
border-radius: 5px;
z-index: 100;
/* text-decoration: none; */
transition: all 0.3s ease;
font-family: 'Courier New', Courier, monospace;
}
a {
color: white;
}
#instagram-link:hover {
color: #fff;
background-color: rgba(0, 0, 0, 0.6);
/* transform: translateY(-2px); */
box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}
/* Coffeee link styling */
#coffee-link {
position: fixed;
bottom: 10px;
left: 50%;
transform: translateX(-50%);
color: white;
font-family: sans-serif;
font-size: 14px;
background-color: rgba(0, 0, 0, 0.4);
padding: 8px 12px;
border-radius: 5px;
z-index: 100;
/* text-decoration: none; */
transition: all 0.3s ease;
font-family: 'Courier New', Courier, monospace;
}
a {
color: white;
}
#coffee-link:hover {
color: #fff;
background-color: rgba(0, 0, 0, 0.6);
/* transform: translateY(-2px); */
box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}
#patternList {
position: fixed;
top: 20px; /* Positioned below the patternName label */
left: 20px;
z-index: 104;
background-color: rgba(0, 0, 0, 0.4);
padding: 10px 14px;
border-radius: 5px;
color: white;
font-family: 'Courier New', Courier, monospace;
font-size: 16px;
line-height: 1.6;
}
#patternList ul {
list-style: none;
padding: 0;
margin: 0;
}
#patternList li {
margin-bottom: 4px;
transition: all 3s ease;
}
#speech-output {
position: fixed;
top: 30px;
left: 65%;
transform: translateX(-50%);
background: #c0c0c0;
color: #0000FF;
padding: 12px 24px;
/* font-family: 'Tahoma', 'Geneva', sans-serif; */
font-family: 'Courier New', Courier, monospace;
font-weight: bold;
font-size: 1.6em;
z-index: 100;
pointer-events: none;
max-width: 220px;
text-align: center;
box-shadow:
inset -2px -2px 0 #fff,
inset 2px 2px 0 #808080,
inset -4px -4px 0 #dfdfdf,
inset 4px 4px 0 #404040;
border: 2px solid #000;
}