diff options
author | B Mathis <brandon@imathis.com> | 2009-11-13 10:15:39 -0600 |
---|---|---|
committer | B Mathis <brandon@imathis.com> | 2009-11-13 10:15:39 -0600 |
commit | 0f31b5b9e271ac5fe613217a8beb88b17a415c77 (patch) | |
tree | 333f88196ee61ac9d60f1019bdfbd86f5fe4de3d /stylesheets | |
parent | 3e69c6be8bca045b432ca20211b4aadd7df8dd5d (diff) | |
download | my_new_personal_website-0f31b5b9e271ac5fe613217a8beb88b17a415c77.tar.xz my_new_personal_website-0f31b5b9e271ac5fe613217a8beb88b17a415c77.zip |
fixed search positioning, made layout calculations better
Diffstat (limited to 'stylesheets')
-rw-r--r-- | stylesheets/_layout.sass | 19 | ||||
-rw-r--r-- | stylesheets/partials/_search.sass | 2 |
2 files changed, 7 insertions, 14 deletions
diff --git a/stylesheets/_layout.sass b/stylesheets/_layout.sass index 348c1a92..4f792728 100644 --- a/stylesheets/_layout.sass +++ b/stylesheets/_layout.sass @@ -1,6 +1,8 @@ !page_width = 900px -!sidebar_width = 250px +!main_width = 620px +!page_pad = 30px !sidebar_margin = 30px +!sidebar_width = !page_width - !main_width - !sidebar_margin !pad = 15px !default_border_radius = 4px @@ -69,21 +71,12 @@ html body width= !page_width margin: 0 auto padding: - left: 30px - right: 30px + left= !page_pad + right= !page_pad #page +clearfix background-color= !page_bg - &.collapsed - .page_width - width= !page_width - !sidebar_width - #main - width: 100% - .pre_expander - display: none - #sidebar - float: none .page_width +clearfix position: relative @@ -96,7 +89,7 @@ html body left= "1px solid" !page_border_sides right= "1px solid" !page_border_sides #main - width= !page_width - !sidebar_width - !sidebar_margin + width= !main_width float: left &.expanded width: 100% diff --git a/stylesheets/partials/_search.sass b/stylesheets/partials/_search.sass index 71f2460e..72bebdf9 100644 --- a/stylesheets/partials/_search.sass +++ b/stylesheets/partials/_search.sass @@ -10,7 +10,7 @@ #q background: none position: relative - top: -2px + top: 1px width: 160px margin-left: 30px font-size: 15px |