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