apostrophe/assets/sass/layout/_section.scss

67 lines
996 B
SCSS

section {
height: 100vh;
display: flex;
// align-items: center;
justify-content: center;
padding-top: 10vh;
flex-wrap: wrap;
background: whitesmoke;
}
section img {
filter: drop-shadow( 0px 10px 40px #888888 );
width: 80%;
/* display: block;
margin-left: auto;
margin-right: auto;
justify-content: center; */
}
section.dark {
background: rgba(0, 0, 0, 0);
height: 900px;
flex-wrap: wrap;
}
section #programmers {
min-height: 50vh;
width: 100%;
position: absolute;
margin-top: -10vh;
margin-bottom: 50vh;
padding-top: 10vh;
display: flex;
flex-flow: wrap;
z-index: -1;
background: whitesmoke;
}
.programmer {
display: flex;
align-items: center;
margin-left: auto;
margin-right: auto;
padding: 20px;
}
section #footer {
height: 50vh;
width: 100%;
position: fixed;
bottom: 0px;
z-index: -2;
display: flex;
color: whitesmoke;
}