Make the background and the footer gradiations customizable

This change extracts following variables for allowing customizatin:
- nav-bg-back
- nav-bg-front
- footer-bg-back
- footer-bg-front
This commit is contained in:
MORITA Hajime (omo)
2011-10-23 06:55:20 -07:00
parent 408ed3e1e2
commit 633b3389f3
4 changed files with 11 additions and 2 deletions

View File

@ -1,7 +1,7 @@
body > nav {
position: relative;
background-color: $nav-bg;
@include background(image-url('noise.png'), linear-gradient(lighten($nav-bg, 8), $nav-bg, darken($nav-bg, 11)));
@include background($nav-bg-front, $nav-bg-back);
border: {
top: 1px solid $nav-border-top;
bottom: 1px solid $nav-border-bottom; }