_footer.scss
554 Bytes
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
// Footer
.s2-docs-footer {
border-top: 1px solid #eee;
color: #767676;
padding-top: 40px;
padding-bottom: 40px;
margin-top: 100px;
text-align: center;
&-links {
padding-left: 0;
margin-top: 20px;
}
&-links li {
display: inline;
padding: 0 2px;
&:after {
content: "·";
padding-left: 8px;
}
&:first-child {
padding-left: 0;
}
&:last-child:after {
content: "";
padding-left: 0;
}
}
@media (min-width: 768px) {
p {
margin-bottom: 0;
}
}
}