-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
715 lines (601 loc) · 11.8 KB
/
Copy pathstyle.css
File metadata and controls
715 lines (601 loc) · 11.8 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
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
/* General Styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
scroll-behavior: smooth;
}
body {
font-family: 'Arial', sans-serif;
background-color: #0a0a0a;
color: #c7e3ff;
text-align: center;
padding-top: 80px;
}
/* Header */
header {
position: fixed;
width: 100%;
top: 0;
left: 0;
height: 70px;
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px 50px;
background-color: rgba(10, 10, 10, 0.9);
z-index: 1000;
}
.logo {
font-size: 24px;
font-weight: bold;
color: #a0c4ff;
}
nav ul {
list-style: none;
display: flex;
}
nav ul li {
margin-left: 20px;
}
nav ul li a {
text-decoration: none;
color: #c7e3ff;
font-size: 18px;
transition: color 0.3s ease;
padding: 10px;
}
nav ul li a:hover {
color: #a0c4ff;
}
/* Hero Section */
.hero {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
background: linear-gradient(to bottom, #0a0a0a, #1b1e2b);
color: white;
padding: 0 20px;
}
.hero h1 {
font-size: 50px;
margin-bottom: 10px;
}
.hero h1 span {
color: #a0c4ff;
}
.hero p {
font-size: 20px;
margin-bottom: 20px;
}
.btn {
display: inline-block;
padding: 12px 24px;
color: #0a0a0a;
background-color: #a0c4ff;
text-decoration: none;
font-size: 18px;
border-radius: 30px;
transition: 0.3s;
margin-top: 10px;
}
.btn:hover {
background-color: #c7e3ff;
}
/* About Section - More Space for Text */
.about-container {
display: flex;
align-items: center;
justify-content: flex-start; /* Align everything to the left */
gap: 100px; /* More spacing between text and image */
padding: 100px 10%;
width: 100%;
}
/* Expanded Image Section (Now Smaller) */
.about-image {
flex: 1; /* Slightly smaller than before */
display: flex;
justify-content: flex-start;
}
.about-image img {
width: 320px; /* Slightly smaller for better balance */
height: 500px;
border-radius: 10px;
object-fit: cover;
box-shadow: 0 0 25px rgba(160, 196, 255, 0.6);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.about-image img:hover {
transform: scale(1.05);
box-shadow: 0 0 30px rgba(160, 196, 255, 0.9);
}
/* Expanded Text Section (Now Much Wider) */
.about-text {
flex: 2.5; /* Now wider than before */
text-align: left;
max-width: 950px; /* More text space */
}
.about-text h2 {
font-size: 42px;
color: #a0c4ff;
margin-bottom: 15px;
}
.about-text p {
font-size: 22px;
line-height: 1.8;
color: white;
margin-bottom: 20px;
}
/* Highlighted Google Form Link */
.highlight-link {
color: #a0c4ff;
font-weight: bold;
text-decoration: none;
transition: color 0.3s ease;
}
.highlight-link:hover {
color: #c7e3ff;
text-decoration: underline;
}
.btn {
display: inline-block;
padding: 14px 28px;
color: #0a0a0a;
background-color: #a0c4ff;
text-decoration: none;
font-size: 20px;
border-radius: 30px;
transition: 0.3s;
margin-top: 15px;
}
.btn:hover {
background-color: #c7e3ff;
}
/* Responsive for Mobile */
@media (max-width: 900px) {
.about-container {
flex-direction: column;
text-align: center;
padding: 80px 5%;
}
.about-text {
text-align: center;
max-width: 100%;
}
.about-image {
justify-content: center;
}
.about-image img {
width: 240px;
height: 240px;
}
}
/* Featured Project Section */
#projects {
text-align: center;
padding: 100px 50px;
font-size: 33px;
gap: 100px; /* More spacing between text and image */
color: #a0c4ff;
}
.projects h2 {
color: #a0c4ff;
font-size: 100px;
margin-bottom: 15px;
text-align: center;
}
.featured-title {
text-align: center;
width: 100%;
}
.project-spotlight {
display: flex;
flex-direction: row;
align-items: center;
justify-content: flex-start;
max-width: 900px;
margin: 0 auto;
background: #1b1e2b;
padding: 20px;
border-radius: 10px;
box-shadow: 0 0 10px rgba(160, 196, 255, 0.3);
text-align: left;
}
.project-image img {
width: 300px;
height: auto;
border-radius: 10px;
object-fit: cover;
box-shadow: 0 0 15px rgba(160, 196, 255, 0.6);
}
.project-details {
max-width: 50%;
padding-left: 20px;
text-align: left;
}
.project-details h3 {
color: #a0c4ff;
font-size: 24px;
margin-bottom: 10px;
}
.project-details p {
font-size: 16px;
color: #c7e3ff;
margin-bottom: 15px;
}
.button-container {
display: flex;
gap: 15px;
justify-content: flex-start;
margin-top: 10px;
}
.btn {
display: inline-block;
padding: 12px 24px;
color: #0a0a0a;
background-color: #a0c4ff;
text-decoration: none;
font-size: 18px;
border-radius: 30px;
transition: 0.3s;
}
.btn:hover {
background-color: #c7e3ff;
}
/* Responsive Design */
@media (max-width: 768px) {
.project-spotlight {
flex-direction: column;
text-align: left;
align-items: flex-start;
}
.project-image img {
width: 100%;
max-width: 300px;
}
.project-details {
max-width: 100%;
padding-left: 0;
text-align: left;
}
.button-container {
flex-direction: column;
gap: 10px;
align-items: flex-start;
}
}
/* Works Section */
#works {
display: flex;
justify-content: center;
gap: 30px;
flex-wrap: wrap;
padding: 50px 5%;
}
/* Work Cards */
.work-card {
background: #1b1e2b; /* Muted pastel blue */
border-radius: 10px;
padding: 20px;
max-width: 400px;
text-align: left;
color: #c7e3ff; /* Soft pastel blue */
box-shadow: 0 0 10px rgba(160, 196, 255, 0.3);
transition: transform 0.3s ease;
}
.work-card:hover {
transform: scale(1.05);
}
/* Work Images */
.work-image img {
width: 100%;
max-height: 300px; /* Adjust this value to your preferred height */
object-fit: cover; /* Ensures the image maintains aspect ratio and crops excess */
border-radius: 10px;
box-shadow: 0 0 10px rgba(160, 196, 255, 0.6); /* Soft pastel blue */
}
/* Tags */
.tags {
display: flex;
gap: 10px;
margin: 10px 0;
}
/* Different pastel colors for tags */
.tag {
padding: 5px 10px;
border-radius: 5px;
font-size: 12px;
font-weight: bold;
color: #1b1e2b; /* Dark navy for contrast */
}
/* Assigning different pastel blue shades to tags */
.tag:nth-child(1) { background: #a0c4ff; } /* Soft pastel sky blue */
.tag:nth-child(2) { background: #bde0fe; } /* Light pastel blue */
.tag:nth-child(3) { background: #d7e3fc; } /* Pale blue */
.tag:nth-child(4) { background: #90caf9; } /* Muted pastel blue */
.tag:nth-child(5) { background: #82b1ff; } /* Soft pastel indigo */
/* Footer */
footer {
text-align: center;
padding: 20px;
background: #2d2d2d; /* Muted pastel black */
color: #c7e3ff; /* Soft pastel blue */
}
/* Technical Proficiencies Section */
#technical-proficiencies {
text-align: center;
padding: 50px 20px;
}
.tech-icons {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 20px;
}
.tech-icons img {
width: 50px;
height: 50px;
transition: transform 0.3s ease;
}
.tech-icons img:hover {
transform: scale(1.2);
}
@media (max-width: 768px) {
.tech-icons {
font-size: 30px;
gap: 15px;
}
}
/* General Styles */
/* IDE Container */
.ide-container {
width: 80%;
max-width: 900px;
margin: auto;
background: #2b2b2b;
padding: 20px;
border-radius: 10px;
box-shadow: 0 0 10px rgba(160, 196, 255, 0.3);
text-align: left;
}
h2 {
color: #a0c4ff;
}
/* Code Editor */
.CodeMirror {
border-radius: 5px;
border: 1px solid #444;
background: #282c34;
color: #c7e3ff;
font-size: 14px;
height: auto;
min-height: 250px;
}
/* Run Button */
#run-btn {
background: #a0c4ff;
color: #0a0a0a;
border: none;
padding: 10px 20px;
font-size: 16px;
border-radius: 5px;
cursor: pointer;
transition: 0.3s;
margin-top: 10px;
}
#run-btn:hover {
background: #c7e3ff;
}
/* Output Container */
#output-container {
margin-top: 20px;
background: #1b1e2b;
padding: 15px;
border-radius: 10px;
box-shadow: 0 0 10px rgba(160, 196, 255, 0.3);
}
#output-container h3 {
color: #a0c4ff;
}
/* Output Frame */
#output-frame {
width: 100%;
height: 400px;
border: none;
background: #0a0a0a;
border-radius: 5px;
}
/* Responsive Design */
@media (max-width: 768px) {
.ide-container {
width: 95%;
padding: 15px;
}
#output-frame {
height: 300px;
}
}
/* Contact Section */
#contact {
background: #1b1e2b;
padding: 80px 20px;
}
/* Cartoon Animal Wandering */
#animatedAnimal {
position: absolute;
width: 50px;
height: auto;
pointer-events: auto;
cursor: pointer;
transition: top 1s linear, left 1s linear;
}
/* Glowing Effect */
#animatedAnimal img {
width: 100px; /* Adjust size */
height: auto;
filter: drop-shadow(0 0 10px #a0c4ff);
display: block;
}
/* Footer */
footer {
background: #0a0a0a;
padding: 20px;
color: #c7e3ff;
}
/* Responsive Design */
@media (max-width: 768px) {
header {
flex-direction: column;
height: auto;
padding: 10px;
}
nav ul {
flex-direction: column;
text-align: center;
padding-top: 10px;
}
nav ul li {
margin: 10px 0;
}
.hero h1 {
font-size: 40px;
}
.project-grid {
grid-template-columns: 1fr; /* Stack projects on smaller screens */
}
.project {
max-width: 90%;
}
}
/* Thoughts Page Styling */
.thoughts-container {
width: 100%;
padding: 50px 5%;
text-align: left;
}
/* Add Space Below Header */
.thoughts-container h2 {
margin-bottom: 20px; /* Space between title and description */
}
.thoughts-container p {
margin-bottom: 40px; /* Space between description and articles */
}
/* Thought List with Scroll */
.scrollable-thoughts {
max-height: 500px; /* Set height limit for scrolling */
overflow-y: auto;
padding-right: 10px;
}
/* Scrollbar Customization */
.scrollable-thoughts::-webkit-scrollbar {
width: 8px;
}
.scrollable-thoughts::-webkit-scrollbar-thumb {
background: #a0c4ff;
border-radius: 10px;
}
.scrollable-thoughts::-webkit-scrollbar-track {
background: #1b1e2b;
}
/* Clickable Thought Boxes */
.thought {
display: block;
padding: 20px;
border-left: 5px solid #a0c4ff;
margin-bottom: 15px;
background-color: #1b1e2b;
transition: transform 0.3s ease, background 0.3s ease;
text-decoration: none;
color: inherit;
width: 100%;
}
.thought:hover {
transform: scale(1.02);
background-color: #2b3040;
}
/* Thought Title */
.thought h3 {
color: #a0c4ff;
margin-bottom: 5px;
transition: color 0.3s ease;
}
.thought:hover h3 {
color: #c7e3ff;
}
/* Author Styling */
.thought-author {
font-size: 16px;
color: #c7e3ff;
font-style: italic;
margin-bottom: 5px;
}
/* Thought Date */
.thought-date {
font-size: 14px;
color: #c7e3ff;
margin-bottom: 10px;
font-style: italic;
}
/* Back to Thoughts Button */
.btn {
display: inline-block;
padding: 12px 24px;
color: #0a0a0a;
background-color: #a0c4ff;
text-decoration: none;
font-size: 18px;
border-radius: 30px;
transition: 0.3s;
margin-top: 15px;
}
.btn:hover {
background-color: #c7e3ff;
}
/* Article Content - Full Width */
.article-content {
max-width: 100%;
padding: 80px 10%;
text-align: left;
}
/* Title and Date */
.article-title {
font-size: 36px;
font-weight: bold;
margin-bottom: 10px;
}
.article-date {
font-size: 16px;
color: #c7e3ff;
margin-bottom: 20px;
}
/* Paragraph Formatting */
.article-content p {
font-size: 20px;
line-height: 1.8;
margin-bottom: 20px;
word-wrap: break-word; /* Ensures text wraps naturally */
white-space: normal;
}
/* Back to Thoughts Button */
.btn {
display: inline-block;
padding: 12px 24px;
color: #0a0a0a;
background-color: #a0c4ff;
text-decoration: none;
font-size: 18px;
border-radius: 30px;
transition: 0.3s;
margin-top: 15px;
}
.btn:hover {
background-color: #c7e3ff;
}
/* Responsive Design */
@media (max-width: 900px) {
.article-content {
padding: 50px 5%;
}
}