-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfoundation.html
More file actions
428 lines (365 loc) · 14.1 KB
/
Copy pathfoundation.html
File metadata and controls
428 lines (365 loc) · 14.1 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
<html lang="en">
<head>
<meta charset="utf-8" />
<meta content="width=device-width, initial-scale=1" name="viewport" />
<title>Foundation | IITM BSYATRA</title>
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" rel="stylesheet" />
<style>
@import url("https://fonts.googleapis.com/css2?family=Inter&display=swap");
.nav-3d {
background: #000;
border-radius: 1rem;
box-shadow:
0 4px 6px rgba(0, 0, 0, 0.9),
inset 0 0 10px #4db8ff,
0 0 15px #4db8ff;
transition: box-shadow 0.3s ease;
perspective: 800px;
transform-style: preserve-3d;
}
.nav-3d a {
text-shadow:
0 0 5px #4db8ff,
0 0 10px #4db8ff;
transition: transform 0.3s ease, text-shadow 0.3s ease;
display: inline-block;
transform-style: preserve-3d;
will-change: transform;
cursor: pointer;
}
.nav-3d a:hover {
text-shadow:
0 0 15px #4db8ff,
0 0 25px #4db8ff,
0 0 35px #1a8cff;
transform: translateZ(15px) scale(1.1);
}
.nav-3d a.login-btn {
background: linear-gradient(145deg, #4db8ff, #1a8cff);
box-shadow:
0 5px 15px #4db8ff,
inset 0 0 8px #1a8cff;
color: black;
text-shadow: none;
transition: box-shadow 0.3s ease, transform 0.3s ease;
transform-style: preserve-3d;
will-change: transform;
}
.nav-3d a.login-btn:hover {
background: linear-gradient(145deg, #1a8cff, #4db8ff);
box-shadow:
0 7px 20px #1a8cff,
inset 0 0 10px #4db8ff;
transform: translateZ(20px) scale(1.1);
}
.icon-3d {
position: relative;
width: 40px;
height: 40px;
border-radius: 0.75rem;
background: linear-gradient(135deg, #4f46e5, #7c3aed);
box-shadow: 0 0 10px #7c3aed, 0 0 20px #8b5cf6, 0 0 30px #a78bfa, inset 0 0 10px #c4b5fd;
display: flex;
align-items: center;
justify-content: center;
filter: drop-shadow(0 0 10px #7c3aed);
transform-style: preserve-3d;
transform: rotateX(15deg) rotateY(15deg);
transition: transform 0.3s ease;
}
.icon-3d:hover {
transform: rotateX(0deg) rotateY(0deg) scale(1.05);
}
.shine {
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: linear-gradient(120deg,
rgba(255, 255, 255, 0) 30%,
rgba(255, 255, 255, 0.3) 50%,
rgba(255, 255, 255, 0) 70%);
transform: rotate(25deg);
animation: shineMove 3s infinite;
pointer-events: none;
border-radius: 1rem;
mix-blend-mode: screen;
}
@keyframes shineMove {
0% {
transform: translateX(-100%) rotate(25deg);
}
100% {
transform: translateX(100%) rotate(25deg);
}
}
/* footer.css - Modified by ChatGPT */
.footer {
background: #0f172a;
color: #ffffff;
font-family: 'Inter', sans-serif;
padding: 4rem 2rem;
}
.footer-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 2.5rem;
max-width: 1280px;
margin: 0 auto;
}
.footer-logo {
display: flex;
align-items: center;
gap: 0.75rem;
margin-bottom: 1rem;
}
.footer-logo img {
width: 40px;
height: 40px;
}
.footer-logo h2 {
font-size: 1.5rem;
font-weight: 700;
letter-spacing: 0.05em;
}
.footer-brand p {
color: #cbd5e1;
font-size: 0.95rem;
line-height: 1.5;
margin-bottom: 0.75rem;
}
.footer-brand span {
color: #ffffff;
font-weight: 600;
}
.footer-socials a {
color: #cbd5e1;
font-size: 0.9rem;
margin-right: 1.25rem;
display: inline-flex;
align-items: center;
gap: 0.5rem;
transition: color 0.3s;
}
.footer-socials a:hover {
color: #60a5fa;
}
.footer-section h3,
.footer-contact h3 {
font-size: 1.05rem;
font-weight: 600;
margin-bottom: 0.75rem;
color: #f1f5f9;
}
.footer-section ul {
list-style: none;
padding: 0;
margin: 0;
}
.footer-section li {
margin-bottom: 0.5rem;
}
.footer-section a {
color: #94a3b8;
font-size: 0.875rem;
text-decoration: none;
transition: color 0.3s;
}
.footer-section a:hover {
color: #60a5fa;
}
.footer-contact p,
.footer-contact a {
font-size: 0.875rem;
color: #94a3b8;
text-decoration: none;
}
.footer-contact a:hover {
color: #60a5fa;
}
.footer-bottom {
border-top: 1px solid #334155;
margin-top: 3rem;
padding-top: 1.5rem;
font-size: 0.8rem;
text-align: center;
color: #64748b;
}
.footer-bottom div {
margin-top: 0.5rem;
}
.footer-bottom div a {
margin: 0 1rem;
color: #64748b;
text-decoration: none;
transition: color 0.3s;
}
.footer-bottom div a:hover {
color: #60a5fa;
}
</style>
</head>
<body class="bg-black">
<nav class="max-w-7xl mx-auto my-4 px-6 py-3 flex items-center justify-between nav-3d">
<!-- LOGO Section -->
<div class="flex items-center space-x-4">
<div class="icon-3d relative">
<img alt="Logo" src="https://storage.googleapis.com/a1aa/image/9d9826d9-ba7e-4744-b31c-55af136d1872.jpg"
width="40" height="40" />
<div class="shine"></div>
</div>
<div class="leading-tight select-none">
<h1 class="text-white text-lg font-bold tracking-wide">IITM</h1>
<h2 class="text-white text-sm tracking-widest">BSYATRA</h2>
</div>
</div>
<!-- NAV LINKS Section -->
<div class="flex space-x-8">
<a class="text-white text-lg font-normal font-['Inter']" href="index.html">Home</a>
<a class="text-white text-lg font-normal font-['Inter']" href="#">Quiz</a>
<a class="text-white text-lg font-normal font-['Inter']" href="resources.html">Resources</a>
<a class="text-white text-lg font-normal font-['Inter']" href="tool.html">Tools</a>
<a class="text-white text-lg font-normal font-['Inter']" href="#">About Us</a>
</div>
<!-- LOGIN BUTTON -->
<a class="text-lg font-semibold font-['Inter'] rounded-lg px-6 py-2 login-btn" href="#">Log In</a>
</nav>
<section class="max-w-7xl mx-auto px-6 py-12 grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-6 text-white font-['Inter']">
<div class="bg-[#0f172a] text-white p-6 rounded-xl shadow-lg font-['Inter'] border border-blue-500/30 transition-transform duration-300 transform hover:-translate-y-2 hover:scale-105 hover:shadow-blue-500/50 hover:shadow-2xl">
<h3 class="text-xl font-semibold mb-2">Mathematics 1</h3>
<p class="text-sm text-gray-300 mb-4">Click below for resources</p>
<button onclick="goToNotes('Mathematics1')" class="bg-blue-600 hover:bg-blue-700 text-white px-4 py-2 rounded-lg text-sm font-medium transition">Explore</a>
</div>
<div class="bg-[#0f172a] text-white p-6 rounded-xl shadow-lg font-['Inter'] border border-blue-500/30 transition-transform duration-300 transform hover:-translate-y-2 hover:scale-105 hover:shadow-blue-500/50 hover:shadow-2xl">
<h3 class="text-xl font-semibold mb-2">Statistics 1</h3>
<p class="text-sm text-gray-300 mb-4">Click below for resources</p>
<button onclick="goToNotes('Statistics1')" class="bg-blue-600 hover:bg-blue-700 text-white px-4 py-2 rounded-lg text-sm font-medium transition">Explore</a>
</div>
<div class="bg-[#0f172a] text-white p-6 rounded-xl shadow-lg font-['Inter'] border border-blue-500/30 transition-transform duration-300 transform hover:-translate-y-2 hover:scale-105 hover:shadow-blue-500/50 hover:shadow-2xl">
<h3 class="text-xl font-semibold mb-2">English 1</h3>
<p class="text-sm text-gray-300 mb-4">Click below for resources</p>
<button onclick="goToNotes('English1')" class="bg-blue-600 hover:bg-blue-700 text-white px-4 py-2 rounded-lg text-sm font-medium transition">Explore</a>
</div>
<div class="bg-[#0f172a] text-white p-6 rounded-xl shadow-lg font-['Inter'] border border-blue-500/30 transition-transform duration-300 transform hover:-translate-y-2 hover:scale-105 hover:shadow-blue-500/50 hover:shadow-2xl">
<h3 class="text-xl font-semibold mb-2">ComputationalThinking</h3>
<p class="text-sm text-gray-300 mb-4">Click below for resources</p>
<button onclick="goToNotes('ComputationalThinking')" class="bg-blue-600 hover:bg-blue-700 text-white px-4 py-2 rounded-lg text-sm font-medium transition">Explore</a>
</div>
<div class="bg-[#0f172a] text-white p-6 rounded-xl shadow-lg font-['Inter'] border border-blue-500/30 transition-transform duration-300 transform hover:-translate-y-2 hover:scale-105 hover:shadow-blue-500/50 hover:shadow-2xl">
<h3 class="text-xl font-semibold mb-2">Mathematics 2</h3>
<p class="text-sm text-gray-300 mb-4">Click below for resources</p>
<button onclick="goToNotes('Mathematics2')" class="bg-blue-600 hover:bg-blue-700 text-white px-4 py-2 rounded-lg text-sm font-medium transition">Explore</a>
</div>
<div class="bg-[#0f172a] text-white p-6 rounded-xl shadow-lg font-['Inter'] border border-blue-500/30 transition-transform duration-300 transform hover:-translate-y-2 hover:scale-105 hover:shadow-blue-500/50 hover:shadow-2xl">
<h3 class="text-xl font-semibold mb-2">Statistics 2</h3>
<p class="text-sm text-gray-300 mb-4">Click below for resources</p>
<button onclick="goToNotes('Statistics2')" class="bg-blue-600 hover:bg-blue-700 text-white px-4 py-2 rounded-lg text-sm font-medium transition">Explore</a>
</div>
<div class="bg-[#0f172a] text-white p-6 rounded-xl shadow-lg font-['Inter'] border border-blue-500/30 transition-transform duration-300 transform hover:-translate-y-2 hover:scale-105 hover:shadow-blue-500/50 hover:shadow-2xl">
<h3 class="text-xl font-semibold mb-2">English 2</h3>
<p class="text-sm text-gray-300 mb-4">Click below for resources</p>
<button onclick="goToNotes('English2')" class="bg-blue-600 hover:bg-blue-700 text-white px-4 py-2 rounded-lg text-sm font-medium transition">Explore</a>
</div>
<div class="bg-[#0f172a] text-white p-6 rounded-xl shadow-lg font-['Inter'] border border-blue-500/30 transition-transform duration-300 transform hover:-translate-y-2 hover:scale-105 hover:shadow-blue-500/50 hover:shadow-2xl">
<h3 class="text-xl font-semibold mb-2">Python</h3>
<p class="text-sm text-gray-300 mb-4">Click below for resources</p>
<button onclick="goToNotes('Python')" class="bg-blue-600 hover:bg-blue-700 text-white px-4 py-2 rounded-lg text-sm font-medium transition">Explore</a>
</div>
</section>
<!-- <script>
function showSubject(subjectId) {
document.querySelectorAll('.subject-section').forEach(div => {
div.classList.add('hidden');
});
document.getElementById(subjectId).classList.remove('hidden');
window.scrollTo({
top: document.getElementById(subjectId).offsetTop - 20,
behavior: 'smooth'
});
}
</script> -->
<script>
function goToNotes(subject) {
localStorage.setItem("selectedSubject", subject);
window.location.href = "notes.html";
}
</script>
</body>
<!-- footer.html -->
<footer class="footer">
<!-- LOGO Section -->
<nav><div class="flex items-center space-x-4">
<div class="icon-3d relative">
<img alt="Logo" src="https://storage.googleapis.com/a1aa/image/9d9826d9-ba7e-4744-b31c-55af136d1872.jpg"
width="40" height="40" />
<div class="shine"></div>
</div>
<div class="leading-tight select-none">
<h1 class="text-white text-lg font-bold tracking-wide">IITM</h1>
<h2 class="text-white text-sm tracking-widest">BSYATRA</h2>
</div>
</div>
</nav>
<div class="footer-socials">
<a href="#"><i class="fab fa-linkedin"></i> LinkedIn</a>
<a href="#"><i class="fab fa-youtube"></i> YouTube</a>
</div>
</div>
<div class="footer-section">
<h3>Quiz Prep</h3>
<ul>
<li><a href="#">Quiz Simulator</a></li>
<li><a href="#">Previous Year Papers</a></li>
</ul>
</div>
<div class="footer-section">
<h3>Resources</h3>
<ul>
<li><a href="#">Lectures</a></li>
<li><a href="#">Notes</a></li>
</ul>
</div>
<div class="footer-section">
<h3>DS Documents</h3>
<ul>
<li><a href="IITM BS Degree Programme - Student Handbook (Updated 08052025) - Student version.html">DS Handbook</a></li>
<li><a href="BS-DS_ May 2025 Grading document (Student).html">DS Grading doc</a></li>
</ul>
</div>
<!-- <div class="footer-section">
<h3>Community</h3>
<ul>
<li><a href="#">Data Science</a></li>
<li><a href="#">Electronic System</a></li>
</ul>
</div> -->
<div class="footer-section">
<h3>Tools</h3>
<ul>
<li><a href="#">Grade Predictor</a></li>
<li><a href="#">Grade Calculator</a></li>
</ul>
</div>
<!-- <div class="footer-section">
<h3>ES Documents</h3>
<ul>
<li><a href="#">ES Handbook</a></li>
<li><a href="#">ES Grading doc</a></li>
</ul>
</div> -->
<div class="footer-contact">
<h3>Contact</h3>
<p>Email: <a href="mailto:founder@bsyatra.in">founder@bsyatra.in</a></p>
</div>
</div>
<div class="footer-bottom">
<div>
© 2025 IITM BS Yatra. All rights reserved.| Built with <span class="text-red-500">❤</span> by IITM BS Students(Arpit Verma)
</div>
</div>
</footer>
<!-- Font Awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" />
</html>