2015-10-27 11:30:56 +00:00
|
|
|
#CONTAINER section:not(.basic){
|
|
|
|
/* position */
|
|
|
|
display: none;
|
|
|
|
position: relative;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: calc( 100% - 2*2em );
|
|
|
|
min-height: calc( 100% - 2*2em );
|
|
|
|
height: auto;
|
|
|
|
padding: 2em;
|
|
|
|
|
|
|
|
/* background */
|
|
|
|
background-color: #ecf0f1;
|
|
|
|
|
|
|
|
/* Z */
|
|
|
|
z-index: 7;
|
|
|
|
}
|
|
|
|
|
|
|
|
#CONTAINER section.active:not(.basic){ display: block; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#CONTAINER section.basic{
|
2015-10-21 17:13:56 +00:00
|
|
|
/* position */
|
2015-10-22 21:06:25 +00:00
|
|
|
display: none;
|
|
|
|
position: relative;
|
2015-10-21 17:13:56 +00:00
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
2015-10-22 21:06:25 +00:00
|
|
|
min-height: 100%;
|
2015-10-22 16:55:26 +00:00
|
|
|
height: auto;
|
2015-10-24 17:01:22 +00:00
|
|
|
|
|
|
|
/* flex (as container) */
|
|
|
|
flex-direction: row;
|
|
|
|
flex-wrap: wrap;
|
2015-10-25 16:55:18 +00:00
|
|
|
justify-content: space-around;
|
2015-10-21 17:13:56 +00:00
|
|
|
|
|
|
|
/* background */
|
|
|
|
background-color: #ecf0f1;
|
|
|
|
|
|
|
|
/* Z */
|
|
|
|
z-index: 7;
|
|
|
|
}
|
|
|
|
|
2015-10-27 11:30:56 +00:00
|
|
|
#CONTAINER section.active.basic{ display: flex; }
|
|
|
|
|
|
|
|
|
|
|
|
|
2015-10-21 17:13:56 +00:00
|
|
|
|
2015-10-22 21:06:25 +00:00
|
|
|
|
|
|
|
|
|
|
|
|