refactor blockqoutes to to avoid tag selectors & child selectors
text-align: right;
border-right: .25rem solid $blockquote-border-color;
border-left: 0;
+ }
- // Account for citation
- footer {
- &::before { content: ""; }
- &::after {
- content: "\00A0 \2014"; // nbsp, em dash
- }
+ .blockquote-reverse .blockquote-footer {
+ &::before {
+ content: "";
+ }
+ &::after {
+ content: "\00A0 \2014"; // nbsp, em dash
}
}
-
-//
-// Figures
-//
-
-.figure {
- // Ensures the caption's text aligns with the image.
- display: inline-block;
-
- > img {
- @extend .img-fluid;
- margin-bottom: ($spacer-y / 2);
- line-height: 1;
- }
-}
-
-.figure-caption {
- font-size: 90%;
- color: $gray-light;
-}