apostrophe/assets/sass/layout/_section.scss

57 lines
943 B
SCSS
Raw Normal View History

2018-05-30 16:41:16 +00:00
2018-06-05 20:51:18 +00:00
.section {
2018-05-30 16:41:16 +00:00
height: 100vh;
display: flex;
// align-items: center;
justify-content: center;
padding-top: 10vh;
2018-05-31 23:22:49 +00:00
flex-wrap: wrap;
2018-05-31 00:49:11 +00:00
background: whitesmoke;
2018-05-30 16:41:16 +00:00
}
2018-06-05 20:51:18 +00:00
.section img {
2018-05-30 16:41:16 +00:00
filter: drop-shadow( 0px 10px 40px #888888 );
width: 80%;
2018-06-05 20:51:18 +00:00
z-index: 3;
2018-05-30 16:41:16 +00:00
/* display: block;
margin-left: auto;
margin-right: auto;
justify-content: center; */
}
2018-05-31 00:49:11 +00:00
2018-06-05 20:51:18 +00:00
.section.dark {
2018-05-31 00:49:11 +00:00
background: rgba(0, 0, 0, 0);
2018-05-31 23:22:49 +00:00
height: 900px;
flex-wrap: wrap;
2018-05-31 00:49:11 +00:00
}
2018-06-05 20:51:18 +00:00
.section.programmers {
2018-06-08 17:35:18 +00:00
/* min-height: 80vh;
overflow: hidden; */
height: auto;
2018-05-31 00:49:11 +00:00
width: 100%;
position: absolute;
2018-06-01 17:00:02 +00:00
margin-bottom: 20vh;
2018-05-31 23:22:49 +00:00
display: flex;
flex-flow: wrap;
2018-05-31 00:49:11 +00:00
2018-06-01 17:00:02 +00:00
z-index: 2;
2018-05-31 00:49:11 +00:00
background: whitesmoke;
2018-06-01 17:00:02 +00:00
box-shadow: 0px 20px 40px 0px #1010104f;
2018-05-31 00:49:11 +00:00
}
2018-06-05 20:51:18 +00:00
/********MOBILE************/
2018-05-31 23:22:49 +00:00
2018-06-05 20:51:18 +00:00
@media (max-width: 480px) {
.section.programmers{
min-height: 80vh;
height: auto;
flex-flow: column;
}
}