mirror of
https://github.com/moparisthebest/android.moparisthebest.org
synced 2024-11-01 15:55:03 -04:00
21813059f2
2. Added updated instructions to the README 3. Removed unused media css directories 4. Improved use of color variables for page theming. 5. Improved Typography and blog styling. 6. Added support for simple pre and code styles 7. Misc styling and markup improvements.
20 lines
558 B
SCSS
20 lines
558 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(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);
|
|
}
|
|
p:last-child { margin-bottom: 0; }
|
|
}
|