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.1 KiB

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