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/_navigation.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/_navigation.sass')
-rw-r--r-- | stylesheets/partials/_navigation.sass | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/stylesheets/partials/_navigation.sass b/stylesheets/partials/_navigation.sass index 2667b740..439da5f2 100644 --- a/stylesheets/partials/_navigation.sass +++ b/stylesheets/partials/_navigation.sass @@ -2,11 +2,11 @@ +clearfix position: relative z-index: 1 - background-color: #{!nav_bg} - +linear-gradient(color_stops(#fcfcfc, #f4f4f4 .3, #ddd)) + background-color: $nav-bg + +linear-gradient(color-stops(#fcfcfc, #f4f4f4 0.3, #dddddd)) border: - top: 1px solid #{!nav_border_top} - bottom: 1px solid #{!nav_border_bottom} + top: 1px solid $nav-border-top + bottom: 1px solid $nav-border-bottom ul position: relative +horizontal-list @@ -14,8 +14,8 @@ padding: 6px 0 li padding: 0 15px - border-left: 1px solid #{!nav_border_left} - border-right: 1px solid #{!nav_border_right} + border-left: 1px solid $nav-border-left + border-right: 1px solid $nav-border-right &.alpha border-left: none padding-left: 0 @@ -23,16 +23,16 @@ border-right: 0 &.subscribe position: absolute - left: #{!page_width - !sidebar_width - !sidebar_margin/2} + left: $page-width - $sidebar-width - $sidebar-margin / 2 border: none a display: inline-block padding-left: 28px - background: url("/images/rss.png") left top no-repeat + background: image-url("rss.png") left top no-repeat a display: inline-block - color: #{!nav_color} + color: $nav-color line-height: 150% text-decoration: none &:hover - color: #{!nav_color_hover}
\ No newline at end of file + color: $nav-color-hover |