Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improved navbar #99

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
58 changes: 33 additions & 25 deletions Register.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ body{
header{
background-color: white;
color: white;
height: 18%;
height: 5%;
width: 100%;
z-index: 10;
position: fixed;
Expand All @@ -26,34 +26,42 @@ header{
width: 70%;
}

li a{
text-decoration: none;
.header-list ul{
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: white;
}

.header-list ul li a {
display: block;
text-decoration: none;
text-transform: uppercase;
color: black;
font-size: 20px;
text-align: center;
font-family: 'Raleway', sans-serif;
letter-spacing: 2px;
font-weight: 600;
margin-bottom: 10px;
padding: 20px;
transition: all ease 0.5s;
}

li{
float: right;
padding-left: 30px;
padding-top: 30px;
list-style: none;
padding-right: 40px;
font-size: 24px;
}

header ul li a:hover{
background-color:rgba(220,20,60);
color: white;
}
font-size: 25px;
padding: 14px 16px;
text-decoration: none;
}

.header-list ul li {
float: right;
}

.header-list ul li::after {
content: '';
height: 2px;
background:red;
display: block;
margin: auto;
transition: 0.5s;
width: 0%;
}

.header-list ul li:hover::after {
width: 100%;
}

*{
margin: 0;
Expand Down
57 changes: 33 additions & 24 deletions donate.css
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
header {
background-color: white;
color: white;
height: 18%;
height: 5%;
width: 100%;
z-index: 10;
position: fixed;
Expand All @@ -35,38 +35,47 @@ header {
width: 70%;
}

.header-list ul li a {
text-decoration: none;
.header-list ul{
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: white;
}

.header-list ul li a {
display: block;
text-decoration: none;
text-transform: uppercase;
color: black;
font-size: 20px;
text-align: center;
font-family: 'Raleway', sans-serif;
letter-spacing: 2px;
font-weight: 600;
margin-bottom: 10px;
padding: 20px;
transition: all ease 0.5s;
}

.header-list ul li {
float: right;
padding-left: 30px;
padding-top: 30px;
list-style: none;
padding-right: 40px;
}
font-size: 25px;
padding: 14px 16px;
text-decoration: none;
}

.header-list ul li {
float: right;
}

.header-list ul li::after {
content: '';
height: 2px;
background:red;
display: block;
margin: auto;
transition: 0.5s;
width: 0%;
}

.header-list ul li:hover::after {
width: 100%;
}

.des{
font-size: 24px;
}

header ul li a:hover {
background-color: rgba(220, 20, 60);
color: white;
}

main {
display: flex;
justify-content: center;
Expand Down
58 changes: 33 additions & 25 deletions help.css
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
header{
background-color: white;
color: white;
height: 18%;
height: 5%;
width: 100%;
z-index: 10;
position: fixed;
Expand All @@ -37,34 +37,42 @@ header{
width: 70%;
}

.header-list ul li a {
text-decoration: none;
.header-list ul{
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: white;
}

.header-list ul li a {
display: block;
text-decoration: none;
text-transform: uppercase;
color: black;
font-size: 20px;
text-align: center;
font-family: 'Raleway', sans-serif;
letter-spacing: 2px;
font-weight: 600;
margin-bottom: 10px;
padding: 20px;
transition: all ease 0.5s;
}

.header-list ul li {
float: right;
padding-left: 30px;
padding-top: 30px;
list-style: none;
padding-right: 40px;
}

header ul li a:hover{
background-color:rgba(220,20,60);
color: white;
}

font-size: 25px;
padding: 14px 16px;
text-decoration: none;
}

.header-list ul li {
float: right;
}

.header-list ul li::after {
content: '';
height: 2px;
background:red;
display: block;
margin: auto;
transition: 0.5s;
width: 0%;
}

.header-list ul li:hover::after {
width: 100%;
}

.container{
position: relative;
Expand Down