Build mobile apps with simple HTML, CSS, and JS components. http://goratchet.com/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

59 lines
1.3 KiB

//
// Variables
// --------------------------------------------------
// Type
// --------------------------------------------------
$font-family-default: "Helvetica Neue", Helvetica, sans-serif !default;
$font-size-default: 17px !default;
$font-weight: 500 !default;
$font-weight-light: 400 !default;
$line-height-default: 21px !default;
// Colors
// --------------------------------------------------
// Main theme colors
$primary-color: #428bca !default;
$chrome-color: #fff !default;
// Action colors
$default-color: #fff !default;
$positive-color: #5cb85c !default;
$negative-color: #d9534f !default;
// Bars
// --------------------------------------------------
$bar-base-height: 44px !default;
$bar-tab-height: 50px !default;
$bar-side-spacing: 10px !default;
// Cards
// --------------------------------------------------
$card-bg: #fff !default;
// Buttons
// --------------------------------------------------
$button-font-size: 12px !default;
// Transitions
// --------------------------------------------------
$timing-fuction: cubic-bezier(.1,.5,.1,1) !default; // Inspired by @c2prods
// Borders
// --------------------------------------------------
$border-default-width: 1px;
$border-default: $border-default-width solid #ddd;
$border-radius: 6px !default;