popov.link/_scss/components/_navigation.scss
Valentin Popov ccf34e5c37
Add styles of menu footer
Signed-off-by: Valentin Popov <info@valentineus.link>
2019-03-24 23:20:06 +04:00

136 lines
1.9 KiB
SCSS

.navigation-container {
background: $color-bg;
border-left: 1px solid $color-bg-alt;
border-right: 1px solid $color-bg-alt;
height: 100px;
left: 0;
margin: auto;
max-width: 52em;
padding: 0;
position: fixed;
right: 0;
top: 0;
width: 100%;
}
.navigation {
background: $color-bg;
border-left: 1px solid $color-bg-alt;
border-right: 1px solid $color-bg-alt;
height: 100%;
left: 0;
margin: auto;
max-width: 52em;
padding: 0;
position: fixed;
right: 0;
top: 100px;
transform: scale(.1, 0);
transform-origin: 100% 0%;
transition: none;
width: 100%;
}
.navigation-header {
margin: 30px;
position: fixed;
text-transform: uppercase;
}
.navigation-footer {
bottom: 0;
list-style-type: none;
margin: auto;
max-width: 52em;
padding: 20px;
position: fixed;
text-align: center;
width: 100%;
li {
border-right: 1px solid;
display: inline;
padding: 0 20px;
@media (max-width: 684px) {
padding: 0 10px;
}
}
li:last-child {
border-right: 0;
}
}
.navigation-pills {
height: 100%;
list-style-type: none;
margin: 0;
padding: 0;
text-align: center;
width: 100%;
}
.navigation-item {
padding: 20px;
a {
text-decoration: none;
text-transform: uppercase;
}
}
.toggle-button {
display: none;
&:checked ~ .navigation {
transform: none;
transition: all .1s;
}
&:checked ~ .toggle-label {
span {
opacity: 0;
top: 50%;
}
span:first-child {
opacity: 1;
transform: rotate(405deg);
}
span:last-child {
opacity: 1;
transform: rotate(-405deg);
}
}
}
.toggle-label {
float: right;
height: 20px;
margin: 40px;
position: relative;
width: 15px;
&:hover {
cursor: pointer;
}
span {
background: $color-text;
height: 2px;
position: absolute;
top: 50%;
width: 100%;
&:first-child {
top: 3px;
}
&:last-child {
top: 16px;
}
}
}