1. Some general styling improvements especially for syntax and navigation

2. JS line numbering now supports embedded gists
3. Added a favicon
This commit is contained in:
Brandon Mathis
2011-06-15 22:50:01 -04:00
parent ab29d45ae8
commit b0405cc3c2
7 changed files with 106 additions and 59 deletions

View File

@ -50,3 +50,4 @@ $textinput-border-focus: #989898;
#articles a, #articles + aside a {
@include link-colors($link-color, $hover: saturate(darken($link_color, 15), 20), $focus: saturate(darken($link_color, 15), 20), $visited: darken(adjust_hue($link_color, 70), 10));
}
a { @include transition(color, .5s); }

View File

@ -5,11 +5,11 @@
height: image-height($img);
}
@mixin selection($bg: #b4d5fe, $color: inherit){
@mixin selection($bg, $color: inherit, $text-shadow: none){
* {
&::-moz-selection { background: $bg; color: $color; text-shadow: darken($bg, 20) 0 1px 1px; }
&::-webkit-selection { background: $bg; color: $color; text-shadow: darken($bg, 20) 0 1px 1px;}
&::selection { background: $bg; color: $color; text-shadow: darken($bg, 20) 0 1px 1px; }
&::-moz-selection { background: $bg; color: $color; text-shadow: $text-shadow; }
&::-webkit-selection { background: $bg; color: $color; text-shadow: $text-shadow; }
&::selection { background: $bg; color: $color; text-shadow: $text-shadow; }
}
}