-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_footer.scss
73 lines (59 loc) · 1.07 KB
/
_footer.scss
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
footer {
min-height: 100vh;
margin-top: $gutter*2;
h2, h3 {
padding: 0;
@include media($md) {
padding: 0;
}
}
p, ul {
padding: 0;
@include media($md) {
padding: 0;
}
}
}
footer a:link, footer a:visited {
color: $primary;
}
.footer__content {
@include outer-container;
}
.footer__section__content {
@include pad();
padding-top: $gutter*2;
}
.footer__section {
@include row;
padding: 0 0 $gutter 0;
}
.sitemap__section,
.colophon__section {
@include pad();
}
.sitemap__section--inverted {
color: $primary;
background: $background;
}
.footer__section--colophon {
border-top: 1px solid $background;
padding-top: $gutter;
font-size: modular-scale(-1);
}
@include media($sm) {
nav.sitemap__section,
.footer__section--colophon section {
@include span-columns(4);
}
}
@include media($md) {
nav.sitemap__section,
.sitemap__section,
.footer__section--colophon .colophon__section {
@include span-columns(3);
}
.footer__section--colophon .colophon__section--first {
@include shift(3);
}
}