Skip to content

Commit

Permalink
Merge pull request #89 from sohamsshah/UI-changes
Browse files Browse the repository at this point in the history
change the Navbar hover effect on Navlinks
  • Loading branch information
AasthaMehtaTech authored Oct 8, 2020
2 parents 2c85e73 + e97fc7d commit 0335f5c
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 5 deletions.
31 changes: 28 additions & 3 deletions client/src/App.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,27 @@
.navbar-links:after{


.navbar-links{
position: relative;
}

.navbar-links:before{
content: "";
position: absolute;
width: 100%;
height: 2px;
bottom: 0;
left: 0;
background-color: #9c20ee;
visibility: hidden;
transform: scaleX(0);
transition: all 0.3s ease-in-out;
}

.navbar-links:hover:before{
visibility: visible;
transform: scaleX(1);
}
/* .navbar-links:after{
position: absolute;
content: '';
left: 0;
Expand All @@ -16,7 +39,7 @@
}
.navbar-links:hover{
color: #EE82EE;
}
} */
.back-image{
background-image: url(./img/home.svg);
height: 100vh;
Expand All @@ -29,6 +52,7 @@
color:#707070;
letter-spacing: 2px;
font-size: 4vh;

padding-bottom: 2vh;

margin-top: 10vh;
Expand Down Expand Up @@ -68,10 +92,11 @@
.titleTeam{
color:#707070;
letter-spacing: 2px;
font-size: 4vh;
font-size: 5vh;
padding-bottom: 2vh;
text-align: center;
margin-top: 5vh;
font-weight: bolder;

}
.paraTeam{
Expand Down
5 changes: 3 additions & 2 deletions client/src/components/pages/Team.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,9 @@ const Team = () => {
<Navbar />
<ScrollTopButton />
<Container className="contentTeam">
<h1 className="titleTeam">About Us</h1>
<p className="paraTeam">Customizable Portfolio is a website that aims to help people make a fully functional static website in a short amount of time without relying on web developers and that too with very little prior programming experience.
<h1 className="titleTeam"> <b> About Us</b></h1>
<p className="paraTeam">
Customizable Portfolio is a website that aims to help people make a fully functional static website in a short amount of time without relying on web developers and that too with very little prior programming experience.

This project is part of PSoC (Program Summer of Code) organized by UIET Chandigarh. It is a 2 month long open source competition to help people get started with open source with the help of experienced mentors.
</p>
Expand Down

0 comments on commit 0335f5c

Please sign in to comment.