blob: 84def829c337d65b2637784252855f0ca594139e (
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
|
footer[role="contentinfo"] {
margin-top: 5em;
@include breakpoint(gamma) {
max-width: 960;
}
&:before {
@include breakpoint(beta) {
@include faded_line_after;
margin-bottom: 1.2em;
}
}
ul {
border-top: 1px $brown dotted;
border-bottom: 1px $brown dotted;
padding: .5rem 0;
@include breakpoint(beta) {
border: none;
}
}
li {
display: inline;
margin: 0 .125em;
a {
color: $brown;
text-decoration: none;
}
}
p {
@include fontsize(10);
}
}
.dark footer[role="contentinfo"] {
&:before {
@include light_faded_line_after;
}
a {
color: $body_font_light;
}
}
|