54 lines
674 B
SCSS
54 lines
674 B
SCSS
|
@import "global";
|
||
|
|
||
|
html
|
||
|
{
|
||
|
height: 100%;
|
||
|
font-size: $font-size;
|
||
|
}
|
||
|
body
|
||
|
{
|
||
|
font-family: 'Source Sans Pro', sans-serif;
|
||
|
line-height: 1.3333;
|
||
|
min-height: 100%;
|
||
|
position: relative;
|
||
|
}
|
||
|
|
||
|
#window
|
||
|
{
|
||
|
position: relative;
|
||
|
}
|
||
|
|
||
|
#drawer
|
||
|
{
|
||
|
width: 240px;
|
||
|
position: absolute;
|
||
|
min-height: 100vh;
|
||
|
left: 0;
|
||
|
top: 0;
|
||
|
.button-text
|
||
|
{
|
||
|
display: block;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
#window.drawer-closed
|
||
|
{
|
||
|
#drawer { display: none }
|
||
|
}
|
||
|
#window.drawer-open
|
||
|
{
|
||
|
#main-content { margin-left: 240px; }
|
||
|
.open-drawer-link { display: none; }
|
||
|
}
|
||
|
|
||
|
.page {
|
||
|
margin-left: auto;
|
||
|
margin-right: auto;
|
||
|
width: 800px;
|
||
|
padding-bottom: $spacing-vertical*3;
|
||
|
}
|
||
|
.full-screen
|
||
|
{
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
}
|