mirror of
https://github.com/kidoman/embd
synced 2025-02-10 12:43:18 +01:00
24 lines
434 B
SCSS
24 lines
434 B
SCSS
![]() |
/* Images */
|
||
|
|
||
|
.image {
|
||
|
line-height:0;
|
||
|
margin-bottom: 20px;
|
||
|
&.circle {
|
||
|
@include border-radius(50% !important);
|
||
|
overflow: hidden;
|
||
|
width: auto;
|
||
|
}
|
||
|
&.rounded {
|
||
|
overflow: hidden;
|
||
|
@include border-radius($button-radius $button-radius);
|
||
|
}
|
||
|
&.photo {
|
||
|
border: 5px solid #fff;
|
||
|
@include box-shadow(0 0 1px $body-font-color);
|
||
|
&.polaroid {
|
||
|
padding-bottom: 50px;
|
||
|
background: #fff;
|
||
|
}
|
||
|
}
|
||
|
}
|