diff options
author | B Mathis <brandon@imathis.com> | 2010-07-26 10:55:53 -0500 |
---|---|---|
committer | B Mathis <brandon@imathis.com> | 2010-07-26 10:55:53 -0500 |
commit | 76b8b8ca450dc09c86d0ad958f7397c3b1bdc36f (patch) | |
tree | 1c017153e507802955569cc88fc985baea3f1c5e /stylesheets/partials/_footer.sass | |
parent | 5951848f724ae5a64d917dced57c328013dc2939 (diff) | |
download | my_new_personal_website-76b8b8ca450dc09c86d0ad958f7397c3b1bdc36f.tar.xz my_new_personal_website-76b8b8ca450dc09c86d0ad958f7397c3b1bdc36f.zip |
fixed rake preview and updated sass to sass3 syntax
Diffstat (limited to 'stylesheets/partials/_footer.sass')
-rw-r--r-- | stylesheets/partials/_footer.sass | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/stylesheets/partials/_footer.sass b/stylesheets/partials/_footer.sass index c67118c0..40ae8e3f 100644 --- a/stylesheets/partials/_footer.sass +++ b/stylesheets/partials/_footer.sass @@ -1,12 +1,12 @@ #footer - +linear-gradient(color_stops(darken(!body_bg, 5), !body_bg)) - font-size: #{!base_font_size_small} - color: #{!footer_color} - border-top: 10px solid #{!footer_bg} + +linear-gradient(color-stops(darken($body-bg, 5), $body-bg)) + font-size: $base-font-size-small + color: $footer-color + border-top: 10px solid $footer-bg padding: 15px 0 position: relative z-index: 2 a - color: #ddd + color: #dddddd &:hover - color: #fff
\ No newline at end of file + color: white |