Skip to content

Commit

Permalink
Update style.scss
Browse files Browse the repository at this point in the history
  • Loading branch information
jklj077 authored Feb 24, 2018
1 parent ca06cdb commit 754b2d0
Showing 1 changed file with 27 additions and 1 deletion.
28 changes: 27 additions & 1 deletion assets/css/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,37 @@ img.center {
border-radius: 50%;
}


.pic-wrapper {
width: 200px;
height: 200px;
margin: 20px auto;
position: relative;
overflow: hidden;
}

.pic-wrapper.fade img:hover {
opacity: 0;
}

.pic-wrapper img {
-webkit-transition: 0.5s;
-moz-transition: 0.5s;
transition: 0.5s;
display: block;
border-radius: 50%;
}

.pic-wrapper.fade img {
position: absolute;
}


p {
margin-bottom: 20px;
}

.hor-dist-container{
display: flex;
justify-content: space-around;
}
}

0 comments on commit 754b2d0

Please sign in to comment.