• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1/**
2 * Site Info
3 */
4
5.footer {
6  @include flexbox();
7  @include align-items(center);
8  color: $footer-text-color;
9  background: $footer-background;
10  a {
11    @include link-colors ($footer-text-color, $main-color-1);
12  }
13  .site-info {
14    font-size: map-get($base, font-size-xs);
15    text-align: center;
16    .menu {
17      line-height: map-get($base, line-height-xs);
18      & > * {
19        &:not(:last-child) {
20          @include split-line(right, default, $footer-text-color);
21          padding-right: map-get($spacers, 1);
22          margin-right: map-get($spacers, 1);
23        }
24      }
25    }
26  }
27}
28.footer__author-links {
29  @include overflow(auto);
30  .author-links {
31    text-align: center;
32  }
33}