splitted up stylesheet and added lots of scaffolding to it. Style needs working.
[theme-danix.xyz.git] / assets / sass / layout / _footer.scss
1 ///
2 /// Forty by HTML5 UP
3 /// html5up.net | @ajlkn
4 /// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
5 ///
6
7 /* Footer */
8
9 #footer {
10 .copyright {
11 font-size: 0.8em;
12 list-style: none;
13 padding-left: 0;
14
15 li {
16 border-left: solid 1px _palette(border);
17 color: _palette(fg-light);
18 display: inline-block;
19 line-height: 1;
20 margin-left: 1em;
21 padding-left: 1em;
22
23 &:first-child {
24 border-left: 0;
25 margin-left: 0;
26 padding-left: 0;
27 }
28 }
29 }
30
31 @include breakpoint('<=xsmall') {
32 .copyright {
33 li {
34 display: block;
35 border-left: 0;
36 margin-left: 0;
37 padding-left: 0;
38 line-height: inherit;
39 }
40 }
41 }
42 }