2018-02-28 12:00:51 +00:00
|
|
|
@import 'constants';
|
|
|
|
|
|
|
|
|
|
|
|
#CONTAINER{
|
|
|
|
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
2018-03-01 12:16:22 +00:00
|
|
|
top: $header-height;
|
|
|
|
left: $menu-width;
|
2018-03-04 16:23:35 +00:00
|
|
|
height: calc( 100% - #{$header-height} );
|
2018-03-01 12:16:22 +00:00
|
|
|
width: calc( 100% - #{$menu-width} );
|
|
|
|
|
2018-02-28 12:00:51 +00:00
|
|
|
|
|
|
|
background-color: $bg-color;
|
|
|
|
|
2018-03-01 12:16:22 +00:00
|
|
|
overflow: hidden;
|
2018-03-04 16:23:35 +00:00
|
|
|
overflow-y: auto;
|
2018-03-01 12:16:22 +00:00
|
|
|
|
|
|
|
z-index: 100;
|
|
|
|
|
2018-03-08 17:00:39 +00:00
|
|
|
|
|
|
|
// card container
|
|
|
|
&.card{
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: flex-start;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
}
|
|
|
|
|
2018-03-01 12:16:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* [1] List style
|
|
|
|
---------------------------------*/
|
2018-03-14 16:43:44 +00:00
|
|
|
@import 'container/list';
|
2018-03-04 16:23:35 +00:00
|
|
|
|
|
|
|
|
2018-03-14 16:43:44 +00:00
|
|
|
/* [2] Card style
|
|
|
|
---------------------------------*/
|
2018-03-14 16:42:18 +00:00
|
|
|
@import 'container/card';
|