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/_search.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 '')
-rw-r--r-- | stylesheets/partials/_search.sass | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/stylesheets/partials/_search.sass b/stylesheets/partials/_search.sass index 0deb11ad..44b2a557 100644 --- a/stylesheets/partials/_search.sass +++ b/stylesheets/partials/_search.sass @@ -1,9 +1,9 @@ #search position: absolute - left: #{!page_width + !sidebar_margin - !sidebar_width} - top: #{30%} + left: $page-width + $sidebar-margin - $sidebar-width + top: 30% form - background: url(/images/search_bg.png) no-repeat + background: image-url("search_bg.png") no-repeat padding: 0 height: 28px width: 218px @@ -15,6 +15,6 @@ margin-left: 30px font-size: 15px border: none - color: #aaa + color: #aaaaaa &:focus - outline: none
\ No newline at end of file + outline: none |