ZacharyN
1/9/2016 - 10:49 PM

SCSS for an avatar with a thick circular border

SCSS for an avatar with a thick circular border

.avatar-circular {
    width:150px;
    height:150px;
    margin: 10px;
    border:10px solid red;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
      border-radius: 50%;
}