diff options
author | Ben Burwell <bburwell1@gmail.com> | 2014-12-20 23:13:09 -0500 |
---|---|---|
committer | Ben Burwell <bburwell1@gmail.com> | 2014-12-20 23:13:09 -0500 |
commit | 6fa536f3268bf7bd4fd85df7fa78fbc4c67eaaa1 (patch) | |
tree | c4655d32bc67fddf0dae94660d23e6d3db749367 /_sass/global.scss | |
parent | 53109fa5e1404c0f5cd4328135f5b5fd7c88b555 (diff) |
Working on some major changes
Diffstat (limited to '_sass/global.scss')
-rw-r--r-- | _sass/global.scss | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/_sass/global.scss b/_sass/global.scss index 9da4a39..d0bfa42 100644 --- a/_sass/global.scss +++ b/_sass/global.scss @@ -14,6 +14,8 @@ $violet: #6c71c4; $blue: #268bd2; $cyan: #2aa198; $green: #859900; +$black: #000000; +$white: #ffffff; $googleplus-color: #DD4B39; $facebook-color: #3b5998; @@ -25,6 +27,9 @@ $sans: 'open_sans', sans-serif; $serif: 'crimson_text', serif; $monospace: 'source_code_pro', monospace; +$link-fade-time: 0.4s; +$link-darken-amount: 20%; + // Mixin to deal with cross-browser transitions @mixin transition ($param, $time, $type) { -webkit-transition: $param $time $type; @@ -36,10 +41,8 @@ $monospace: 'source_code_pro', monospace; @mixin nav_button($c) { background-color: $c; - border-color: $c; - @include transition(all, 0.25s, linear); + &:hover { background-color: darken($c, 15%); - border-color: darken($c, 15%); } } |