apostrophe/assets/sass/components/_programmers.scss

37 lines
473 B
SCSS
Raw Normal View History

2018-06-05 20:51:18 +00:00
.programmer {
display: flex;
flex-flow: column;
align-items: center;
margin-left: auto;
margin-right: auto;
padding: 20px;
width: 50%;
}
.programmer p{
margin-top: 60px;
width: 60%;
}
2018-05-31 23:22:49 +00:00
.programmer img{
2018-06-05 20:51:18 +00:00
filter: none;
2018-05-31 23:22:49 +00:00
border-radius: 100%;
2018-06-05 20:51:18 +00:00
height: auto;
width: 40%;
}
/********MOBILE************/
@media (max-width: 480px) {
.programmer{
width: 100%;
}
.programmer p{
width: 100%;
}
2018-05-31 23:22:49 +00:00
}