Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_post-content.scss « sass « static - github.com/kongdivin/hugo-theme-okayish-blog.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 55694152d9c8b8dc56fbff5360cbf9aedc35ad8f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
.post-content {
  table,
  blockquote,
  pre,
  div,
  ul,
  ol,
  dl {
    & + h1 {
      @extend %sp--ph1;
    }

    & + h2 {
      @extend %sp--ph2;
    }

    & + h3 {
      @extend %sp--ph3;
    }

    & + h4 {
      @extend %sp--ph4;
    }

    & + h5,
    & + h6 {
      @extend %sp--ph5;
    }

    & + .p-muted-heading {
      @extend %sp--pmuted;
    }
  }

  > hr {
    margin-top: .75rem;
    margin-bottom: 1.75rem;
  }

  > div {
    @extend .u-margin-bottom--small;
  }

  .footnotes {
    @extend %sp--ph1;
  }
}