summaryrefslogtreecommitdiff
path: root/_sass/global.scss
diff options
context:
space:
mode:
Diffstat (limited to '_sass/global.scss')
-rw-r--r--_sass/global.scss48
1 files changed, 0 insertions, 48 deletions
diff --git a/_sass/global.scss b/_sass/global.scss
deleted file mode 100644
index d0bfa42..0000000
--- a/_sass/global.scss
+++ /dev/null
@@ -1,48 +0,0 @@
-$base03: #002b36;
-$base02: #073642;
-$base01: #586e75;
-$base00: #657b83;
-$base0: #839496;
-$base1: #93a1a1;
-$base2: #eee8d5;
-$base3: #fdf6e3;
-$yellow: #b58900;
-$orange: #cb4b16;
-$red: #dc322f;
-$magenta: #d33682;
-$violet: #6c71c4;
-$blue: #268bd2;
-$cyan: #2aa198;
-$green: #859900;
-$black: #000000;
-$white: #ffffff;
-
-$googleplus-color: #DD4B39;
-$facebook-color: #3b5998;
-$twitter-color: #55ACEE;
-$tumblr-color: rgb(44, 71, 98);
-$pinterest-color: #CB2027;
-
-$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;
- -moz-transition: $param $time $type;
- -o-transition: $param $time $type;
- -ms-transition: $param $time $type;
- transition: $param $time $type;
-}
-
-@mixin nav_button($c) {
- background-color: $c;
-
- &:hover {
- background-color: darken($c, 15%);
- }
-}