Skip to content

Commit a2eb0b3

Browse files
committed
Fixed Background and removed linkin from social
1 parent b46b545 commit a2eb0b3

File tree

2 files changed

+25
-10
lines changed

2 files changed

+25
-10
lines changed

_config.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,6 @@ social:
3737
url: "mailto:aviral.verma@niser.ac.in"
3838
- title: "GitHub"
3939
url: "https://github.com/avi-xd"
40-
- title: "LinkedIn"
41-
url: "#"
4240

4341
# Build settings
4442
destination: _site

css/main.scss

Lines changed: 25 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,14 @@
99

1010
html {
1111
scroll-behavior: smooth;
12+
background-color: #000000;
13+
height: 100%;
1214
}
1315

1416
body {
15-
background-color: #0a0a0a !important;
16-
color: #e8e8e8 !important;
17+
// background-color: #0a0a0a !important;
18+
background-color: #000000 !important;
19+
color: #ffffff !important;
1720
font-family: 'Georgia', 'Times New Roman', Times, serif !important;
1821
font-size: 20px !important;
1922
line-height: 1.7 !important;
@@ -22,6 +25,7 @@ body {
2225
-moz-osx-font-smoothing: grayscale !important;
2326
margin: 0;
2427
padding: 0;
28+
min-height: 100vh;
2529
}
2630

2731
/* Fixed Navigation */
@@ -30,8 +34,7 @@ body {
3034
top: 0;
3135
left: 0;
3236
right: 0;
33-
background: rgba(0, 0, 0, 0.95);
34-
backdrop-filter: blur(10px);
37+
background: #000000;
3538
border-bottom: 1px solid #333333;
3639
z-index: 1000;
3740
padding: 1rem 0;
@@ -509,7 +512,7 @@ body {
509512
left: 0;
510513
right: 0;
511514
bottom: 0;
512-
background: rgba(0, 0, 0, 0.95);
515+
background: #0a0a0a;
513516
color: #ffffff;
514517
padding: 1.5rem;
515518
transition: all 0.3s ease;
@@ -669,13 +672,22 @@ body {
669672
}
670673

671674
/* Project Detail Page Styles */
675+
/* Force consistent black background for all project page elements */
676+
.project-nav,
677+
.project-main,
678+
.project-article,
679+
.project-header,
680+
.project-content,
681+
.project-footer {
682+
background-color: #0a0a0a !important;
683+
}
684+
672685
.project-nav {
673686
position: fixed;
674687
top: 0;
675688
left: 0;
676689
right: 0;
677-
background: rgba(0, 0, 0, 0.95);
678-
backdrop-filter: blur(10px);
690+
background: #0a0a0a;
679691
border-bottom: 1px solid #333333;
680692
z-index: 1000;
681693
padding: 1rem 0;
@@ -708,12 +720,15 @@ body {
708720
margin-top: 80px;
709721
min-height: 100vh;
710722
padding: 2rem 0;
723+
background-color: #0a0a0a;
724+
width: 100%;
711725
}
712726

713727
.project-article {
714728
max-width: 45rem;
715729
margin: 0 auto;
716730
padding: 0 2rem;
731+
background-color: #0a0a0a;
717732
}
718733

719734
.project-header {
@@ -758,6 +773,8 @@ body {
758773
line-height: 1.7;
759774
color: #cccccc;
760775
margin-bottom: 3rem;
776+
background-color: #0a0a0a;
777+
width: 100%;
761778
}
762779

763780
.project-content h2 {
@@ -887,7 +904,7 @@ body {
887904
}
888905

889906
.project-footer {
890-
background: #111111;
907+
background: #0a0a0a;
891908
padding: 2rem 0;
892909
text-align: center;
893910
border-top: 1px solid #333333;

0 commit comments

Comments
 (0)