apostrophe/assets/sass/layout/_section.scss

49 lines
693 B
SCSS
Raw Normal View History

2018-05-30 16:41:16 +00:00
section {
height: 100vh;
display: flex;
// align-items: center;
justify-content: center;
padding-top: 10vh;
2018-05-31 00:49:11 +00:00
background: whitesmoke;
2018-05-30 16:41:16 +00:00
}
section img {
filter: drop-shadow( 0px 10px 40px #888888 );
width: 80%;
/* display: block;
margin-left: auto;
margin-right: auto;
justify-content: center; */
}
2018-05-31 00:49:11 +00:00
section.dark {
background: rgba(0, 0, 0, 0);
}
section #programmers {
height: 50vh;
width: 100%;
position: absolute;
margin-top: -10vh;
z-index: -1;
background: whitesmoke;
}
section #footer {
height: 50vh;
width: 100%;
position: fixed;
top: 50vh;
z-index: -2;
color: whitesmoke;
}