variables.scss 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. //
  2. // Variables
  3. // --------------------------------------------------
  4. // Type
  5. // --------------------------------------------------
  6. $font-family-default: "Helvetica Neue", Helvetica, sans-serif !default;
  7. $font-size-default: 17px !default;
  8. $font-weight: 500 !default;
  9. $font-weight-light: 400 !default;
  10. $line-height-default: 21px !default;
  11. // Colors
  12. // --------------------------------------------------
  13. // Main theme colors
  14. $primary-color: #428bca !default;
  15. $chrome-color: #fff !default;
  16. // Action colors
  17. $default-color: #fff !default;
  18. $positive-color: #5cb85c !default;
  19. $negative-color: #d9534f !default;
  20. // Bars
  21. // --------------------------------------------------
  22. $bar-base-height: 44px !default;
  23. $bar-tab-height: 50px !default;
  24. $bar-side-spacing: 10px !default;
  25. // Cards
  26. // --------------------------------------------------
  27. $card-bg: #fff !default;
  28. // Buttons
  29. // --------------------------------------------------
  30. $button-font-size: 12px !default;
  31. // Transitions
  32. // --------------------------------------------------
  33. $timing-fuction: cubic-bezier(.1,.5,.1,1) !default; // Inspired by @c2prods
  34. // Borders
  35. // --------------------------------------------------
  36. $border-default: 1px solid #ddd !default;
  37. $border-radius: 6px !default;