134 lines
2.3 KiB
SCSS
134 lines
2.3 KiB
SCSS
$dark-blue: #002554;
|
|
$medium-blue: #004990;
|
|
$light-blue: #007cbe;
|
|
$hover-blue: #25b3ff;
|
|
$black: #000;
|
|
$gray: #bdbdbd;
|
|
$white: #fff;
|
|
|
|
.navbar {
|
|
width: 300px;
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
border-right: $gray solid 1px;
|
|
}
|
|
|
|
.navbar-top {
|
|
width: 90%;
|
|
height: 100%;
|
|
display: flex;
|
|
align-items: left;
|
|
justify-content: flex-start;
|
|
flex-direction: column;
|
|
background-color: transparent;
|
|
}
|
|
|
|
.navbar-top-hamburger {
|
|
width: 45px;
|
|
height: 45px;
|
|
font-size: 40px;
|
|
font-family: "Gotham Medium";
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: left;
|
|
padding-left: 4px;
|
|
text-align: center;
|
|
margin-top: 20px;
|
|
margin-bottom: 15px;
|
|
color: $light-blue;
|
|
background-color: transparent;
|
|
}
|
|
|
|
.navbar-top h1 {
|
|
width: auto;
|
|
height: auto;
|
|
font-size: 32px;
|
|
font-family: "Gotham Medium";
|
|
color: $dark-blue;
|
|
background-color: transparent;
|
|
margin-bottom: 10px;
|
|
margin-left: 3px;
|
|
transition: all 0.3s ease-in-out;
|
|
}
|
|
|
|
.navbar-top h1:hover {
|
|
color: $light-blue;
|
|
}
|
|
|
|
.navbar-search {
|
|
width: 100%;
|
|
height: auto;
|
|
display: flex;
|
|
border-radius: 15px;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
.navbar-search input {
|
|
width: 80%;
|
|
height: auto;
|
|
padding: 10px;
|
|
border-radius: 15px 0 0 15px;
|
|
background-color: $white;
|
|
outline: none;
|
|
box-shadow: none;
|
|
font-size: 16px;
|
|
font-family: "Gotham Medium";
|
|
color: $dark-blue;
|
|
border: solid $light-blue 2px;
|
|
border-right: none;
|
|
}
|
|
|
|
.navbar-search button {
|
|
width: 20%;
|
|
height: auto;
|
|
border-radius: 0 15px 15px 0;
|
|
background-color: $white;
|
|
outline: none;
|
|
box-shadow: none;
|
|
font-size: 16px;
|
|
font-family: "Gotham Medium";
|
|
border: solid $light-blue 2px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.navbar-list {
|
|
margin-top: 20px;
|
|
width: 100%;
|
|
height: auto;
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.navbar-list-item {
|
|
width: 100%;
|
|
height: 50px;
|
|
margin: 0 0 3px;
|
|
background-color: $white;
|
|
border-radius: 15px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: left;
|
|
text-decoration: none;
|
|
transition: all 0.3s ease-in-out;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.navbar-list-item:hover {
|
|
background-color: $hover-blue;
|
|
}
|
|
|
|
.navbar-list-item span {
|
|
background-color: transparent;
|
|
width: auto;
|
|
height: auto;
|
|
font-size: 18px;
|
|
font-family: "Gotham Medium";
|
|
color: $dark-blue;
|
|
margin-left: 10px;
|
|
}
|