-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
567 lines (471 loc) ยท 11.9 KB
/
Copy pathindex.html
File metadata and controls
567 lines (471 loc) ยท 11.9 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
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Helimo's Arcade</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,100..900&display=swap" rel="stylesheet" />
<script src="https://cdn.jsdelivr.net/npm/twemoji@14.0.2/dist/twemoji.min.js"></script>
<script>
document.addEventListener("DOMContentLoaded", () => {
twemoji.parse(document.body, {
folder: "svg",
ext: ".svg"
});
});
</script>
<style>
::selection { text-shadow: 0 0 10px currentColor; }
:root {
--bg: #0b0b0e;
--panel: #14141a;
--accent: #4da3ff;
--accent-2: #6cffb3;
--text: #eaeaf0;
--muted: #9aa0b3;
}
* { box-sizing: border-box; }
body {
margin: 0;
font-family: "Inter", system-ui, sans-serif;
background:
radial-gradient(circle at top, #1a1a25, transparent 60%),
var(--bg);
color: var(--text);
line-height: 1.6;
}
img.emoji {
height: 1em;
width: 1em;
vertical-align: -0.125em;
}
header {
position: sticky;
top: 0;
z-index: 10;
background: rgba(10,10,15,0.8);
backdrop-filter: blur(10px);
border-bottom: 1px solid #222;
}
nav {
max-width: 1200px;
margin: auto;
padding: 16px 24px;
display: flex;
align-items: center;
justify-content: space-between;
}
nav strong {
font-size: 1.2rem;
letter-spacing: 0.5px;
}
nav a {
color: var(--text);
text-decoration: none;
margin-left: 16px;
opacity: 0.85;
}
nav a:hover {
opacity: 1;
color: var(--accent);
}
.hero {
padding: 96px 24px 72px;
text-align: center;
max-width: 900px;
margin: auto;
}
.hero h1 {
font-size: clamp(2.2rem, 5vw, 3.5rem);
margin-bottom: 16px;
}
.hero p {
color: var(--muted);
font-size: 1.1rem;
max-width: 700px;
margin: auto;
}
.hero .cta {
margin-top: 32px;
display: flex;
justify-content: center;
gap: 16px;
flex-wrap: wrap;
}
.title {
white-space: pre;
}
.btn {
padding: 14px 26px;
border-radius: 999px;
text-decoration: none;
font-weight: 600;
background: var(--accent);
color: #000;
transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn.notice {
padding: 5px 15px;
border-radius: 10px;
text-decoration: none;
font-weight: 400;
background: transparent;
border: 1px solid #333;
color: var(--muted);
font-size: 15px;
transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn.secondary {
background: transparent;
color: var(--text);
border: 1px solid #333;
}
.btn.try {
background: #6cffb3;
}
.btn:hover {
transform: translateY(-2px);
}
.marquee {
overflow: hidden;
border-top: 1px solid #222;
border-bottom: 1px solid #222;
background: #0e0e14;
white-space: pre;
}
.marquee span {
display: inline-block;
padding: 12px 0;
animation: scroll 25s linear infinite;
color: var(--muted);
}
@keyframes scroll {
from { transform: translateX(100%); }
to { transform: translateX(-100%); }
}
section {
max-width: 1200px;
margin: auto;
padding: 72px 24px;
}
section h2 {
font-size: 2rem;
margin-bottom: 32px;
text-align: center;
}
.games {
display: grid;
grid-template-columns: 1fr;
gap: 16px;
}
/* Tablet */
@media (min-width: 600px) {
.games {
grid-template-columns: repeat(2, 1fr);
}
}
/* Desktop (MAX 3) */
@media (min-width: 900px) {
.games {
grid-template-columns: repeat(3, 1fr);
}
}
.card {
background: var(--panel);
border: 1px solid #222;
border-radius: 16px;
padding: 24px;
display: flex;
flex-direction: column;
justify-content: space-between;
transition: transform 0.2s ease, border-color 0.2s ease;
}
.card:hover {
transform: translateY(-6px);
border-color: var(--accent);
}
.card h3 {
margin-top: 0;
}
.card.proj:hover {
border-color: var(--accent-2);
}
.card p {
color: var(--muted);
flex-grow: 1;
}
.stats {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
gap: 24px;
text-align: center;
}
.stat {
background: var(--panel);
border-radius: 16px;
padding: 32px 16px;
border: 1px solid #222;
}
.stat strong {
font-size: 2rem;
display: block;
color: var(--accent-2);
white-space: pre;
}
.updates ul {
list-style: none;
padding: 0;
margin: 0;
max-width: 700px;
margin-inline: auto;
}
.updates li {
padding: 16px 0;
border-bottom: 1px solid #222;
color: var(--muted);
}
.faq details {
background: var(--panel);
border: 1px solid #222;
border-radius: 12px;
padding: 16px 20px;
margin-bottom: 12px;
}
footer {
padding: 48px 24px;
border-top: 1px solid #222;
text-align: center;
color: var(--muted);
font-size: 0.9rem;
}
.contact-card {
max-width: 600px;
margin: auto;
background: var(--panel);
border: 1px solid #222;
border-radius: 16px;
padding: 24px;
}
.contact-card form {
display: flex;
flex-direction: column;
gap: 12px;
}
.contact-card label {
font-size: 0.9rem;
color: var(--muted);
}
.contact-card input,
.contact-card textarea {
background: #0e0e14;
border: 1px solid #222;
border-radius: 10px;
padding: 12px;
color: var(--text);
font-family: inherit;
font-size: 0.95rem;
}
.contact-card input:focus,
.contact-card textarea:focus {
outline: none;
border-color: var(--accent);
}
.contact-card button {
margin-top: 8px;
}
.contact-card button {
outline: none;
border: none;
appearance: none;
-webkit-appearance: none;
}
textarea {
resize: vertical;
}
.faq-contact {
max-width: 1200px;
margin: auto;
padding: 72px 24px;
}
.faq-contact-grid {
display: grid;
grid-template-columns: 1fr;
gap: 32px;
}
/* Desktop */
@media (min-width: 900px) {
.faq-contact-grid {
grid-template-columns: 1fr 1fr;
}
}
.mobile-notice {
position: fixed;
bottom: 12px;
left: 50%;
transform: translateX(-50%);
background: rgba(255, 0, 0, 0.25);
border: 1px solid rgba(255, 255, 255, 0.25);
color: white;
padding: 12px 16px;
border-radius: 12px;
z-index: 9999;
display: none;
align-items: center;
gap: 12px;
width: 400px;
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}
.mobile-notice button {
background: transparent;
border: none;
color: white;
font-size: 16px;
cursor: pointer;
opacity: 0.8;
}
.mobile-notice button:hover {
opacity: 1;
}
</style>
</head>
<body>
<header>
<nav>
<strong class="title">๐ฎ๏ธ Helimo's Arcade</strong>
<div>
<a href="#games">Games</a>
<a href="#projects">Projects</a>
<a href="#updates">Updates</a>
<a href="#faq-contact">FAQ & Contact Me</a>
</div>
</nav>
</header>
<div class="hero">
<a class="btn notice" href="https://keepandroidopen.org/">Keep Android Open ๐๏ธ</a>
<h1>Welcome to the Arcade</h1>
<p>A growing collection of small and fun browser games.</p>
<div class="cta">
<a class="btn" href="#games">Browse Games</a>
<a class="btn secondary" href="#updates">Latest Updates</a>
</div>
</div>
<section id="games">
<h2>Games</h2>
<div class="games">
<div class="card">
<h3>๐ญ Mouse Dash</h3>
<p>Guide your cursor through a moving maze without touching the walls.</p>
<a class="btn" href="/mousedash">Play</a>
</div>
<div class="card">
<h3>๐ Fishy Business</h3>
<p>Guide your fish, snack on smaller fish, and dodge the big fish of the sea.</p>
<a class="btn" href="/fishybusiness">Play</a>
</div>
<div class="card">
<h3>๐ฅ Platformered</h3>
<p>A simple yet engaging platformer with 17 unique levels.</p>
<a class="btn" href="/Platformered">Play</a>
</div>
<div class="card">
<h3>๐ Constellar</h3>
<p>A relaxing game about connecting stars, with a built-in level editor.</p>
<a class="btn" href="/constellar">Play</a>
</div>
<div class="card">
<h3>๐ข Fifteen</h3>
<p>The classic fifteen puzzle, reimagined. Includes guide, timer, moves and more.</p>
<a class="btn" href="/fifteenpuzzle">Play</a>
</div>
<div class="card">
<h3>๐ฅง Pi Catcher</h3>
<p>A fun game about Pi made for Pi Day 2026.</p>
<a class="btn" href="/picatcher">Play</a>
</div>
<div class="card">
<h3>๐ง Coming Soon</h3>
<p>More experiments, prototypes, and strange ideas are in the works.</p>
<a class="btn secondary">Soon</a>
</div>
</div>
</section>
<section id="projects">
<h2>Projects</h2>
<div class="games">
<div class="card proj">
<h3>๐ Startpage</h3>
<p>My custom-built startpage, inspired by FMHY's.</p>
<a class="btn try" href="/startpage">Try</a>
</div>
<div class="card proj">
<h3>๐ ๏ธ Examforge</h3>
<p>A minimal tool for coding your own quizzes and tests.</p>
<a class="btn try" href="/examforge">Try</a>
</div>
<div class="card proj">
<h3>๐ง Coming Soon</h3>
<p>More experiments, prototypes, and strange ideas are in the works.</p>
<a class="btn secondary">Soon</a>
</div>
</div>
</section>
<section id="updates" class="updates">
<h2>Updates</h2>
<ul>
<li>โจ Updated Mouse Dash (Shop & Highscore)</li>
<li>๐ข Initial release of Fifteen</li>
<li>๐ Replaced Stats with Projects as quite useless</li>
<li>๐ฅง Initial release of Pi Catcher</li>
</ul>
</section>
<section id="faq-contact" class="faq-contact">
<h2>FAQ & Contact Me</h2>
<div class="faq-contact-grid">
<div class="faq">
<details>
<summary>Are the games free?</summary>
<p>Yes! They are completely free and browser-based.</p>
</details>
<details>
<summary>Are more things coming?</summary>
<p>Yes! Expect more amazing stuff soon.</p>
</details>
<details>
<summary>Did you make these?</summary>
<p>I have created all of these projects myself.</p>
</details>
</div>
<div class="contact">
<div class="contact-card">
<form action="https://formspree.io/f/mzdoeyoe" method="POST">
<label>Your email</label>
<input type="email" name="email" placeholder="you@example.com" required>
<label>Your message</label>
<textarea name="message" rows="5" placeholder="Type your message..." required></textarea>
<button type="submit" class="btn">Send Message</button>
</form>
</div>
</div>
</div>
</section>
<br><br>
<footer>
Helimo's Arcade ยท Built with <a href="https://pages.github.com/" style="text-decoration: none; color: var(--accent);">Github Pages</a> ยท Inspired by <a href="https://fmhy.net/" style="text-decoration: none; color: var(--accent);">FMHY</a>
</footer>
<script>
document.addEventListener("DOMContentLoaded", () => {
if (window.innerWidth <= 600) {
document.getElementById("mobileNotice").style.display = "flex";
}
});
</script>
<div class="mobile-notice" id="mobileNotice">
๐ฅ๏ธ This site is best viewed on computer!
<button onclick="document.getElementById('mobileNotice').style.display='none'">โ</button>
</div>
</body>
</html>