diff options
author | Brandon Mathis <brandon@imathis.com> | 2011-06-08 14:18:37 -0400 |
---|---|---|
committer | Brandon Mathis <brandon@imathis.com> | 2011-06-08 14:18:37 -0400 |
commit | 7957858bc6ed36c9a27e9aec35646239f905303a (patch) | |
tree | ac39d0fc12c6f658add23c6ab2fa8acbbfe19ce3 /themes/classic/sass/default/partials | |
parent | aa230616241321ca9c4b8f4202d045c829527618 (diff) | |
download | my_new_personal_website-7957858bc6ed36c9a27e9aec35646239f905303a.tar.xz my_new_personal_website-7957858bc6ed36c9a27e9aec35646239f905303a.zip |
Typographic trying out some webfonts
Media query layout improvements
Twitter now splits tweets with <br> and </p><p> on \n and \n\n
RSS icon made a bit smaller
Diffstat (limited to 'themes/classic/sass/default/partials')
-rw-r--r-- | themes/classic/sass/default/partials/_blog.scss | 9 | ||||
-rw-r--r-- | themes/classic/sass/default/partials/_navigation.scss | 2 |
2 files changed, 6 insertions, 5 deletions
diff --git a/themes/classic/sass/default/partials/_blog.scss b/themes/classic/sass/default/partials/_blog.scss index 4a3312b5..07cba020 100644 --- a/themes/classic/sass/default/partials/_blog.scss +++ b/themes/classic/sass/default/partials/_blog.scss @@ -1,11 +1,11 @@ +$border: inline-image('dotted-border.png'); #articles { > article { padding-bottom: 1em; &:last-child { margin-bottom: 0; border-bottom: none; } h2 { padding-top: 0.8em; - //border-top: 3px double $type-border; - background: inline-image('dotted-border.png') top left repeat-x; + background: $border top left repeat-x; } .byline + time:before, .byline + time +time:before { content: "\2022 "; @@ -17,7 +17,7 @@ padding-top: 2em; margin-bottom: 1.5em; padding-bottom: 1.5em; - background: inline-image('dotted-border.png') bottom left repeat-x; + background: $border bottom left repeat-x; h1 { margin: 0; a { text-decoration: none; @@ -30,7 +30,8 @@ padding-top: 0; margin: 0; font-style: italic; - font-family: "Georgia", Palatino, Times, "Times New Roman"; + @extend .sans; + //font-family: "Georgia", Palatino, Times, "Times New Roman"; } } .entry-content { diff --git a/themes/classic/sass/default/partials/_navigation.scss b/themes/classic/sass/default/partials/_navigation.scss index ecc29e4e..eeafb928 100644 --- a/themes/classic/sass/default/partials/_navigation.scss +++ b/themes/classic/sass/default/partials/_navigation.scss @@ -95,7 +95,7 @@ body > nav { .maskImage { ul[role=subscription] { li, a { border: 0; padding: 0; }} a[rel=subscribe-rss]{ - position: relative; top: -2px; + position: relative; top: 0px; width: image-width('rss.png'); height: image-height('rss.png'); @include mask-image('rss.png'); |