Browse Source

add default to scss variables

Doing so allows one to override default variables when writing custom SASS that imports Ratchet's SASS.
pull/471/head
Christian Seel 11 years ago
parent
commit
abc020333b
  1. 36
      sass/variables.scss

36
sass/variables.scss

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

Loading…
Cancel
Save