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

Changed nav-bar #64

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
Binary file added .DS_Store
Binary file not shown.
3 changes: 3 additions & 0 deletions about hacktoberfest/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@
<!-- <li> -->
<a href="../index.html" class="logo-left">
<img src="logo.png" id="logo" alt="" />
<div class="log-text">
Google Developer Student Clubs
</div>
</a>
<!-- </li> -->
<!-- <li class="topNav-right"> -->
Expand Down
43 changes: 34 additions & 9 deletions about hacktoberfest/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -55,35 +55,60 @@ ul.topNav li a{
}*/

.nav {
background: #017fb5;
background:rgb(219, 87, 11);;
font-family: 'Montserrat', sans-serif;
text-align: center;
width: 100%;
height: 110px;
padding: 30px;
height: 75px;
padding-left: 30px;
padding-right: 30px;
padding-top: 20px;
margin-right: 20px;
overflow: hidden;
margin-bottom: 1.2rem;
margin-bottom: 0.4rem;
/* align-items: center; */
}

.nav a {
text-decoration: none;
padding-left: 16px;
padding-right: 16px;
margin: 10px;
margin: 5px;
color: white;
float: right;
font-size: 25px;
font-weight: bolder;
font-size: 20px;
}
.nav a:hover{
color: rgba(0, 0, 0, 0.4);
}
.nav a.logo-left {
float: left;
margin-left: 35px;

}

#logo{
margin-left: 33px;
}

.nav .logo-left:hover {
color: rgba(0, 0, 0, 0.4);
}

.nav a.logo-left img {
width: 58px;
height: 35px;
width: 57px;
height: 19px;
display: flex;
flex-direction: column;
/* padding-bottom: 12px; */
}
.nav .log-text{
font-size: 10px;
text-align: center;
font-family: serif;
color: #fff;

}

.row {
display: flex;
Expand Down