2015-05-01 09:39:03 -04:00
|
|
|
// Typography
|
2015-05-05 13:06:47 -04:00
|
|
|
$base-font-family: "Source Sans Pro", "Lucida Grande", "Tahoma", "Verdana", "Arial", sans-serif;
|
2015-05-01 09:39:03 -04:00
|
|
|
$heading-font-family: $base-font-family;
|
|
|
|
|
|
|
|
// Font Sizes
|
|
|
|
$base-font-size: 1em;
|
|
|
|
|
2015-05-05 13:06:47 -04:00
|
|
|
$h1-font-size: 1.5 * $base-font-size;
|
|
|
|
$h2-font-size: $h1-font-size;
|
|
|
|
|
2015-05-01 09:39:03 -04:00
|
|
|
// Line height
|
|
|
|
$base-line-height: 1.5;
|
|
|
|
$heading-line-height: 1.2;
|
|
|
|
|
|
|
|
// Other Sizes
|
2015-05-05 13:06:47 -04:00
|
|
|
$base-border-radius: 5px;
|
2015-05-01 09:39:03 -04:00
|
|
|
$base-spacing: $base-line-height * 1em;
|
|
|
|
$small-spacing: $base-spacing / 2;
|
|
|
|
$base-z-index: 0;
|
|
|
|
|
|
|
|
// Colors
|
2015-05-01 15:50:11 -04:00
|
|
|
$white: #fff;
|
|
|
|
$blue: #21b4f0;
|
|
|
|
$bright-blue: #24a3ec;
|
|
|
|
$dark-blue: #3f5975;
|
|
|
|
$dark-gray: #58595b;
|
|
|
|
$medium-gray: #c5c5c5;
|
|
|
|
$light-gray: #dfe3e7;
|
|
|
|
$green: #18ba37;
|
|
|
|
$yellow: #fff447;
|
|
|
|
|
2015-05-01 09:39:03 -04:00
|
|
|
|
|
|
|
// Font Colors
|
|
|
|
$base-background-color: #fff;
|
2015-05-01 15:50:11 -04:00
|
|
|
$alt-background-color: $dark-blue;
|
2015-05-01 09:39:03 -04:00
|
|
|
$base-font-color: $dark-gray;
|
2015-05-05 13:06:47 -04:00
|
|
|
$alt-font-color: $white;
|
2015-05-01 09:39:03 -04:00
|
|
|
$action-color: $blue;
|
2015-05-01 15:50:11 -04:00
|
|
|
$warning-color: $yellow;
|
|
|
|
$alt-action-color: $green;
|
2015-05-01 09:39:03 -04:00
|
|
|
|
|
|
|
// Border
|
2015-05-05 13:06:47 -04:00
|
|
|
$base-border-color: $medium-gray;
|
2015-05-01 09:39:03 -04:00
|
|
|
$base-border: 1px solid $base-border-color;
|
|
|
|
|
|
|
|
// Forms
|
|
|
|
$form-box-shadow: inset 0 1px 3px rgba(#000, 0.06);
|
|
|
|
$form-box-shadow-focus: $form-box-shadow, 0 0 5px adjust-color($action-color, $lightness: -5%, $alpha: -0.3);
|