_blockquote.scss 471 B

123456789101112131415161718192021222324
  1. //-------------------------------
  2. // Blockquotes
  3. //-------------------------------
  4. blockquote {
  5. padding: 0 0 4px 15px;
  6. margin: 0 0 2rem -1rem;
  7. font-size: $base-font-size;
  8. font-weight: $base-font-weight;
  9. font-style: italic;
  10. line-height: $base-line-height;
  11. color: var(--text-color-light);
  12. border-left: 3px solid var(--text-color-light);
  13. p:last-child {
  14. margin-bottom: 0;
  15. }
  16. }
  17. @media (max-width: 48rem) {
  18. blockquote {
  19. margin: 0 0 2rem 0;
  20. }
  21. }