-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathindex.html
More file actions
410 lines (368 loc) · 13.6 KB
/
index.html
File metadata and controls
410 lines (368 loc) · 13.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>IdeaWall - Make-A-Ton 8.0</title>
<!-- Fonts -->
<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=Caveat:wght@400;600&family=Outfit:wght@300;400;600;700&display=swap"
rel="stylesheet"
/>
<!-- Inlined CSS so this single file works standalone -->
<style>
:root {
--bg: #f4f6f8;
--card-w: 260px;
--card-h: auto;
--pin-size: 14px;
}
* {
box-sizing: border-box;
}
body {
margin: 0;
font-family: "Outfit", system-ui, -apple-system, "Segoe UI", Roboto,
"Helvetica Neue", Arial;
background: linear-gradient(180deg, #eef2f6 0%, var(--bg) 100%);
color: #0f1724;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
header {
text-align: center;
padding: 28px 16px 8px;
}
.logo h1 {
margin: 0;
font-size: 1.6rem;
letter-spacing: -0.02em;
font-weight: 700;
}
.tagline {
margin: 6px 0 0;
font-size: 0.95rem;
color: #475569;
}
main {
padding: 18px;
display: flex;
justify-content: center;
}
.idea-wall {
width: 1100px;
max-width: calc(100% - 40px);
background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="80" height="80"><g fill="%23ffffff" opacity="0.03"><rect width="80" height="80" rx="6"/></g></svg>') repeat;
border-radius: 14px;
padding: 28px;
box-shadow: 0 10px 30px rgba(2,6,23,0.08);
}
.board {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(var(--card-w), 1fr));
gap: 18px;
justify-items: center;
align-items: start;
}
.idea-card {
--rotation: 0deg;
--hue: 210;
width: var(--card-w);
min-height: 150px;
background: linear-gradient(180deg, hsl(var(--hue) 80% 95%) 0%, hsl(var(--hue) 80% 88%) 100%);
border-radius: 10px;
padding: 16px 16px 14px;
transform: rotate(var(--rotation));
box-shadow: 0 6px 18px rgba(6, 12, 34, 0.08);
position: relative;
transition: transform 160ms ease, box-shadow 160ms ease;
}
.idea-card:hover {
transform: rotate(calc(var(--rotation) * 1.05)) translateY(-6px);
box-shadow: 0 18px 36px rgba(6, 12, 34, 0.12);
}
.pin {
position: absolute;
top: -8px;
left: 18px;
width: var(--pin-size);
height: var(--pin-size);
border-radius: 50%;
background: radial-gradient(circle at 35% 30%, #fff 0%, rgba(255,255,255,0.85) 30%, rgba(0,0,0,0.12) 100%);
box-shadow: 0 4px 8px rgba(0,0,0,0.12);
transform: translateY(-6px);
}
.idea-card h3 {
margin: 6px 0 8px;
font-family: "Caveat", "Segoe UI", serif;
font-weight: 600;
font-size: 1.15rem;
color: #042028;
}
.idea-card p {
margin: 0 0 12px 0;
color: #07202a;
line-height: 1.35;
font-size: 0.95rem;
}
.idea-meta {
display: flex;
justify-content: space-between;
font-size: 0.82rem;
color: #0b2f33;
opacity: 0.85;
}
footer {
text-align: center;
padding: 16px;
color: #475569;
font-size: 0.9rem;
}
/* Responsive */
@media (max-width: 700px) {
.idea-wall {
padding: 14px;
}
.board {
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
gap: 12px;
}
.logo h1 {
font-size: 1.3rem;
}
}
</style>
</head>
<body>
<header>
<div class="logo">
<h1>Make-A-Ton 8.0 — IdeaWall</h1>
</div>
<p class="tagline">Hackathon ideas that could change everything</p>
</header>
<main>
<div class="idea-wall" aria-live="polite">
<div class="board">
<!-- Template for adding new ideas:
<div class="idea-card" style="--rotation: 0deg; --hue: 60;">
<div class="pin" aria-hidden="true"></div>
<h3>Idea Title</h3>
<p>Idea description goes here.</p>
<div class="idea-meta">
<span class="idea-author">— Name</span>
<span class="idea-date">Dec 3, 2025</span>
</div>
</div>
-->
<div class="idea-card" style="--rotation: -2deg; --hue: 200">
<div class="pin"></div>
<h3>AI Study Buddy</h3>
<p>
An AI that learns your study habits and creates personalized quizzes
from your notes. Uses spaced repetition for better retention.
</p>
<div class="idea-meta">
<span class="idea-author">— Priya S.</span>
<span class="idea-date">Dec 3, 2025</span>
</div>
</div>
<div class="idea-card" style="--rotation: 3deg; --hue: 340">
<div class="pin"></div>
<h3>Carbon Footprint Tracker</h3>
<p>
App that scans receipts and tracks your carbon footprint. Gamifies
eco-friendly choices with local leaderboards.
</p>
<div class="idea-meta">
<span class="idea-author">— Marcus T.</span>
<span class="idea-date">Dec 3, 2025</span>
</div>
</div>
<div class="idea-card" style="--rotation: -1deg; --hue: 160">
<div class="pin"></div>
<h3>Accessible Navigation</h3>
<p>
AR navigation for visually impaired users. Uses phone camera +
audio cues to guide through indoor spaces like malls and airports.
</p>
<div class="idea-meta">
<span class="idea-author">— Aisha K.</span>
<span class="idea-date">Dec 2, 2025</span>
</div>
</div>
<div class="idea-card" style="--rotation: -1deg; --hue: 160;">
<div class="pin"></div>
<h3>Blah Balh</h3>
<p>Sorry, I have no ideas.</p>
<div class="idea-meta">
<span class="idea-author">— Misnad</span>
<span class="idea-date">Dec 4, 2025</span>
</div>
</div>
<div class="idea-card" style="--rotation: 2deg; --hue: 45;">
<div class="pin"></div>
<h3>Food Waste Marketplace</h3>
<p>
Connect restaurants with surplus food to shelters and food banks in
real-time. Reduce waste, fight hunger.
</p>
<div class="idea-meta">
<span class="idea-author">— Jordan L.</span>
<span class="idea-date">Dec 2, 2025</span>
</div>
</div>
<div class="idea-card" style="--rotation: -3deg; --hue: 280">
<div class="pin"></div>
<h3>Mental Health Check-in Bot</h3>
<p>
Discord/Slack bot that does gentle daily check-ins, tracks mood
patterns, and suggests resources. Privacy-first design.
</p>
<div class="idea-meta">
<span class="idea-author">— Sam R.</span>
<span class="idea-date">Dec 1, 2025</span>
</div>
</div>
<div class="idea-card" style="--rotation: 1deg; --hue: 100">
<div class="pin"></div>
<h3>Code Review Copilot</h3>
<p>
AI that reviews PRs for security vulnerabilities, suggests
optimizations, and explains complex code to junior devs.
</p>
<div class="idea-meta">
<span class="idea-author">— Dev M.</span>
<span class="idea-date">Dec 1, 2025</span>
</div>
</div>
<div class="idea-card" style="--rotation: -2deg; --hue: 20">
<div class="pin"></div>
<h3>Emergency Response Network</h3>
<p>
Peer-to-peer mesh network app for disaster zones when cell towers
go down. Share location, status, and resources.
</p>
<div class="idea-meta">
<span class="idea-author">— Elena V.</span>
<span class="idea-date">Nov 30, 2025</span>
</div>
</div>
<div class="idea-card" style="--rotation: 2deg; --hue: 220">
<div class="pin"></div>
<h3>Skill Swap Platform</h3>
<p>
Match people who want to exchange skills. You teach me guitar, I
teach you Python. No money involved, just learning.
</p>
<div class="idea-meta">
<span class="idea-author">— Chris N.</span>
<span class="idea-date">Nov 30, 2025</span>
</div>
</div>
<div class="idea-card" style="--rotation: 2deg; --hue: 220">
<div class="pin"></div>
<h3>Movie Recommendation System</h3>
<p>Recommend movies according to your watch history using AI.</p>
<div class="idea-meta">
<span class="idea-author">— Nehal</span>
<span class="idea-date">Dec 4, 2025</span>
</div>
</div>
<div class="idea-card" style="--rotation: 2deg; --hue: 274;">
<div class="pin"></div>
<h3>PartnerGo</h3>
<p>Find your Match.</p>
<div class="idea-meta">
<span class="idea-author">— Tohommus</span>
<span class="idea-date">Nov 30, 2025</span>
</div>
</div>
<div class="idea-card" style="--rotation: -1deg; --hue: 120;">
<div class="pin"></div>
<h3>AI Game</h3>
<p>Game for paralysed people detecting motions using neuro chips.</p>
<div class="idea-meta">
<span class="idea-author">— Jeswin</span>
<span class="idea-date">Dec 3, 2025</span>
</div>
</div>
<div class="idea-card" style="--rotation: -2deg; --hue: 200;">
<div class="pin"></div>
<h3>AI Defense Security</h3>
<p>An AI that tracks data regarding spies and official documents.</p>
<div class="idea-meta">
<span class="idea-author">— Ghanasyam I.</span>
<span class="idea-date">Dec 3, 2025</span>
</div>
</div>
<div class="idea-card" style="--rotation: 2deg; --hue: 220;">
<div class="pin"></div>
<h3>Fees Repayment App</h3>
<p>
Students can collect and manage fee details and pay via UPI/net
banking. Fields collected: roll no, name, student id, hostel id,
room no.
</p>
<div class="idea-meta">
<span class="idea-author">— Chris N.</span>
<span class="idea-date">Nov 30, 2025</span>
</div>
</div>
<div class="idea-card" style="--rotation: -3deg; --hue: 300;">
<div class="pin"></div>
<h3>Ad-free Music Player</h3>
<p>
A frustration-free music player for listening without ads — a
cleaner, distraction-free UX.
</p>
<div class="idea-meta">
<span class="idea-author">— Abhijith S.</span>
<span class="idea-date">Dec 4, 2025</span>
</div>
</div>
<div class="idea-card" style="--rotation: 3deg; --hue: 180;">
<div class="pin"></div>
<h3>AI Interview Assistant</h3>
<p>A live AI assistant that helps you prepare and clear your next interview.</p>
<div class="idea-meta">
<span class="idea-author">— Jeremy J.</span>
<span class="idea-date">Dec 4, 2025</span>
</div>
</div>
<div class="idea-card" style="--rotation: -3deg; --hue: 250;">
<div class="pin"></div>
<h3>CATCH A STAR</h3>
<p>Chase all the paths; let it glitter on you — shine like a star.</p>
<div class="idea-meta">
<span class="idea-author">— Ankitha</span>
<span class="idea-date">Dec 4, 2025</span>
</div>
</div>
<div class="idea-card" style="--rotation: 2deg; --hue: 220;">
<div class="pin"></div>
<h3>Intelligent File Explorer</h3>
<p>An explorer which can go deep into files, learn from them, organize itself & auto-sort.</p>
<div class="idea-meta">
<span class="idea-author">— Swag V</span>
<span class="idea-date">Dec 4, 2025</span>
</div>
</div>
<div class="idea-card" style="--rotation: 2deg; --hue: 220;">
<div class="pin"></div>
<h3>Digital Ring</h3>
<p>A wearable ring that acts as a voice assistant — make calls and interact hands-free.</p>
<div class="idea-meta">
<span class="idea-author">— Ameena Jaliya</span>
<span class="idea-date">Dec 4, 2025</span>
</div>
</div>
</div>
</div>
</main>
<footer>
<p>Built for builders ⚡</p>
</footer>
</body>
</html>