NxTIC/css/layout.scss

83 lines
1.4 KiB
SCSS
Executable File

@import 'constants';
#WRAPPER{
display: block;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: $theme-bg;
font-family: 'Open Sans';
font-size: 15px;
overflow-x: hidden;
overflow-y: auto;
/* [1] Header de la page
==========================================*/
& > #HEADER{
display: flex;
position: absolute;
top: 0;
left: $menu-side-width;
width: calc( 100% - #{$menu-side-width} );
height: calc( #{$header-height} - 1px );
border-bottom: 1px solid darken($theme-bg, 1);
background-color: $theme-bg-primary;
// Flex properties
flex-direction: row;
justify-content: flex-end;
align-content: space-around;
z-index: 10;
}
/* [2] Side-Menu de la page
==========================================*/
// Gestion du menu
& > #MENU-SIDE{
display: block;
position: fixed;
top: 0;
left: 0;
width: $menu-side-width;
height: 100%;
box-shadow: 2px 1px 3px #ddd;
background-color: $dark-bg;
transition: all .3s;
z-index: 9;
}
/* [3] Container de la page
==========================================*/
& > #CONTAINER{
display: flex;
position: absolute;
top: $header-height;
left: $menu-side-width;
width: calc( 100% - #{$menu-side-width} - 2*1em );
min-height: calc( 100% - #{$header-height} - 2*1em );
padding: 1em;
// Flex properties
flex-direction: row;
justify-content: space-between;
overflow-x: none;
overflow-y: auto;
}
}