blob: 63ed8feff35e743a9c286fb200088a65cc10185a (
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
|
/**
* Site Info
*/
.footer {
@include flexbox();
@include align-items(center);
color: $footer-text-color;
background: $footer-background;
a {
@include link-colors ($footer-text-color, $main-color-1);
}
.site-info {
font-size: map-get($base, font-size-xs);
text-align: center;
.menu {
line-height: map-get($base, line-height-xs);
& > * {
&:not(:last-child) {
@include split-line(right, default, $footer-text-color);
padding-right: map-get($spacers, 1);
margin-right: map-get($spacers, 1);
}
}
}
}
}
.footer__author-links {
@include overflow(auto);
.author-links {
text-align: center;
}
}
|