mirror of
https://github.com/moparisthebest/android.moparisthebest.org
synced 2024-11-16 22:25:05 -05:00
7bdab0e65c
- Added Guard for file watching - Configs can be automatically reloaded - Static asset changes do not trigger Jekyll build - CommonJS modular js support proved by stich-rb - Javascript is concatenated and uglified - Environment variables toggle uglify and fingerprinting - New Jekyll plugin config_tag - New Jekyll plugin javascript_assets_tag - Added theme specific configurations - Custome Jekyll Guard to the rescue - Install, Generate, Watch, and Preview work with Guard now. - Now configs are no longer tracked by Octopress, only theme defauts are. - Console messages can be colorized. - misc config reorganization and improvements
20 lines
546 B
SCSS
20 lines
546 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($footer-bg-front, $footer-bg-back);
|
|
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; }
|
|
}
|