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.
58 lines
1.1 KiB
58 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; |
|
|
|
|
|
// Cards |
|
// -------------------------------------------------- |
|
|
|
$card-bg: #fff; |
|
|
|
|
|
// Buttons |
|
// -------------------------------------------------- |
|
|
|
$button-font-size: 12px; |
|
|
|
|
|
// Transitions |
|
// -------------------------------------------------- |
|
|
|
$timing-fuction: cubic-bezier(.1,.5,.1,1); // Inspired by @c2prods |
|
|
|
|
|
// Borders |
|
// -------------------------------------------------- |
|
|
|
$border-default: 1px solid #ddd; |
|
$border-radius: 6px;
|
|
|