_variables.scss (761B)
1 // Colors 2 $default-color: #555; 3 $default-shade: #353535; 4 $default-tint: #aaa; 5 $grey-1: #979797; 6 $grey-2: #e5e5e5; 7 $grey-3: #f9f9f9; 8 $white: #fff; 9 $blue: #4a9ae1; 10 $shadow-color: rgba(0, 0, 0, .2); 11 $code-color: #bf616a; 12 13 // Fonts 14 $serif-primary: 'Libre Baskerville', 'Times New Roman', Times, serif; 15 $serif-secondary: Palatino, 'Palatino LT STD', 'Palatino Linotype', 'Book Antiqua', 'Georgia', serif; 16 $sans-serif: 'Helvetica Neue', 'Segoe UI', Helvetica, Arial, sans-serif; 17 $monospaced: Menlo, Monaco, monospace; 18 19 @mixin box-sizing($type: border-box) { 20 -webkit-box-sizing: $type; 21 -moz-box-sizing: $type; 22 box-sizing: $type; 23 } 24 25 @mixin transition($args...) { 26 -webkit-transition: $args; 27 -moz-transition: $args; 28 transition: $args; 29 }