hubl/src/scss/_menu.scss

57 lines
1.1 KiB
SCSS
Raw Normal View History

#navbar {
z-index: 9999;
2018-04-19 16:24:42 +00:00
#menu-title {
font-family: bebas;
color: $hd-color;
2018-04-20 06:58:30 +00:00
font-size: $menu-font-size;
2018-03-18 15:29:31 +00:00
}
2018-03-11 23:42:46 +00:00
#navbar-router {
color: $twitter-color;
2018-03-18 15:04:36 +00:00
ldp-route {
cursor: pointer;
font-size: 18px;
}
ldp-route:hover {
text-decoration: underline;
}
ldp-route[active] {
border-bottom: 2px solid $hd-color;
color: $hd-color;
2018-03-11 23:42:46 +00:00
}
2018-03-18 15:04:36 +00:00
}
2018-03-11 23:42:46 +00:00
}
2018-04-20 06:58:30 +00:00
.vertical-menu {
position: fixed;
z-index: 9998;
top: 0px;
bottom: 0px;
right: 0px;
margin: auto;
background-color: white;
width: $vertical-menu-width;
padding-top: $menu-height;
display: flex;
flex-direction: column;
color: $twitter-color;
font-size: $menu-font-size;
ldp-route {
text-align: center;
padding: 6px 0px;
&[active] {
border-left: 2px solid $hd-color;
color: $hd-color;
}
}
}
.view-with-vertical-menu {
padding-right: $vertical-menu-width;
}