0
mirror of https://github.com/valentineus/popov.link.git synced 2025-07-04 08:30:27 +03:00

Add a header in the navbar

Signed-off-by: Valentin Popov <info@valentineus.link>
This commit is contained in:
2019-03-24 22:10:30 +04:00
parent 9f1e42d525
commit 949f289d3c
2 changed files with 27 additions and 20 deletions

View File

@ -13,6 +13,30 @@
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;
}
.toggle-button {
display: none;
@ -42,9 +66,8 @@
.toggle-label {
float: right;
height: 20px;
margin: 40px;
position: relative;
right: 40px;
top: 40px;
width: 15px;
&:hover {
@ -67,21 +90,3 @@
}
}
}
.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%;
}