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/custom | |
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/custom')
-rw-r--r-- | themes/classic/sass/custom/_colors.scss | 18 | ||||
-rw-r--r-- | themes/classic/sass/custom/_layout.scss | 16 |
2 files changed, 24 insertions, 10 deletions
diff --git a/themes/classic/sass/custom/_colors.scss b/themes/classic/sass/custom/_colors.scss index b6e541cc..0771a86c 100644 --- a/themes/classic/sass/custom/_colors.scss +++ b/themes/classic/sass/custom/_colors.scss @@ -10,13 +10,11 @@ //To use the light Solarized highlighting theme uncomment this block -/* -$base03: $base3; -$base02: $base2; -$base01: $base1; -$base00: $base0; -$base0: $base00; -$base1: $base01; -$base2: $base02; -$base3: $base03; -*/ +//$base03: $base3; +//$base02: $base2; +//$base01: $base1; +//$base00: $base0; +//$base0: $base00; +//$base1: $base01; +//$base2: $base02; +//$base3: $base03; diff --git a/themes/classic/sass/custom/_layout.scss b/themes/classic/sass/custom/_layout.scss new file mode 100644 index 00000000..162f5ad6 --- /dev/null +++ b/themes/classic/sass/custom/_layout.scss @@ -0,0 +1,16 @@ +// Here you can easily change your sites's layout. +// To give it a try, uncomment some of the lines below, make changes, rebuild your blog, and see how it works. + +//$max-width: 1350px; + +// Padding used for layout margins +//$pad-min: 18px; +//$pad-narrow: 25px; +//$pad-medium: 35px; +//$pad-wide: 55px; + +// Sidebar widths used in media queries +//$sidebar-width-medium: 240px; +//$sidebar-pad-medium: 15px; +//$sidebar-pad-wide: 20px; +//$sidebar-width-wide: 300px; |