blob: d326d4a0a1b0ddb6303e859182743a87314884e0 (
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
48
49
50
|
footer {
@include constrain_wide;
margin-top: 6rem;
margin-bottom: 1rem;
@include breakpoint(gamma) {
max-width: 960;
margin-top: 8rem;
margin-bottom: 3rem;
}
&:before {
@include faded_line_after;
margin-bottom: 2em;
}
.footer-nav-menu {
padding: 0;
text-align: center;
margin-bottom: 1rem;
li {
display: inline;
margin: 0 auto;
&:after {
content: "/";
color: #999999;
padding-left: 0.75em;
}
a {
color: $secondary-link-color;
text-decoration: none;
}
}
li:last-of-type {
margin-right: 0;
&:after {
content: " ";
}
}
@include breakpoint(beta) {
float: right;
text-align: left;
}
}
p {
text-align: center;
a { text-decoration: none; }
@include breakpoint(beta) {
float: left;
text-align: left;
}
}
}
|