8b6d83ae60
2. Improved scoping and styling for links 3. Sidebar collapse improvements
20 lines
612 B
SCSS
20 lines
612 B
SCSS
body > footer {
|
|
@extend .sans;
|
|
font-size: .8em;
|
|
color: $footer-color;
|
|
text-shadow: lighten($footer-bg, 5) 0 1px;
|
|
background-color: $footer-bg;
|
|
@include background(image-url('noise.png'), linear-gradient(lighten($footer-bg, 8), $footer-bg, darken($footer-bg, 11)));
|
|
border-top: 1px solid $footer-border-top;
|
|
position: relative;
|
|
padding-top: 1em;
|
|
padding-bottom: 1em;
|
|
margin-bottom: 3em;
|
|
@include border-bottom-radius(.4em);
|
|
z-index: 1;
|
|
a {
|
|
@include link-colors($footer-link-color, $footer-link-color-hover, $visited: $footer-link-color);
|
|
}
|
|
p:last-child { margin-bottom: 0; }
|
|
}
|