_markdown.scss 607 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. /**
  2. Markdown
  3. */
  4. .markdown {
  5. line-height: $line-height-lg;
  6. > :first-child {
  7. margin-top: 0;
  8. }
  9. > :last-child,
  10. > :last-child .highlight {
  11. margin-bottom: 0;
  12. }
  13. > hr {
  14. @include media-breakpoint-up(md) {
  15. margin-top: 3em;
  16. margin-bottom: 3em;
  17. }
  18. }
  19. > {
  20. h1, h2, h3, h4, h5, h6 {
  21. font-weight: var(--#{$prefix}font-weight-bold);
  22. }
  23. }
  24. > table {
  25. @extend .table, .table-bordered;
  26. }
  27. > blockquote {
  28. font-size: $h3-font-size;
  29. margin: 1.5rem 0;
  30. padding: .5rem 1.5rem;
  31. }
  32. > img {
  33. border-radius: var(--#{$prefix}border-radius);
  34. }
  35. }