diff options
author | Brandon Mathis <brandon@imathis.com> | 2011-06-22 18:53:17 -0400 |
---|---|---|
committer | Brandon Mathis <brandon@imathis.com> | 2011-06-22 18:53:17 -0400 |
commit | da514a65594ee9f2be0bcd0aa3325acc7720ffac (patch) | |
tree | 292a0f059f049210a12ac2f7cb9d34bfaab2d425 /themes/classic/sass/partials | |
parent | a2ab1d48021b225921eeeffe76a956633a7f99ac (diff) | |
download | my_new_personal_website-da514a65594ee9f2be0bcd0aa3325acc7720ffac.tar.xz my_new_personal_website-da514a65594ee9f2be0bcd0aa3325acc7720ffac.zip |
1. Updated typography for blockquotes
2. Improved blockquote Liquid tag
3. Added custom layout Sass for making layout changes simple
Diffstat (limited to 'themes/classic/sass/partials')
-rw-r--r-- | themes/classic/sass/partials/_blog.scss | 3 | ||||
-rw-r--r-- | themes/classic/sass/partials/_syntax.scss | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/themes/classic/sass/partials/_blog.scss b/themes/classic/sass/partials/_blog.scss index 5d80d4e2..485f5e89 100644 --- a/themes/classic/sass/partials/_blog.scss +++ b/themes/classic/sass/partials/_blog.scss @@ -1,5 +1,6 @@ $border: inline-image('dotted-border.png'); #articles { + overflow: hidden; @media only screen and (max-width: 768px) { ul, ol { margin-left: 1.4em; } } @@ -91,7 +92,7 @@ $border: inline-image('dotted-border.png'); top: .3em; padding-left: .5em; } - footer { + > footer { margin-top: 2em; padding-top: 1em; margin-bottom: 1.5em; diff --git a/themes/classic/sass/partials/_syntax.scss b/themes/classic/sass/partials/_syntax.scss index cf012555..7ee650cb 100644 --- a/themes/classic/sass/partials/_syntax.scss +++ b/themes/classic/sass/partials/_syntax.scss @@ -58,7 +58,7 @@ pre { line-height: 1.45em; font-size: .8em; margin-bottom: 1.5em; - padding: .4em .8em; + padding: .8em 1em; color: #555; overflow: auto; } |