refactored styling of colors for code blocks, reduced specificty on .feature class for blog posts

This commit is contained in:
Brandon Mathis
2011-07-03 18:11:54 -04:00
parent e30a298eb9
commit 8e6da4ee38
4 changed files with 18 additions and 10 deletions

View File

@ -14,3 +14,5 @@ $violet: #6c71c4;
$blue: #268bd2;
$cyan: #2aa198;
$green: #859900;
$pre-bg: $base03 !default;

View File

@ -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;
}
}
}