Cleaned out public from repository, updated gitignore, added syntax
highlighting tests, improved syntax highlighting and styling of pre blocks. Overriding dynamic gist styling. Added a plugin for pygments caching which should speed things up terrifically. added ender.js as a lightweight way of scripting the DOM, events, etc. Some general typography and semantic html improvements.
This commit is contained in:
@ -67,7 +67,7 @@ body {
|
||||
float: left;
|
||||
width: $sidebar-width - $sidebar-pad*2;
|
||||
margin: 0 -100% 0 0;
|
||||
padding: $sidebar-pad;
|
||||
padding: 0 $sidebar-pad $sidebar-pad;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -1,45 +1,44 @@
|
||||
// Link Colors
|
||||
$link_color: lighten(#165b94, 0.3);
|
||||
$link-color: lighten(#165b94, 3);
|
||||
$link-color-hover: darken(#165b94, 5);
|
||||
|
||||
// Main Section Colors
|
||||
$body_color: #333333;
|
||||
$light_text: #999999;
|
||||
$body_bg: #323232;
|
||||
$body-color: #333333;
|
||||
$light-text: #999999;
|
||||
$body-bg: #323232;
|
||||
|
||||
$header_bg: #323232;
|
||||
$header_border: #181818;
|
||||
$title_color: #dddddd;
|
||||
$header-bg: #323232;
|
||||
$header-border: #181818;
|
||||
$title-color: #dddddd;
|
||||
|
||||
$nav_color: #555555;
|
||||
$nav_color_hover: black;
|
||||
$nav_bg: #e8e8e8;
|
||||
$nav_border_top: white;
|
||||
$nav_border_bottom: #aaaaaa;
|
||||
$nav_border_left: #cccccc;
|
||||
$nav_border_right: white;
|
||||
$nav-color: #555555;
|
||||
$nav-color_hover: black;
|
||||
$nav-bg: #e8e8e8;
|
||||
$nav-border_top: white;
|
||||
$nav-border_bottom: #aaaaaa;
|
||||
$nav-border_left: #cccccc;
|
||||
$nav-border_right: white;
|
||||
|
||||
$sidebar_bg: #f2f2f2;
|
||||
$sidebar_border: #d5d5d5;
|
||||
$sidebar-bg: #f2f2f2;
|
||||
$sidebar-border: #d5d5d5;
|
||||
|
||||
// Blog
|
||||
$article_border: #eeeeee;
|
||||
$main_bg: #fff;
|
||||
$article-border: #eeeeee;
|
||||
$main-bg: #fff;
|
||||
|
||||
$footer_color: #999999;
|
||||
$footer_bg: #444444;
|
||||
$footer-color: #999999;
|
||||
$footer-bg: #444444;
|
||||
|
||||
// Form Colors
|
||||
$fieldset_bg: #ececec;
|
||||
$fieldset_border: #c3c3c3;
|
||||
$fieldset-bg: #ececec;
|
||||
$fieldset-border: #c3c3c3;
|
||||
|
||||
$textinput_color: #333333;
|
||||
$textinput_bg: #f4f4f4;
|
||||
$textinput_bg_focus: #fefeee;
|
||||
$textinput-color: #333333;
|
||||
$textinput-bg: #f4f4f4;
|
||||
$textinput-bg-focus: #fefeee;
|
||||
|
||||
$textinput_border_top: #aaaaaa;
|
||||
$textinput_border_bottom: #c6c6c6;
|
||||
$textinput_border_left: #c3c3c3;
|
||||
$textinput_border_right: #c3c3c3;
|
||||
$textinput_border_focus: #989898;
|
||||
|
||||
$twitter_topic: #888888;
|
||||
$textinput-border-top: #aaaaaa;
|
||||
$textinput-border-bottom: #c6c6c6;
|
||||
$textinput-border-left: #c3c3c3;
|
||||
$textinput-border-right: #c3c3c3;
|
||||
$textinput-border-focus: #989898;
|
||||
|
||||
@ -2,16 +2,17 @@ $type-border: #ddd;
|
||||
$type-color-light: #555;
|
||||
$type-color: #000;
|
||||
$blockquote: $type-border !default; //darken($type-border, 20) !default;
|
||||
|
||||
$mono: Menlo, Monaco, "Andale Mono", "lucida console", "Courier New", monospace;
|
||||
|
||||
// Fonts
|
||||
@include font-face("Adelle", font-files("adellebasic_bold-webfont.woff", woff, "adellebasic_bold-webfont.ttf", truetype, "adellebasic_bold-webfont.svg#webfontKykxqSyz", svg), $eot: "adellebasic_bold-webfont.eot" );
|
||||
.heading-font { font-family: Adelle, "Helvetica Neue", Helvetica, Arial, sans; }
|
||||
.sans-font { font-family: "Helvetica Neue", Helvetica, Arial, sans; }
|
||||
.heading { font-family: Adelle, "Helvetica Neue", Arial, sans-serif; }
|
||||
.sans { font-family: "Helvetica Neue", Arial, sans-serif; }
|
||||
.mono { font-family: $mono; }
|
||||
|
||||
body > header h1 {
|
||||
font-size: 3em;
|
||||
@extend .heading-font;
|
||||
@extend .heading;
|
||||
line-height: 1.2em;
|
||||
margin-bottom: 0.6667em;
|
||||
}
|
||||
@ -54,7 +55,7 @@ article {
|
||||
}
|
||||
|
||||
#{headings()}{
|
||||
@extend .heading-font; font-weight: normal;
|
||||
@extend .heading; font-weight: normal;
|
||||
line-height: 1em;
|
||||
text-rendering: optimizelegibility;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user