1/* Images */
2
3.image {
4  line-height:0;
5  margin-bottom: 20px;
6  &.circle {
7    @include border-radius(50% !important);
8    overflow: hidden;
9    width: auto;
10  }
11  &.rounded {
12    overflow: hidden;
13    @include border-radius($button-radius $button-radius);
14  }
15  &.photo {
16    border: 5px solid #fff;
17    @include box-shadow(0 0 1px $body-font-color);
18    &.polaroid {
19      padding-bottom: 50px;
20      background: #fff;
21    }
22  }
23}
24