mirror of
https://github.com/moparisthebest/android.moparisthebest.org
synced 2024-11-01 15:55:03 -04:00
929e606111
2. Removed iterator plugin as it was not being used. 3. Added initial support for html5 video with flash fallback. 4. Added responsive scaling for embedded youtube and vimeo videos. 5. Improved footer styleing.
20 lines
526 B
SCSS
20 lines
526 B
SCSS
body > footer {
|
|
@extend .sans;
|
|
font-size: .8em;
|
|
color: $nav-color;
|
|
text-shadow: lighten($footer-bg, 5) 0 1px;
|
|
background-color: $footer-bg;
|
|
@include background(linear-gradient(lighten($nav-bg, 8), $nav-bg, darken($nav-bg, 11)));
|
|
border-top: 1px solid $footer-border;
|
|
position: relative;
|
|
padding-top: 1em;
|
|
padding-bottom: 1em;
|
|
margin-bottom: 3em;
|
|
@include border-bottom-radius(.4em);
|
|
z-index: 1;
|
|
a {
|
|
@include link-colors($nav-color, $nav-color-hover);
|
|
}
|
|
p:last-child { margin-bottom: 0; }
|
|
}
|