mirror of
https://github.com/DevEhChad/chadsreactproject.git
synced 2025-11-08 13:31:35 +00:00
102 lines
1.7 KiB
CSS
102 lines
1.7 KiB
CSS
.navbar {
|
|
width: 100%;
|
|
height: 100px;
|
|
background-color: #121619;
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
|
|
.navbar .leftSide {
|
|
flex: 50%;
|
|
height: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
padding-left: 150px;
|
|
}
|
|
|
|
.navbar .leftSide img {
|
|
width: 70px;
|
|
}
|
|
|
|
.navbar .rightSide {
|
|
flex: 50%;
|
|
height: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.navbar a {
|
|
color: white;
|
|
text-decoration: none;
|
|
margin: 20px;
|
|
}
|
|
|
|
.navbar .rightSide button {
|
|
background-color: transparent;
|
|
border: none;
|
|
color: white;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.navbar .rightSide svg {
|
|
font-size: 40px;
|
|
}
|
|
|
|
.navbar #open {
|
|
padding-left: 0px;
|
|
}
|
|
.navbar #open img {
|
|
display: none;
|
|
}
|
|
|
|
.navbar #close img {
|
|
display: inherit;
|
|
}
|
|
|
|
.navbar #open .hiddenLinks {
|
|
display: inherit;
|
|
margin-left: 30px;
|
|
}
|
|
|
|
.navbar #close .hiddenLinks {
|
|
display: none;
|
|
}
|
|
|
|
.navbar #open a {
|
|
width: 70px;
|
|
margin: 5px;
|
|
}
|
|
@media only screen and (max-width: 900px) {
|
|
.navbar .rightSide a {
|
|
width: 70px;
|
|
}
|
|
.navbar .leftSide {
|
|
padding-left: 50px;
|
|
}
|
|
}
|
|
|
|
@media only screen and (max-width: 600px) {
|
|
.navbar .rightSide a {
|
|
display: none;
|
|
}
|
|
|
|
.navbar .rightSide {
|
|
justify-content: flex-end;
|
|
padding-right: 50px;
|
|
}
|
|
|
|
.navbar .rightSide button {
|
|
display: inherit;
|
|
}
|
|
}
|
|
|
|
@media only screen and (min-width: 600px) {
|
|
.navbar .rightSide button {
|
|
display: none;
|
|
}
|
|
|
|
.hiddenLinks {
|
|
display: none;
|
|
}
|
|
} |