• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1.article__sharing {
2  margin: map-get($spacers, 4) 0;
3}
4.article__section-navigator {
5  padding-top: map-get($spacers, 3);
6  margin: map-get($spacers, 4) 0 map-get($spacers, 3) 0;
7  word-wrap: break-word;
8  @include split-line(top, 4px);
9  & > .previous, & > .next {
10    width: 50%;
11    & > span {
12      font-weight: map-get($base, font-weight-bold);
13      color: $text-color-l;
14    }
15    & > a {
16      display: block;
17      @include link-colors($text-color, $main-color-1);
18    }
19  }
20  & > .previous {
21    float: left;
22    padding-right: map-get($spacers, 2);
23  }
24  & > .next {
25    float: right;
26    padding-left: map-get($spacers, 2);
27    text-align: right;
28  }
29}