21 lines
293 B
CSS
Executable File
21 lines
293 B
CSS
Executable File
#CONTAINER section{
|
|
/* position */
|
|
display: block;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
min-height: calc( 100vh - 5em );
|
|
height: auto;
|
|
padding: 2em;
|
|
|
|
/* background */
|
|
background-color: #ecf0f1;
|
|
|
|
/* Z */
|
|
z-index: 7;
|
|
}
|
|
|
|
|
|
|
|
#CONTAINER section.active{ z-index: 8; } |