2016-03-16 05:49:42 +00:00
|
|
|
@import '../constants/dimensions';
|
|
|
|
@import '../constants/colors';
|
|
|
|
|
|
|
|
#sidebar {
|
2016-03-16 23:34:25 +00:00
|
|
|
background: darken($bg-dark, 3%);
|
2016-03-16 05:49:42 +00:00
|
|
|
color: $font-dark-bg;
|
|
|
|
align-self: stretch;
|
|
|
|
|
|
|
|
a {
|
|
|
|
box-sizing: border-box;
|
|
|
|
color: $font-dark-bg;
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2016-03-16 20:02:47 +00:00
|
|
|
ul.sidebar-items {
|
|
|
|
width: $sidebar-width;
|
2016-03-16 23:34:25 +00:00
|
|
|
background: $bg-dark;
|
|
|
|
margin-right: 3px;
|
2016-03-16 20:02:47 +00:00
|
|
|
|
|
|
|
li > a {
|
2016-03-16 23:34:25 +00:00
|
|
|
color: darken($font-dark-bg, 40%);
|
|
|
|
padding: $sidebar-item-padding;
|
|
|
|
border-left: 4px solid transparent;
|
2016-03-16 05:49:42 +00:00
|
|
|
|
|
|
|
&:hover {
|
2016-03-16 23:34:25 +00:00
|
|
|
background: lighten($bg-dark, 2%);
|
|
|
|
}
|
|
|
|
|
|
|
|
&:active {
|
|
|
|
background: lighten($bg-dark, 4%);
|
2016-03-16 05:49:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.sidebar-items li.active > a {
|
|
|
|
border-left-color: $bg-primary;
|
2016-03-16 23:34:25 +00:00
|
|
|
color: $font-dark-bg;
|
2016-03-16 05:49:42 +00:00
|
|
|
}
|
|
|
|
}
|