28 lines
368 B
CSS
Executable File
28 lines
368 B
CSS
Executable File
#CONTAINER section{
|
|
/* position */
|
|
display: none;
|
|
position: relative;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
min-height: 100%;
|
|
height: auto;
|
|
|
|
/* flex (as container) */
|
|
flex-direction: row;
|
|
flex-wrap: wrap;
|
|
justify-content: space-between;
|
|
|
|
/* background */
|
|
background-color: #ecf0f1;
|
|
|
|
/* Z */
|
|
z-index: 7;
|
|
}
|
|
|
|
|
|
#CONTAINER section.active{ display: flex; }
|
|
|
|
|
|
|