32 lines
533 B
SCSS
32 lines
533 B
SCSS
//
|
|
.img-fluid {
|
|
@include img-fluid();
|
|
}
|
|
|
|
|
|
.img-thumbnail {
|
|
padding: $thumbnail-padding;
|
|
background-color: $thumbnail-bg;
|
|
border: $thumbnail-border-width solid $thumbnail-border-color;
|
|
@include border-radius($thumbnail-border-radius);
|
|
@include box-shadow($thumbnail-box-shadow);
|
|
|
|
@include img-fluid();
|
|
}
|
|
|
|
//
|
|
//
|
|
|
|
.figure {
|
|
display: inline-block;
|
|
}
|
|
|
|
.figure-img {
|
|
margin-bottom: $spacer / 2;
|
|
line-height: 1;
|
|
}
|
|
|
|
.figure-caption {
|
|
@include font-size($figure-caption-font-size);
|
|
color: $figure-caption-color;
|
|
}
|