1
0
postdoc/app/javascript/stylesheets/_sidebar.scss

40 lines
587 B
SCSS
Raw Normal View History

2020-12-06 20:49:03 +01:00
html {
background: $grey-200;
}
body {
line-height: 1.3;
font-family: 'Helvetica', Arial;
color: $primary-900;
}
.sidebar {
position: fixed;
left: 0;
width: 20%;
max-width: 300px;
top: 0;
bottom: 0;
overflow-y: auto;
overflow-x: none;
background: $grey-400;
border-right: 1px solid $grey-500;
}
.sidebar__inner-container {
padding-left: 1.5rem;
padding-right: 1.5rem;
}
.sidebar-bottom {
background: rgba($grey-200, 0.5);
position: fixed;
padding-top: 1rem;
width: 20%;
max-width: 300px;
bottom: 20px;
}
.content {
margin-left: 350px;
}