89 lines
1.6 KiB
SCSS
89 lines
1.6 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-list {
|
|
margin-top: 10px;
|
|
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 span {
|
|
background-color: transparent;
|
|
width: auto;
|
|
height: auto;
|
|
font-size: 18px;
|
|
font-family: "Gotham Medium";
|
|
color: $dark-blue;
|
|
margin-left: 10px;
|
|
}
|