Files
web2.0-frontend/src/components/Navigation/Navigation.scss
T
2018-11-17 17:32:09 +02:00

74 lines
1.2 KiB
SCSS

@import "../../assets/scss/globals";
$border-width: 2px;
.navigation,
.navigation-mobile-menu {
a,
a:-webkit-any-link {
fill: $light-blue;
color: $light-blue;
}
}
.navigation {
width: 100%;
display: flex;
flex-flow: row nowrap;
justify-content: space-between;
align-items: center;
font-size: 12px;
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: $white;
color: $white;
}
}
& .navigation-mobile {
display: flex;
margin: 0 1rem;
cursor: pointer;
@media screen and (min-width: 1200px) {
display: none;
}
@media screen and (max-width: 600px - 1px) {
margin-left: 3rem;
}
svg {
width: 26px;
height: 26px;
fill: $white;
color: $white;
}
}
}
.navigation-mobile-menu {
padding: 1rem 2rem;
}