spaCy/website/assets/css/_components/_sidebar.sass

41 lines
922 B
Sass
Raw Normal View History

2016-10-31 21:04:15 +03:00
//- 💫 CSS > COMPONENTS > SIDEBAR
//- Sidebar container
2016-10-03 21:19:13 +03:00
.c-sidebar
2016-10-31 21:04:15 +03:00
background: $color-subtle-light
overflow-y: auto
2016-10-03 21:19:13 +03:00
@include breakpoint(min, md)
2016-10-31 21:04:15 +03:00
@include position(fixed, top, left, 0, 0)
@include size($sidebar-width, 100vh)
2016-10-03 21:19:13 +03:00
flex: 0 0 $sidebar-width
2016-10-31 21:04:15 +03:00
padding: calc(#{$nav-height} + 1.5rem) 2rem 2rem
z-index: 10
border-right: 1px solid $color-subtle
2016-10-03 21:19:13 +03:00
@include breakpoint(max, sm)
flex: 100%
width: 100%
2016-10-31 21:04:15 +03:00
margin-top: $nav-height
display: flex
flex-flow: row wrap
width: 100%
2016-10-03 21:19:13 +03:00
2016-10-31 21:04:15 +03:00
//- Sidebar section
2016-10-03 21:19:13 +03:00
2016-10-31 21:04:15 +03:00
.c-sidebar__section
@include breakpoint(max, sm)
flex: 1 1 0
padding: 1.25rem
border-bottom: 1px solid $color-subtle
margin: 0
2016-10-03 21:19:13 +03:00
2016-10-31 21:04:15 +03:00
&:not(:last-child)
border-right: 1px solid $color-subtle
2016-10-03 21:19:13 +03:00
.is-active
font-weight: bold
color: $color-theme