diff options
author | Brandon Mathis <brandon@imathis.com> | 2011-07-03 18:11:54 -0400 |
---|---|---|
committer | Brandon Mathis <brandon@imathis.com> | 2011-07-03 18:11:54 -0400 |
commit | 8e6da4ee38239f7f2908e9939b83c87bf2e930e5 (patch) | |
tree | 11253264355246281ad258fec02377f55aa80e49 /.themes/classic/sass/base/_theme.scss | |
parent | e30a298eb9f76beebe6529769ce736016c9fab42 (diff) | |
download | my_new_personal_website-8e6da4ee38239f7f2908e9939b83c87bf2e930e5.tar.xz my_new_personal_website-8e6da4ee38239f7f2908e9939b83c87bf2e930e5.zip |
refactored styling of colors for code blocks, reduced specificty on .feature class for blog posts
Diffstat (limited to '.themes/classic/sass/base/_theme.scss')
-rw-r--r-- | .themes/classic/sass/base/_theme.scss | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/.themes/classic/sass/base/_theme.scss b/.themes/classic/sass/base/_theme.scss index 42fdb6f2..34474fa1 100644 --- a/.themes/classic/sass/base/_theme.scss +++ b/.themes/classic/sass/base/_theme.scss @@ -1,3 +1,4 @@ +$noise-bg: image-url('noise.png') top left; $img-border: inline-image('dotted-border.png'); // Main Link Colors @@ -20,6 +21,10 @@ $text-color: #222 !default; $text-color-light: #aaa !default; $type-border: #ddd !default; +/* non highlighted code colors */ +$pre-bg: $base03 !default; +$pre-border: $base02 !default; +$pre-color: $base1 !default; /* Navigation */ $nav-bg: #ccc !default; @@ -66,11 +71,12 @@ html { } body { > div { - background: $sidebar-bg image-url('noise.png') top left; + background: $sidebar-bg $noise-bg; border-bottom: 1px solid $page-border-bottom; > div { - background: $main-bg image-url('noise.png') top left; + background: $main-bg $noise-bg; border-right: 1px solid $sidebar-border; } } } + |