12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- .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);
- transition: all .2s ease-in-out;
- @include box-shadow($thumbnail-box-shadow);
-
- @include img-fluid;
- }
- .figure {
-
- display: inline-block;
- }
- .figure-img {
- margin-bottom: ($spacer-y / 2);
- line-height: 1;
- }
- .figure-caption {
- font-size: $figure-caption-font-size;
- color: $gray-light;
- }
|