aboutsummaryrefslogtreecommitdiff
path: root/.themes/classic/sass/base/_theme.scss
diff options
context:
space:
mode:
authorBrandon Mathis <brandon@imathis.com>2011-07-13 11:58:34 -0400
committerBrandon Mathis <brandon@imathis.com>2011-07-13 11:58:34 -0400
commitb0921c1e2707e561d71c4debd3b54466fa3f3b4a (patch)
treea4e6b35a224a408702d0166997efc138bd70c333 /.themes/classic/sass/base/_theme.scss
parentb0a610095fd80f51c21ff49ddbe7aa98ea434ebc (diff)
downloadmy_new_personal_website-b0921c1e2707e561d71c4debd3b54466fa3f3b4a.tar.xz
my_new_personal_website-b0921c1e2707e561d71c4debd3b54466fa3f3b4a.zip
Updated default link colors, hovers, sidebar link colors, etc
Diffstat (limited to '.themes/classic/sass/base/_theme.scss')
-rw-r--r--.themes/classic/sass/base/_theme.scss10
1 files changed, 6 insertions, 4 deletions
diff --git a/.themes/classic/sass/base/_theme.scss b/.themes/classic/sass/base/_theme.scss
index 34474fa1..27a6aabf 100644
--- a/.themes/classic/sass/base/_theme.scss
+++ b/.themes/classic/sass/base/_theme.scss
@@ -3,9 +3,9 @@ $img-border: inline-image('dotted-border.png');
// Main Link Colors
$link-color: lighten(#165b94, 3) !default;
-$link-color-hover: adjust-hue($link-color, -200) !default;
-$link-color-visited: darken(adjust_hue($link_color, 70), 10) !default;
-$link-color-active: darken($link-color-hover, 15) !default;
+$link-color-hover: adjust-color($link-color, $lightness: 10, $saturation: 25) !default;
+$link-color-visited: adjust-color($link-color, $hue: 80, $lightness: -2) !default;
+$link-color-active: adjust-color($link-color-hover, $lightness: -15) !default;
// Main Section Colors
$main-bg: #f8f8f8 !default;
@@ -64,7 +64,9 @@ $page-border-bottom: darken($footer-bg, 5) !default;
article a, #articles + aside a {
@include link-colors($link-color, $hover: $link-color-hover, $focus: $link-color-hover, $visited: $link-color-visited, $active: $link-color-active);
}
-a { @include transition(color, .5s); }
+a {
+ @include transition(color, .3s);
+}
html {
background: $page-bg image-url('line-tile.png') top left;