-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
337 lines (286 loc) · 12.6 KB
/
index.html
File metadata and controls
337 lines (286 loc) · 12.6 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Educational Apps For Kids</title>
<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=Outfit:wght@300;400;600&display=swap" rel="stylesheet">
<style>
:root {
--bg-color: #0f172a;
--card-bg: #1e293b;
--text-primary: #f8fafc;
--text-secondary: #94a3b8;
--accent-primary: #38bdf8;
--accent-hover: #0ea5e9;
--card-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
--card-hover-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
font-family: 'Outfit', sans-serif;
background-color: var(--bg-color);
color: var(--text-primary);
margin: 0;
display: flex;
flex-direction: column;
align-items: center;
min-height: 100vh;
padding: 2rem;
box-sizing: border-box;
}
header {
text-align: center;
margin-bottom: 3rem;
animation: fadeInDown 0.8s ease-out;
}
h1 {
font-size: 3rem;
font-weight: 600;
margin-bottom: 0.5rem;
background: linear-gradient(to right, #60a5fa, #c084fc);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
p.subtitle {
color: var(--text-secondary);
font-size: 1.2rem;
}
.categories {
width: 100%;
max-width: 1200px;
display: flex;
flex-direction: column;
gap: 3rem;
}
.category {
animation: fadeInUp 0.8s ease-out backwards;
}
.category:nth-child(1) {
animation-delay: 0.1s;
--category-color: #f59e0b;
}
.category:nth-child(2) {
animation-delay: 0.2s;
--category-color: #60a5fa;
}
.category:nth-child(3) {
animation-delay: 0.3s;
--category-color: #f43f5e;
}
.category-title {
font-size: 1.4rem;
font-weight: 600;
color: var(--category-color);
margin: 0 0 1.25rem 0;
padding-bottom: 0.5rem;
border-bottom: 1px solid rgba(255, 255, 255, 0.08);
letter-spacing: 0.05em;
text-transform: uppercase;
}
.grid {
display: grid;
grid-template-columns: repeat(auto-fill, 280px);
gap: 1.5rem;
}
.card {
width: 280px;
background-color: var(--card-bg);
border-radius: 1rem;
padding: 1.75rem;
text-decoration: none;
color: inherit;
transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
box-shadow: var(--card-shadow);
border: 1px solid transparent;
border-top: 4px solid var(--card-color);
display: flex;
flex-direction: column;
position: relative;
overflow: hidden;
}
.card:hover {
transform: translateY(-6px);
box-shadow: var(--card-hover-shadow);
border-color: rgba(255, 255, 255, 0.1);
border-top-color: var(--card-color);
}
.card h2 {
font-size: 1.5rem;
margin-top: 0;
margin-bottom: 0.5rem;
color: var(--text-primary);
}
.card p {
color: var(--text-secondary);
line-height: 1.6;
flex-grow: 1;
margin: 0;
}
.card-footer {
margin-top: 1.25rem;
font-weight: 600;
color: var(--card-color);
display: flex;
align-items: center;
gap: 0.5rem;
transition: color 0.3s;
}
.card:hover .card-footer {
color: var(--accent-hover);
}
.arrow {
transition: transform 0.3s ease;
}
.card:hover .arrow {
transform: translateX(5px);
}
@keyframes fadeInDown {
from {
opacity: 0;
transform: translateY(-20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@media (max-width: 600px) {
h1 {
font-size: 2.5rem;
}
.grid {
grid-template-columns: 1fr;
}
.card {
width: 100%;
}
}
</style>
</head>
<body>
<header>
<h1>Educational Apps For Kids</h1>
<p class="subtitle">Explore our collection of interactive learning tools</p>
</header>
<div class="categories">
<section class="category">
<h3 class="category-title">Numbers</h3>
<div class="grid">
<a href="./multiplication/index.html" class="card" style="--card-color: #10b981">
<h2>Multiplication Master</h2>
<p>Practice your times tables in a fun, gamified environment. Track your progress and achieve mastery.</p>
<div class="card-footer">Launch App <span class="arrow">→</span></div>
</a>
<a href="./time-diff/index.html" class="card" style="--card-color: #3b82f6">
<h2>Time Difference</h2>
<p>Learn to calculate the difference between two timestamps. Test your skills across varying difficulty levels.</p>
<div class="card-footer">Launch App <span class="arrow">→</span></div>
</a>
<a href="./equations-balance/index.html" class="card" style="--card-color: #116590">
<h2>Equations Balance</h2>
<p>Solve equations by balancing the scale! Discover the mystery weight with logic and physics.</p>
<div class="card-footer">Launch App <span class="arrow">→</span></div>
</a>
<a href="./decimals/index.html" class="card" style="--card-color: #a78bfa">
<h2>Decimal Addition</h2>
<p>Visualize decimal numbers as stacked blocks grouped into whole units. Add two numbers and watch how blocks fill and carry across groups.</p>
<div class="card-footer">Launch App <span class="arrow">→</span></div>
</a>
<a href="./division/index.html" class="card" style="--card-color: #22d3ee">
<h2>Division with Hops</h2>
<p>See division as number-line hops. Choose a dividend and divisor, watch coloured arcs jump by the divisor, and optionally reveal the remainder gap.</p>
<div class="card-footer">Launch App <span class="arrow">→</span></div>
</a>
<a href="./fractions/index.html" class="card" style="--card-color: #f97316">
<h2>Fraction Addition</h2>
<p>Add two fractions and see them as pizza slices. Find the common denominator to watch slices subdivide and combine.</p>
<div class="card-footer">Launch App <span class="arrow">→</span></div>
</a>
</div>
</section>
<section class="category">
<h3 class="category-title">Geometry and 3D</h3>
<div class="grid">
<a href="./coordinates/index.html" class="card" style="--card-color: #f43f5e">
<h2>Coordinates</h2>
<p>Master the Cartesian plane with this interactive tool. Draw inequalities, visualize regions, and understand linear equations.</p>
<div class="card-footer">Launch App <span class="arrow">→</span></div>
</a>
<a href="./cubes/index.html" class="card" style="--card-color: #8b5cf6">
<h2>Cubes Builder</h2>
<p>Build and visualize 3D structures with colorful cubes. Create, rotate, and explore in a 3D environment.</p>
<div class="card-footer">Launch App <span class="arrow">→</span></div>
</a>
<a href="./cubenets/index.html" class="card" style="--card-color: #f59e0b">
<h2>Cube Nets</h2>
<p>Explore 11 different net shapes and watch them fold into 3D cubes. Interactive visualization of geometry concepts.</p>
<div class="card-footer">Launch App <span class="arrow">→</span></div>
</a>
<a href="./cubes-problem/index.html" class="card" style="--card-color: #be185d">
<h2>Cubes Problem</h2>
<p>Visualize and solve a 3D geometry problem involving rubber bands on a stack of cubes.</p>
<div class="card-footer">Launch App <span class="arrow">→</span></div>
</a>
<a href="./symmetry/index.html" class="card" style="--card-color: #14b8a6">
<h2>Symmetry Explorer</h2>
<p>Draw shapes and discover the magic of reflection symmetry. Drag the mirror line to any angle, then watch your shapes fold across it with a satisfying animation.</p>
<div class="card-footer">Launch App <span class="arrow">→</span></div>
</a>
<a href="./angles/index.html" class="card" style="--card-color: #f97316">
<h2>Angles Explorer</h2>
<p>Discover how angles work by dragging rays and watching adjacent sectors add up. Build intuition for right angles, straight lines, and more.</p>
<div class="card-footer">Launch App <span class="arrow">→</span></div>
</a>
<a href="./turns/index.html" class="card" style="--card-color: #22d3ee">
<h2>Left or Right?</h2>
<p>Follow a character walking a zig-zag path. At each turn, decide: is it a left turn or a right turn? Collect gems along the way!</p>
<div class="card-footer">Launch App <span class="arrow">→</span></div>
</a>
</div>
</section>
<section class="category">
<h3 class="category-title">Games</h3>
<div class="grid">
<a href="./tetris/index.html" class="card" style="--card-color: #06b6d4">
<h2>Neon Tetris</h2>
<p>Experience the classic block-stacking game with a modern neon aesthetic and smooth gameplay.</p>
<div class="card-footer">Launch App <span class="arrow">→</span></div>
</a>
<a href="./rocket-game/index.html" class="card" style="--card-color: #ec4899">
<h2>Space Rocket</h2>
<p>Fly a rocket ship through space, collect diamonds for points and avoid dangerous asteroids to survive!</p>
<div class="card-footer">Launch App <span class="arrow">→</span></div>
</a>
<a href="./sokoban/index.html" class="card" style="--card-color: #a3e635">
<h2>Sokoban</h2>
<p>Push boxes onto the gold goals in this classic puzzle game. 60 levels of increasing challenge — think before you move!</p>
<div class="card-footer">Launch App <span class="arrow">→</span></div>
</a>
<a href="./wordle/index.html" class="card" style="--card-color: #4ade80">
<h2>Wordle</h2>
<p>Guess the hidden 5-letter word in 6 tries. Letters light up green, yellow, or grey to guide your next guess. Easy and Hard modes.</p>
<div class="card-footer">Launch App <span class="arrow">→</span></div>
</a>
</div>
</section>
</div>
</body>
</html>