sid/css/container.css

28 lines
367 B
CSS
Raw Normal View History

#CONTAINER section{
/* position */
2015-10-22 21:06:25 +00:00
display: none;
position: relative;
top: 0;
left: 0;
width: 100%;
2015-10-22 21:06:25 +00:00
min-height: 100%;
height: auto;
/* flex (as container) */
flex-direction: row;
flex-wrap: wrap;
justify-content: space-around;
/* background */
background-color: #ecf0f1;
/* Z */
z-index: 7;
}
#CONTAINER section.active{ display: flex; }
2015-10-22 21:06:25 +00:00