81 lines
1.3 KiB
SCSS
81 lines
1.3 KiB
SCSS
@import "../../assets/scss/globals";
|
|
|
|
|
|
$border-width: 2px;
|
|
|
|
.navigation,
|
|
.navigation-mobile-menu {
|
|
a,
|
|
a:-webkit-any-link {
|
|
text-decoration: none;
|
|
fill: color(light-blue);
|
|
color: color(light-blue);
|
|
}
|
|
}
|
|
|
|
.navigation {
|
|
width: 100%;
|
|
display: flex;
|
|
flex-flow: row nowrap;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
font-size: 14px;
|
|
color: color(light-blue);
|
|
margin-left: 5rem;
|
|
|
|
@media screen and (min-width: 600px) and (max-width: 1200px - 1px) {
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
@media screen and (max-width: 600px - 1px) {
|
|
justify-content: center;
|
|
margin-left: 0;
|
|
}
|
|
|
|
.navbar-dropdown-container {
|
|
@media screen and (max-width: 1200px - 1px) {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
& .navigation-some {
|
|
display: flex;
|
|
flex-flow: row nowrap;
|
|
|
|
a,
|
|
a:-webkit-any-link {
|
|
fill: color(white1);
|
|
color: color(white1);
|
|
}
|
|
}
|
|
|
|
& .navigation-mobile {
|
|
display: flex;
|
|
margin: 0 1rem;
|
|
cursor: pointer;
|
|
|
|
span {
|
|
display: flex;
|
|
}
|
|
|
|
@media screen and (min-width: 1200px) {
|
|
display: none;
|
|
}
|
|
|
|
@media screen and (max-width: 600px - 1px) {
|
|
margin-left: 3rem;
|
|
}
|
|
|
|
svg {
|
|
width: 26px;
|
|
height: 26px;
|
|
fill: color(white1);
|
|
color: color(white1);
|
|
}
|
|
}
|
|
}
|
|
|
|
.navigation-mobile-menu {
|
|
padding: 1rem 2rem;
|
|
}
|