create-geocities-app 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/README.md +309 -0
- data/bin/create-geocities-app +133 -0
- data/lib/create_geocities_app/generator.rb +87 -0
- data/lib/create_geocities_app/themes.rb +53 -0
- data/lib/create_geocities_app/version.rb +3 -0
- data/lib/create_geocities_app.rb +3 -0
- data/templates/about.html +157 -0
- data/templates/css/style.css +729 -0
- data/templates/gallery.html +211 -0
- data/templates/guestbook.html +173 -0
- data/templates/index.html +193 -0
- data/templates/js/main.js +382 -0
- data/templates/links.html +198 -0
- metadata +86 -0
|
@@ -0,0 +1,729 @@
|
|
|
1
|
+
/* ================================================
|
|
2
|
+
create-geocities-app — {{THEME_NAME}} Theme
|
|
3
|
+
Best viewed in Netscape Navigator 4.0 at 800x600
|
|
4
|
+
================================================ */
|
|
5
|
+
|
|
6
|
+
/* ── Reset & Base ── */
|
|
7
|
+
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
|
|
8
|
+
|
|
9
|
+
:root {
|
|
10
|
+
--bg: {{BG}};
|
|
11
|
+
--text: {{TEXT_COLOR}};
|
|
12
|
+
--heading: {{HEADING_COLOR}};
|
|
13
|
+
--link: {{LINK_COLOR}};
|
|
14
|
+
--link-hover: {{LINK_HOVER}};
|
|
15
|
+
--accent: {{ACCENT_COLOR}};
|
|
16
|
+
--border-light: {{BORDER_LIGHT}};
|
|
17
|
+
--border-dark: {{BORDER_DARK}};
|
|
18
|
+
--panel-bg: {{PANEL_BG}};
|
|
19
|
+
--panel-border: {{PANEL_BORDER}};
|
|
20
|
+
--counter-bg: {{COUNTER_BG}};
|
|
21
|
+
--counter-text: {{COUNTER_TEXT}};
|
|
22
|
+
--table-border: {{TABLE_BORDER}};
|
|
23
|
+
--table-hdr: {{TABLE_HEADER_BG}};
|
|
24
|
+
--glow: {{GLOW_COLOR}};
|
|
25
|
+
--nav-active-bg: {{NAV_ACTIVE_BG}};
|
|
26
|
+
--nav-active-text: {{NAV_ACTIVE_TEXT}};
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
html { scroll-behavior: smooth; }
|
|
30
|
+
|
|
31
|
+
body {
|
|
32
|
+
background-color: var(--bg);
|
|
33
|
+
background-image: {{BG_PATTERN}};
|
|
34
|
+
background-size: {{BG_SIZE}};
|
|
35
|
+
color: var(--text);
|
|
36
|
+
font-family: 'Comic Sans MS', 'Chalkboard SE', 'Courier New', Times, serif;
|
|
37
|
+
font-size: 14px;
|
|
38
|
+
line-height: 1.5;
|
|
39
|
+
min-height: 100vh;
|
|
40
|
+
cursor: default;
|
|
41
|
+
overflow-x: hidden;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
/* ── Layout ── */
|
|
45
|
+
#page-wrapper {
|
|
46
|
+
max-width: 800px;
|
|
47
|
+
width: 100%;
|
|
48
|
+
margin: 0 auto;
|
|
49
|
+
padding: 8px;
|
|
50
|
+
box-sizing: border-box;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
#main-table {
|
|
54
|
+
width: 100%;
|
|
55
|
+
border-collapse: collapse;
|
|
56
|
+
table-layout: fixed;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
#header-cell {
|
|
60
|
+
background: var(--panel-bg);
|
|
61
|
+
border: 3px outset var(--border-light);
|
|
62
|
+
padding: 10px;
|
|
63
|
+
text-align: center;
|
|
64
|
+
margin-bottom: 6px;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
#content-row { vertical-align: top; }
|
|
68
|
+
|
|
69
|
+
#sidebar {
|
|
70
|
+
width: 170px;
|
|
71
|
+
min-width: 170px;
|
|
72
|
+
padding-right: 8px;
|
|
73
|
+
vertical-align: top;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
#main-content {
|
|
77
|
+
vertical-align: top;
|
|
78
|
+
padding-left: 6px;
|
|
79
|
+
min-width: 0;
|
|
80
|
+
overflow-wrap: break-word;
|
|
81
|
+
word-break: break-word;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
#footer-cell {
|
|
85
|
+
background: var(--panel-bg);
|
|
86
|
+
border: 3px inset var(--border-dark);
|
|
87
|
+
padding: 10px;
|
|
88
|
+
text-align: center;
|
|
89
|
+
margin-top: 6px;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
/* ── Typography ── */
|
|
93
|
+
h1 {
|
|
94
|
+
font-size: 2rem;
|
|
95
|
+
color: var(--heading);
|
|
96
|
+
text-transform: uppercase;
|
|
97
|
+
letter-spacing: 3px;
|
|
98
|
+
text-shadow: 2px 2px 0 var(--border-dark), 0 0 12px var(--glow);
|
|
99
|
+
animation: neonPulse 2s ease-in-out infinite;
|
|
100
|
+
font-family: 'Comic Sans MS', Impact, sans-serif;
|
|
101
|
+
}
|
|
102
|
+
h2 {
|
|
103
|
+
font-size: 1.4rem;
|
|
104
|
+
color: var(--heading);
|
|
105
|
+
text-transform: uppercase;
|
|
106
|
+
text-shadow: 1px 1px 0 var(--border-dark), 0 0 8px var(--glow);
|
|
107
|
+
margin: 12px 0 6px;
|
|
108
|
+
}
|
|
109
|
+
h3 {
|
|
110
|
+
font-size: 1.1rem;
|
|
111
|
+
color: var(--accent);
|
|
112
|
+
text-transform: uppercase;
|
|
113
|
+
margin: 8px 0 4px;
|
|
114
|
+
}
|
|
115
|
+
p { margin-bottom: 8px; }
|
|
116
|
+
|
|
117
|
+
a { color: var(--link); text-decoration: underline; }
|
|
118
|
+
a:hover { color: var(--link-hover); text-decoration: none; }
|
|
119
|
+
a:visited { color: var(--accent); }
|
|
120
|
+
|
|
121
|
+
/* ── Panels / Windows 95 Boxes ── */
|
|
122
|
+
.panel {
|
|
123
|
+
background: var(--panel-bg);
|
|
124
|
+
border: 3px outset var(--border-light);
|
|
125
|
+
padding: 8px;
|
|
126
|
+
margin-bottom: 8px;
|
|
127
|
+
}
|
|
128
|
+
.panel-inset {
|
|
129
|
+
background: var(--panel-bg);
|
|
130
|
+
border: 3px inset var(--border-dark);
|
|
131
|
+
padding: 8px;
|
|
132
|
+
margin-bottom: 8px;
|
|
133
|
+
}
|
|
134
|
+
.panel-title {
|
|
135
|
+
background: var(--table-hdr);
|
|
136
|
+
color: var(--heading);
|
|
137
|
+
font-weight: bold;
|
|
138
|
+
font-size: 0.85rem;
|
|
139
|
+
padding: 3px 6px;
|
|
140
|
+
text-transform: uppercase;
|
|
141
|
+
letter-spacing: 1px;
|
|
142
|
+
margin: -8px -8px 8px -8px;
|
|
143
|
+
border-bottom: 2px solid var(--border-light);
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
/* ── Navigation Sidebar ── */
|
|
147
|
+
.nav-link {
|
|
148
|
+
display: block;
|
|
149
|
+
color: var(--link);
|
|
150
|
+
text-decoration: none;
|
|
151
|
+
padding: 4px 6px;
|
|
152
|
+
border: 2px outset var(--border-light);
|
|
153
|
+
background: var(--panel-bg);
|
|
154
|
+
margin-bottom: 4px;
|
|
155
|
+
font-size: 0.8rem;
|
|
156
|
+
font-weight: bold;
|
|
157
|
+
text-align: center;
|
|
158
|
+
text-transform: uppercase;
|
|
159
|
+
transition: background 0.1s;
|
|
160
|
+
}
|
|
161
|
+
.nav-link:hover {
|
|
162
|
+
background: var(--border-light);
|
|
163
|
+
color: var(--bg);
|
|
164
|
+
border-style: inset;
|
|
165
|
+
}
|
|
166
|
+
.nav-active,
|
|
167
|
+
.nav-active:visited,
|
|
168
|
+
.nav-active:hover {
|
|
169
|
+
border-style: inset;
|
|
170
|
+
background: var(--nav-active-bg);
|
|
171
|
+
color: var(--nav-active-text);
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
/* ── Visitor Counter ── */
|
|
175
|
+
#visitor-counter-box {
|
|
176
|
+
background: var(--counter-bg);
|
|
177
|
+
border: 3px inset var(--border-dark);
|
|
178
|
+
padding: 8px 12px;
|
|
179
|
+
display: inline-block;
|
|
180
|
+
margin: 8px auto;
|
|
181
|
+
font-family: 'Courier New', monospace;
|
|
182
|
+
font-size: 0.75rem;
|
|
183
|
+
color: var(--counter-text);
|
|
184
|
+
text-align: center;
|
|
185
|
+
}
|
|
186
|
+
#visitor-counter-box .counter-label {
|
|
187
|
+
font-size: 0.7rem;
|
|
188
|
+
letter-spacing: 2px;
|
|
189
|
+
text-transform: uppercase;
|
|
190
|
+
margin-bottom: 4px;
|
|
191
|
+
opacity: 0.8;
|
|
192
|
+
}
|
|
193
|
+
.counter-digits {
|
|
194
|
+
display: flex;
|
|
195
|
+
justify-content: center;
|
|
196
|
+
gap: 2px;
|
|
197
|
+
margin-top: 4px;
|
|
198
|
+
}
|
|
199
|
+
.digit-box {
|
|
200
|
+
background: #000;
|
|
201
|
+
color: var(--counter-text);
|
|
202
|
+
border: 2px inset #333;
|
|
203
|
+
font-family: 'Courier New', monospace;
|
|
204
|
+
font-size: 1.4rem;
|
|
205
|
+
font-weight: bold;
|
|
206
|
+
width: 28px;
|
|
207
|
+
height: 36px;
|
|
208
|
+
display: flex;
|
|
209
|
+
align-items: center;
|
|
210
|
+
justify-content: center;
|
|
211
|
+
text-shadow: 0 0 6px var(--counter-text);
|
|
212
|
+
transition: all 0.15s;
|
|
213
|
+
}
|
|
214
|
+
.digit-box.rolling { animation: digitRoll 0.15s ease-in-out; }
|
|
215
|
+
|
|
216
|
+
/* ── Marquee (CSS) ── */
|
|
217
|
+
.marquee-wrapper {
|
|
218
|
+
overflow: hidden;
|
|
219
|
+
width: 100%;
|
|
220
|
+
background: var(--panel-bg);
|
|
221
|
+
border: 2px inset var(--border-dark);
|
|
222
|
+
padding: 4px 0;
|
|
223
|
+
}
|
|
224
|
+
.marquee-inner {
|
|
225
|
+
display: inline-block;
|
|
226
|
+
white-space: nowrap;
|
|
227
|
+
animation: marquee 18s linear infinite;
|
|
228
|
+
color: var(--accent);
|
|
229
|
+
font-weight: bold;
|
|
230
|
+
font-size: 0.9rem;
|
|
231
|
+
letter-spacing: 1px;
|
|
232
|
+
}
|
|
233
|
+
.marquee-inner:hover { animation-play-state: paused; }
|
|
234
|
+
|
|
235
|
+
/* ── Blink ── */
|
|
236
|
+
.blink { animation: blink 1s step-start infinite; }
|
|
237
|
+
|
|
238
|
+
/* ── Rainbow text ── */
|
|
239
|
+
.rainbow { animation: rainbow 4s linear infinite; }
|
|
240
|
+
|
|
241
|
+
/* ── Neon glow text ── */
|
|
242
|
+
.neon-text {
|
|
243
|
+
color: var(--heading);
|
|
244
|
+
animation: neonPulse 2s ease-in-out infinite;
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
/* ── Divider ── */
|
|
248
|
+
.retro-divider {
|
|
249
|
+
width: 100%;
|
|
250
|
+
height: 12px;
|
|
251
|
+
background: linear-gradient(
|
|
252
|
+
90deg,
|
|
253
|
+
var(--border-dark) 0%,
|
|
254
|
+
var(--accent) 20%,
|
|
255
|
+
var(--heading) 40%,
|
|
256
|
+
var(--link) 60%,
|
|
257
|
+
var(--accent) 80%,
|
|
258
|
+
var(--border-dark) 100%
|
|
259
|
+
);
|
|
260
|
+
border: none;
|
|
261
|
+
margin: 10px 0;
|
|
262
|
+
animation: dividerShimmer 3s linear infinite;
|
|
263
|
+
background-size: 200% 100%;
|
|
264
|
+
}
|
|
265
|
+
.star-divider {
|
|
266
|
+
text-align: center;
|
|
267
|
+
color: var(--accent);
|
|
268
|
+
font-size: 1.1rem;
|
|
269
|
+
letter-spacing: 6px;
|
|
270
|
+
margin: 8px 0;
|
|
271
|
+
animation: rainbow 3s linear infinite;
|
|
272
|
+
}
|
|
273
|
+
|
|
274
|
+
/* ── Under Construction ── */
|
|
275
|
+
.under-construction {
|
|
276
|
+
background: repeating-linear-gradient(
|
|
277
|
+
45deg,
|
|
278
|
+
#ffcc00,
|
|
279
|
+
#ffcc00 20px,
|
|
280
|
+
#000000 20px,
|
|
281
|
+
#000000 40px
|
|
282
|
+
);
|
|
283
|
+
border: 4px solid #ffcc00;
|
|
284
|
+
padding: 12px;
|
|
285
|
+
text-align: center;
|
|
286
|
+
margin: 10px 0;
|
|
287
|
+
}
|
|
288
|
+
.under-construction .uc-inner {
|
|
289
|
+
background: var(--panel-bg);
|
|
290
|
+
border: 3px inset var(--border-dark);
|
|
291
|
+
padding: 10px;
|
|
292
|
+
color: var(--heading);
|
|
293
|
+
font-weight: bold;
|
|
294
|
+
font-size: 1rem;
|
|
295
|
+
text-transform: uppercase;
|
|
296
|
+
letter-spacing: 2px;
|
|
297
|
+
}
|
|
298
|
+
.uc-icon {
|
|
299
|
+
font-size: 2rem;
|
|
300
|
+
animation: spin 3s linear infinite;
|
|
301
|
+
display: inline-block;
|
|
302
|
+
margin: 0 8px;
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
/* ── NEW badge ── */
|
|
306
|
+
.new-badge {
|
|
307
|
+
display: inline-block;
|
|
308
|
+
background: #FF0000;
|
|
309
|
+
color: #FFFF00;
|
|
310
|
+
font-size: 0.65rem;
|
|
311
|
+
font-weight: bold;
|
|
312
|
+
padding: 1px 4px;
|
|
313
|
+
border: 2px outset #FF6666;
|
|
314
|
+
text-transform: uppercase;
|
|
315
|
+
letter-spacing: 1px;
|
|
316
|
+
animation: blink 0.7s step-start infinite;
|
|
317
|
+
vertical-align: middle;
|
|
318
|
+
margin-left: 4px;
|
|
319
|
+
}
|
|
320
|
+
|
|
321
|
+
/* ── Web Ring ── */
|
|
322
|
+
.webring {
|
|
323
|
+
background: var(--panel-bg);
|
|
324
|
+
border: 3px outset var(--border-light);
|
|
325
|
+
padding: 8px;
|
|
326
|
+
text-align: center;
|
|
327
|
+
font-size: 0.75rem;
|
|
328
|
+
}
|
|
329
|
+
.webring-title {
|
|
330
|
+
font-weight: bold;
|
|
331
|
+
color: var(--heading);
|
|
332
|
+
text-transform: uppercase;
|
|
333
|
+
letter-spacing: 1px;
|
|
334
|
+
margin-bottom: 6px;
|
|
335
|
+
font-size: 0.8rem;
|
|
336
|
+
}
|
|
337
|
+
.webring-nav { display: flex; justify-content: center; align-items: center; gap: 8px; flex-wrap: wrap; }
|
|
338
|
+
.webring-btn {
|
|
339
|
+
background: var(--panel-bg);
|
|
340
|
+
border: 2px outset var(--border-light);
|
|
341
|
+
color: var(--link);
|
|
342
|
+
padding: 3px 8px;
|
|
343
|
+
font-size: 0.7rem;
|
|
344
|
+
cursor: pointer;
|
|
345
|
+
text-decoration: none;
|
|
346
|
+
font-family: inherit;
|
|
347
|
+
}
|
|
348
|
+
.webring-btn:hover { border-style: inset; color: var(--link-hover); }
|
|
349
|
+
|
|
350
|
+
/* ── Netscape badge ── */
|
|
351
|
+
.netscape-badge {
|
|
352
|
+
display: inline-block;
|
|
353
|
+
background: #333;
|
|
354
|
+
border: 3px outset #666;
|
|
355
|
+
padding: 4px 8px;
|
|
356
|
+
color: #FFCC00;
|
|
357
|
+
font-size: 0.65rem;
|
|
358
|
+
font-family: 'Courier New', monospace;
|
|
359
|
+
text-align: center;
|
|
360
|
+
margin: 4px;
|
|
361
|
+
}
|
|
362
|
+
|
|
363
|
+
/* ── Spinning Globe (sidebar) ── */
|
|
364
|
+
.spinning-globe {
|
|
365
|
+
font-size: 2.5rem;
|
|
366
|
+
text-align: center;
|
|
367
|
+
margin: 8px 0;
|
|
368
|
+
animation: spin 4s linear infinite;
|
|
369
|
+
display: block;
|
|
370
|
+
filter: drop-shadow(0 0 8px var(--glow));
|
|
371
|
+
}
|
|
372
|
+
|
|
373
|
+
/* ── Page Clock ── */
|
|
374
|
+
#page-clock {
|
|
375
|
+
font-family: 'Courier New', monospace;
|
|
376
|
+
font-size: 0.75rem;
|
|
377
|
+
color: var(--counter-text);
|
|
378
|
+
text-align: center;
|
|
379
|
+
background: var(--counter-bg);
|
|
380
|
+
border: 2px inset var(--border-dark);
|
|
381
|
+
padding: 3px 6px;
|
|
382
|
+
letter-spacing: 2px;
|
|
383
|
+
margin: 4px 0;
|
|
384
|
+
display: block;
|
|
385
|
+
}
|
|
386
|
+
|
|
387
|
+
/* ── Music button ── */
|
|
388
|
+
#music-btn {
|
|
389
|
+
background: var(--panel-bg);
|
|
390
|
+
border: 2px outset var(--border-light);
|
|
391
|
+
color: var(--link);
|
|
392
|
+
padding: 3px 8px;
|
|
393
|
+
font-size: 0.7rem;
|
|
394
|
+
cursor: pointer;
|
|
395
|
+
font-family: inherit;
|
|
396
|
+
margin: 4px 0;
|
|
397
|
+
width: 100%;
|
|
398
|
+
text-align: center;
|
|
399
|
+
}
|
|
400
|
+
#music-btn:hover { border-style: inset; }
|
|
401
|
+
|
|
402
|
+
/* ── Buttons ── */
|
|
403
|
+
.retro-btn {
|
|
404
|
+
background: var(--panel-bg);
|
|
405
|
+
border: 3px outset var(--border-light);
|
|
406
|
+
color: var(--link);
|
|
407
|
+
padding: 4px 12px;
|
|
408
|
+
font-family: inherit;
|
|
409
|
+
font-size: 0.85rem;
|
|
410
|
+
font-weight: bold;
|
|
411
|
+
cursor: pointer;
|
|
412
|
+
text-transform: uppercase;
|
|
413
|
+
letter-spacing: 1px;
|
|
414
|
+
text-decoration: none;
|
|
415
|
+
display: inline-block;
|
|
416
|
+
}
|
|
417
|
+
.retro-btn:hover { border-style: inset; background: var(--accent); color: var(--bg); }
|
|
418
|
+
|
|
419
|
+
/* ── Tables ── */
|
|
420
|
+
.retro-table {
|
|
421
|
+
border-collapse: collapse;
|
|
422
|
+
width: 100%;
|
|
423
|
+
font-size: 0.85rem;
|
|
424
|
+
}
|
|
425
|
+
.retro-table th {
|
|
426
|
+
background: var(--table-hdr);
|
|
427
|
+
color: var(--heading);
|
|
428
|
+
border: 2px solid var(--table-border);
|
|
429
|
+
padding: 4px 8px;
|
|
430
|
+
text-transform: uppercase;
|
|
431
|
+
font-size: 0.8rem;
|
|
432
|
+
letter-spacing: 1px;
|
|
433
|
+
}
|
|
434
|
+
.retro-table td {
|
|
435
|
+
border: 1px solid var(--table-border);
|
|
436
|
+
padding: 4px 8px;
|
|
437
|
+
color: var(--text);
|
|
438
|
+
}
|
|
439
|
+
.retro-table tr:hover td { background: var(--table-hdr); }
|
|
440
|
+
|
|
441
|
+
/* ── Gallery ── */
|
|
442
|
+
.gallery-grid {
|
|
443
|
+
display: grid;
|
|
444
|
+
grid-template-columns: repeat(3, 1fr);
|
|
445
|
+
gap: 10px;
|
|
446
|
+
margin: 10px 0;
|
|
447
|
+
}
|
|
448
|
+
.gallery-item {
|
|
449
|
+
background: var(--panel-bg);
|
|
450
|
+
border: 4px outset var(--border-light);
|
|
451
|
+
padding: 6px;
|
|
452
|
+
text-align: center;
|
|
453
|
+
cursor: pointer;
|
|
454
|
+
transition: border-style 0.1s;
|
|
455
|
+
}
|
|
456
|
+
.gallery-item:hover { border-style: inset; }
|
|
457
|
+
.gallery-item img {
|
|
458
|
+
width: 100%;
|
|
459
|
+
height: 120px;
|
|
460
|
+
object-fit: cover;
|
|
461
|
+
display: block;
|
|
462
|
+
background: var(--border-dark);
|
|
463
|
+
}
|
|
464
|
+
.gallery-caption {
|
|
465
|
+
font-size: 0.75rem;
|
|
466
|
+
color: var(--accent);
|
|
467
|
+
margin-top: 4px;
|
|
468
|
+
font-style: italic;
|
|
469
|
+
}
|
|
470
|
+
.photo-of-month {
|
|
471
|
+
background: var(--panel-bg);
|
|
472
|
+
border: 4px outset var(--border-light);
|
|
473
|
+
padding: 10px;
|
|
474
|
+
text-align: center;
|
|
475
|
+
margin-bottom: 12px;
|
|
476
|
+
}
|
|
477
|
+
.photo-of-month img {
|
|
478
|
+
max-width: 100%;
|
|
479
|
+
height: 200px;
|
|
480
|
+
object-fit: cover;
|
|
481
|
+
border: 2px inset var(--border-dark);
|
|
482
|
+
}
|
|
483
|
+
|
|
484
|
+
/* ── Lightbox ── */
|
|
485
|
+
#lightbox {
|
|
486
|
+
display: none;
|
|
487
|
+
position: fixed;
|
|
488
|
+
inset: 0;
|
|
489
|
+
background: rgba(0,0,0,0.85);
|
|
490
|
+
z-index: 9999;
|
|
491
|
+
align-items: center;
|
|
492
|
+
justify-content: center;
|
|
493
|
+
cursor: pointer;
|
|
494
|
+
}
|
|
495
|
+
#lightbox.active { display: flex; }
|
|
496
|
+
#lightbox img {
|
|
497
|
+
max-width: 90vw;
|
|
498
|
+
max-height: 85vh;
|
|
499
|
+
border: 6px outset var(--border-light);
|
|
500
|
+
box-shadow: 0 0 40px var(--glow);
|
|
501
|
+
}
|
|
502
|
+
#lightbox-close {
|
|
503
|
+
position: absolute;
|
|
504
|
+
top: 16px;
|
|
505
|
+
right: 20px;
|
|
506
|
+
color: #fff;
|
|
507
|
+
font-size: 2rem;
|
|
508
|
+
cursor: pointer;
|
|
509
|
+
font-weight: bold;
|
|
510
|
+
text-shadow: 0 0 8px var(--glow);
|
|
511
|
+
}
|
|
512
|
+
#lightbox-caption {
|
|
513
|
+
position: absolute;
|
|
514
|
+
bottom: 24px;
|
|
515
|
+
left: 50%;
|
|
516
|
+
transform: translateX(-50%);
|
|
517
|
+
color: var(--heading);
|
|
518
|
+
font-size: 1rem;
|
|
519
|
+
font-weight: bold;
|
|
520
|
+
text-shadow: 0 0 8px var(--glow);
|
|
521
|
+
white-space: nowrap;
|
|
522
|
+
}
|
|
523
|
+
|
|
524
|
+
/* ── Guestbook ── */
|
|
525
|
+
.guestbook-entry {
|
|
526
|
+
border: 2px inset var(--border-dark);
|
|
527
|
+
background: var(--panel-bg);
|
|
528
|
+
padding: 8px;
|
|
529
|
+
margin-bottom: 8px;
|
|
530
|
+
font-size: 0.85rem;
|
|
531
|
+
}
|
|
532
|
+
.guestbook-entry .entry-name {
|
|
533
|
+
color: var(--heading);
|
|
534
|
+
font-weight: bold;
|
|
535
|
+
font-size: 0.9rem;
|
|
536
|
+
}
|
|
537
|
+
.guestbook-entry .entry-date {
|
|
538
|
+
font-size: 0.7rem;
|
|
539
|
+
color: var(--accent);
|
|
540
|
+
margin-left: 8px;
|
|
541
|
+
}
|
|
542
|
+
.guestbook-form input,
|
|
543
|
+
.guestbook-form textarea {
|
|
544
|
+
width: 100%;
|
|
545
|
+
background: var(--counter-bg);
|
|
546
|
+
border: 2px inset var(--border-dark);
|
|
547
|
+
color: var(--text);
|
|
548
|
+
font-family: inherit;
|
|
549
|
+
font-size: 0.85rem;
|
|
550
|
+
padding: 4px 6px;
|
|
551
|
+
margin-bottom: 6px;
|
|
552
|
+
}
|
|
553
|
+
.guestbook-form label {
|
|
554
|
+
font-size: 0.8rem;
|
|
555
|
+
color: var(--accent);
|
|
556
|
+
text-transform: uppercase;
|
|
557
|
+
display: block;
|
|
558
|
+
margin-bottom: 2px;
|
|
559
|
+
}
|
|
560
|
+
|
|
561
|
+
/* ── Cool Links ── */
|
|
562
|
+
.links-category {
|
|
563
|
+
color: var(--heading);
|
|
564
|
+
font-weight: bold;
|
|
565
|
+
font-size: 1rem;
|
|
566
|
+
text-transform: uppercase;
|
|
567
|
+
border-bottom: 2px solid var(--accent);
|
|
568
|
+
padding-bottom: 2px;
|
|
569
|
+
margin: 12px 0 6px;
|
|
570
|
+
}
|
|
571
|
+
.link-item {
|
|
572
|
+
display: flex;
|
|
573
|
+
align-items: flex-start;
|
|
574
|
+
margin-bottom: 6px;
|
|
575
|
+
font-size: 0.85rem;
|
|
576
|
+
}
|
|
577
|
+
.link-bullet {
|
|
578
|
+
color: var(--accent);
|
|
579
|
+
font-size: 1rem;
|
|
580
|
+
margin-right: 6px;
|
|
581
|
+
animation: blink 1.5s step-start infinite;
|
|
582
|
+
flex-shrink: 0;
|
|
583
|
+
}
|
|
584
|
+
.link-desc {
|
|
585
|
+
font-size: 0.75rem;
|
|
586
|
+
color: var(--text);
|
|
587
|
+
opacity: 0.8;
|
|
588
|
+
margin-top: 1px;
|
|
589
|
+
}
|
|
590
|
+
|
|
591
|
+
/* ── About Page ── */
|
|
592
|
+
.fun-facts-list { list-style: none; padding: 0; }
|
|
593
|
+
.fun-facts-list li {
|
|
594
|
+
padding: 4px 0 4px 24px;
|
|
595
|
+
position: relative;
|
|
596
|
+
font-size: 0.85rem;
|
|
597
|
+
border-bottom: 1px dashed var(--border-dark);
|
|
598
|
+
}
|
|
599
|
+
.fun-facts-list li::before {
|
|
600
|
+
content: '★';
|
|
601
|
+
position: absolute;
|
|
602
|
+
left: 4px;
|
|
603
|
+
color: var(--accent);
|
|
604
|
+
animation: blink 1.8s step-start infinite;
|
|
605
|
+
}
|
|
606
|
+
.interests-grid {
|
|
607
|
+
display: flex;
|
|
608
|
+
flex-wrap: wrap;
|
|
609
|
+
gap: 6px;
|
|
610
|
+
margin: 8px 0;
|
|
611
|
+
}
|
|
612
|
+
.interest-badge {
|
|
613
|
+
background: var(--table-hdr);
|
|
614
|
+
border: 2px outset var(--border-light);
|
|
615
|
+
color: var(--heading);
|
|
616
|
+
padding: 3px 8px;
|
|
617
|
+
font-size: 0.75rem;
|
|
618
|
+
text-transform: uppercase;
|
|
619
|
+
}
|
|
620
|
+
|
|
621
|
+
/* ── Falling elements (JS-generated) ── */
|
|
622
|
+
.falling-element {
|
|
623
|
+
position: fixed;
|
|
624
|
+
top: -20px;
|
|
625
|
+
pointer-events: none;
|
|
626
|
+
z-index: 1;
|
|
627
|
+
animation: fall linear forwards;
|
|
628
|
+
user-select: none;
|
|
629
|
+
}
|
|
630
|
+
@keyframes fall {
|
|
631
|
+
to { transform: translateY(110vh) translateX(var(--drift, 0px)); opacity: 0; }
|
|
632
|
+
}
|
|
633
|
+
|
|
634
|
+
/* ── Cursor trail elements (JS-generated) ── */
|
|
635
|
+
.cursor-trail {
|
|
636
|
+
position: fixed;
|
|
637
|
+
pointer-events: none;
|
|
638
|
+
z-index: 10000;
|
|
639
|
+
user-select: none;
|
|
640
|
+
font-size: 14px;
|
|
641
|
+
line-height: 1;
|
|
642
|
+
transition: opacity 0.5s;
|
|
643
|
+
}
|
|
644
|
+
|
|
645
|
+
/* ── Matrix rain canvas ── */
|
|
646
|
+
#matrix-canvas {
|
|
647
|
+
display: none;
|
|
648
|
+
position: fixed;
|
|
649
|
+
inset: 0;
|
|
650
|
+
z-index: 9000;
|
|
651
|
+
pointer-events: none;
|
|
652
|
+
opacity: 0.85;
|
|
653
|
+
}
|
|
654
|
+
#matrix-canvas.active { display: block; }
|
|
655
|
+
#matrix-hint {
|
|
656
|
+
position: fixed;
|
|
657
|
+
bottom: 8px;
|
|
658
|
+
right: 8px;
|
|
659
|
+
font-size: 0.6rem;
|
|
660
|
+
color: var(--glow);
|
|
661
|
+
opacity: 0.5;
|
|
662
|
+
z-index: 9001;
|
|
663
|
+
font-family: 'Courier New', monospace;
|
|
664
|
+
pointer-events: none;
|
|
665
|
+
}
|
|
666
|
+
|
|
667
|
+
/* ── Page entry animation ── */
|
|
668
|
+
@keyframes pageEntry {
|
|
669
|
+
from { opacity: 0; transform: translateY(20px); }
|
|
670
|
+
to { opacity: 1; transform: translateY(0); }
|
|
671
|
+
}
|
|
672
|
+
#page-wrapper { animation: pageEntry 0.6s ease-out both; }
|
|
673
|
+
|
|
674
|
+
/* ── Keyframes ── */
|
|
675
|
+
@keyframes blink {
|
|
676
|
+
0%, 100% { opacity: 1; }
|
|
677
|
+
50% { opacity: 0; }
|
|
678
|
+
}
|
|
679
|
+
@keyframes marquee {
|
|
680
|
+
from { transform: translateX(100%); }
|
|
681
|
+
to { transform: translateX(-100%); }
|
|
682
|
+
}
|
|
683
|
+
@keyframes neonPulse {
|
|
684
|
+
0%, 100% { text-shadow: 2px 2px 0 var(--border-dark), 0 0 8px var(--glow), 0 0 20px var(--glow); }
|
|
685
|
+
50% { text-shadow: 2px 2px 0 var(--border-dark), 0 0 2px var(--glow); }
|
|
686
|
+
}
|
|
687
|
+
@keyframes rainbow {
|
|
688
|
+
from { filter: hue-rotate(0deg); }
|
|
689
|
+
to { filter: hue-rotate(360deg); }
|
|
690
|
+
}
|
|
691
|
+
@keyframes spin {
|
|
692
|
+
from { transform: rotate(0deg); }
|
|
693
|
+
to { transform: rotate(360deg); }
|
|
694
|
+
}
|
|
695
|
+
@keyframes dividerShimmer {
|
|
696
|
+
from { background-position: 0% 0%; }
|
|
697
|
+
to { background-position: 200% 0%; }
|
|
698
|
+
}
|
|
699
|
+
@keyframes digitRoll {
|
|
700
|
+
0% { transform: translateY(-8px); opacity: 0; }
|
|
701
|
+
100% { transform: translateY(0); opacity: 1; }
|
|
702
|
+
}
|
|
703
|
+
@keyframes sparkleFloat {
|
|
704
|
+
0% { transform: translateY(0) scale(1); opacity: 1; }
|
|
705
|
+
100% { transform: translateY(-40px) scale(0); opacity: 0; }
|
|
706
|
+
}
|
|
707
|
+
|
|
708
|
+
/* ── Scrollbar (for fun) ── */
|
|
709
|
+
::-webkit-scrollbar { width: 14px; }
|
|
710
|
+
::-webkit-scrollbar-track { background: var(--panel-bg); border: 2px inset var(--border-dark); }
|
|
711
|
+
::-webkit-scrollbar-thumb { background: var(--accent); border: 2px outset var(--border-light); }
|
|
712
|
+
::-webkit-scrollbar-thumb:hover { background: var(--heading); }
|
|
713
|
+
|
|
714
|
+
/* ── Selection ── */
|
|
715
|
+
::selection { background: var(--accent); color: var(--bg); }
|
|
716
|
+
|
|
717
|
+
/* ── Responsive (graceful collapse) ── */
|
|
718
|
+
@media (max-width: 820px) {
|
|
719
|
+
#page-wrapper { width: 100%; }
|
|
720
|
+
#sidebar { width: 140px; }
|
|
721
|
+
.gallery-grid { grid-template-columns: repeat(2, 1fr); }
|
|
722
|
+
}
|
|
723
|
+
@media (max-width: 560px) {
|
|
724
|
+
#main-table, #content-row, #sidebar, #main-content {
|
|
725
|
+
display: block; width: 100%;
|
|
726
|
+
}
|
|
727
|
+
#sidebar { padding-right: 0; margin-bottom: 8px; }
|
|
728
|
+
.gallery-grid { grid-template-columns: 1fr 1fr; }
|
|
729
|
+
}
|