Skip to content

Commit 63d8b90

Browse files
authored
Merge pull request #38 from NepTechTribe/shreesha
Navbar and about section Updated
2 parents 09d4052 + f530f57 commit 63d8b90

File tree

8 files changed

+33
-23
lines changed

8 files changed

+33
-23
lines changed

src/Components/landingpage/about.jsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ function AboutUs() {
3535

3636
return (
3737
<>
38+
<div style={{backgroundColor:'black'}}>
3839
<Container className="About">
3940
<Title title={"About NEPTECH Tribe"} head={"Who Are We "} />
4041
<Row className="About-row1">
@@ -69,6 +70,7 @@ function AboutUs() {
6970
))}
7071
</Row>
7172
</Container>
73+
</div>
7274
</>
7375
);
7476
}

src/Styles/App.css

Lines changed: 15 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,15 @@
88
top: 0;
99
left: 0;
1010
right: 0;
11-
background-color: #fff;
11+
background-color: black;
12+
color: white;
1213
z-index: 100;
1314
font-family: "Poppins", sans-serif;
1415
transition: 0.5s;
1516
}
1617
.Navbar.sticky {
17-
background: #212ea0;
18-
color: #fff;
18+
background: white;
19+
color: black;
1920
top: 0;
2021
}
2122
.Navbar-container {
@@ -89,13 +90,13 @@
8990
font-family: "Poppins", sans-serif;
9091
font-size: 1rem;
9192
font-weight: 500;
92-
color: white;
93-
background-color: #000080;
93+
color: black;
94+
background-color: white;
9495
border: none;
9596
}
9697
.herobutton:hover, .Announcement-row2__button:hover, .eventbutton:hover {
97-
color: #000080;
98-
background-color: white;
98+
color: white;
99+
background-color: black;
99100
}
100101

101102
.eventbutton {
@@ -122,6 +123,7 @@
122123
text-align: center;
123124
font-size: 1rem;
124125
font-family: "Poppins", sans-serif;
126+
color: white;
125127
}
126128

127129
.Title {
@@ -131,12 +133,12 @@
131133
.Title-title {
132134
font-size: 1.25rem;
133135
font-family: "Lobster Two", sans-serif;
134-
color: #000080;
136+
color: grey;
135137
text-transform: uppercase;
136138
}
137139
.Title-head {
138140
font-size: 2.5rem;
139-
color: black;
141+
color: white;
140142
font-family: "Poppins", sans-serif;
141143
font-weight: 500;
142144
text-transform: capitalize;
@@ -167,19 +169,21 @@
167169
.About-MissionVision__head, .Announcement-individual__title, .About-values {
168170
font-size: 1.25rem;
169171
font-weight: 500;
170-
color: #000080;
172+
color: gray;
171173
}
172174
.About-MissionVision__description, .Announcement-individual__venue {
173175
font-size: 15px;
174176
font-weight: 300;
177+
color: white;
175178
}
176179
.About-values {
177180
text-align: center;
178-
color: #000080;
181+
color: gray;
179182
}
180183
.About-values__title, .Announcement-individual__date {
181184
font-size: 1rem;
182185
font-weight: 400;
186+
color: white;
183187
}
184188

185189
@media screen and (max-width: 993px) {

src/Styles/App.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Styles/LandingPage/_About.scss

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,20 +25,22 @@
2525
&__head{
2626
font-size: 1.25rem;
2727
font-weight: 500;
28-
color: #000080;
28+
color: gray;
2929
}
3030
&__description{
3131
font-size: 15px;
3232
font-weight: 300;
33+
color: white
3334
}
3435
}
3536
&-values{
3637
@extend .About-MissionVision__head;
3738
text-align: center;
38-
color: #000080;
39+
color: gray;
3940
&__title{
4041
font-size: 1rem;
4142
font-weight: 400;
43+
color: white;
4244
}
4345
}
4446
}

src/Styles/LandingPage/_Button.scss

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@
1010
font-family: $font;
1111
font-size: 1rem;
1212
font-weight: 500;
13-
color: white;
14-
background-color: #000080;
13+
color: black;
14+
background-color: white;
1515
border: none;
1616
&:hover {
17-
color: #000080;
18-
background-color: white;
17+
color: white;
18+
background-color: black;
1919
}
2020
}
2121

src/Styles/LandingPage/_Head.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
text-align: center;
1111
font-size: 1rem;
1212
font-family: $font;
13+
color: white;
1314
}
1415
}
1516

src/Styles/LandingPage/_Navbar.scss

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,14 @@
44
top: 0;
55
left: 0;
66
right: 0;
7-
background-color: #fff;
7+
background-color: black;
8+
color: white;
89
z-index: 100;
910
font-family: $font;
1011
transition: 0.5s;
1112
&.sticky {
12-
background: #212ea0;
13-
color: #fff;
13+
background: white;
14+
color: black;
1415
top: 0;
1516
}
1617
&-container {

src/Styles/LandingPage/_Title.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44
&-title{
55
font-size: 1.25rem;
66
font-family: $lobster;
7-
color:#000080 ;
7+
color:grey;
88
text-transform: uppercase;
99
}
1010
&-head{
1111
font-size: 2.5rem;
12-
color: black;
12+
color: white;
1313
font-family: $font;
1414
font-weight: 500;
1515
text-transform: capitalize;

0 commit comments

Comments
 (0)