_markdown.scss 594 字节
Newer Older
C
codecalm 已提交
1 2 3 4
/**
Markdown
 */
.markdown {
C
codecalm 已提交
5
  font-size: 1rem;
C
codecalm 已提交
6 7
  line-height: $line-height-lg;

C
codecalm 已提交
8 9 10 11
  > :first-child {
    margin-top: 0;
  }

C
codecalm 已提交
12 13
  > :last-child,
  > :last-child .highlight {
C
codecalm 已提交
14 15 16
    margin-bottom: 0;
  }

C
codecalm 已提交
17
  > hr {
C
codecalm 已提交
18 19 20 21
    @include media-breakpoint-up(md) {
      margin-top: 3em;
      margin-bottom: 3em;
    }
C
codecalm 已提交
22 23
  }

C
codecalm 已提交
24 25 26 27 28 29
  > {
    h1, h2, h3, h4, h5, h6 {
      font-weight: $font-weight-bold;
    }
  }

C
codecalm 已提交
30 31 32
  > table {
    @extend .table, .table-bordered;
  }
C
codecalm 已提交
33

C
codecalm 已提交
34 35 36 37 38 39 40
  > blockquote {
    font-size: $h3-font-size;
    margin: 1.5rem 0;
    padding: .5rem 1.5rem;
  }

  > img {
C
codecalm 已提交
41 42
    border-radius: $border-radius;
  }
C
codecalm 已提交
43
}