// ------------------------------------------------------------------------------
//
// # Bootstrap variables overrides
//
// Custom overrides of Bootstrap variables
//
// Version: 1.0
// Latest update: May 25, 2015
//
// ------------------------------------------------------------------------------
//== Colors
//
//## Gray and brand colors for use across Bootstrap.
@gray-light: lighten(@gray-base, 60%); // #999
//## Brand colors for use across Bootstrap.
@brand-primary: @color-primary-500;
@brand-success: @color-success-500;
@brand-info: @color-info-500;
@brand-warning: @color-warning-500;
@brand-danger: @color-danger-500;
//== Scaffolding
//
//## Settings for some of the most global styles.
//** Background color for `
`.
@body-bg: #eeeded;
//** Global textual link color.
@link-color: @color-primary-600;
//** Link hover color set via `darken()` function.
@link-hover-color: darken(@link-color, 10%);
//** Link hover decoration.
@link-hover-decoration: none;
//== Typography
//
//## Font, line-height, and color for body text, headings, and more.
@font-family-sans-serif: "Roboto", Helvetica Neue, Helvetica, Arial, sans-serif;
@font-size-base: 13px;
@font-size-large: ceil((@font-size-base * 1.075)); // ~14px
@font-size-small: ceil((@font-size-base * 0.9)); // ~12px
@font-size-h1: ceil((@font-size-base * 1.9)); // ~25px
@font-size-h2: ceil((@font-size-base * 1.75)); // ~23px
@font-size-h3: ceil((@font-size-base * 1.6)); // ~21px
@font-size-h4: ceil((@font-size-base * 1.45)); // ~19px
@font-size-h5: ceil((@font-size-base * 1.3)); // ~17px
@font-size-h6: ceil((@font-size-base * 1.15)); // ~15px
//** Unit-less `line-height` for use in components like buttons.
@line-height-base: 1.5384616; // 20/13
//** Computed "line-height" (`font-size` * `line-height`) for use with `margin`, `padding`, etc.
@line-height-computed: floor((@font-size-base * @line-height-base)); // ~20px
//** By default, this inherits from the ``.
@headings-font-weight: 400;
@headings-line-height: @line-height-base;
//== Iconography
//
//## Specify custom location and filename of the included Glyphicons icon font. Useful for those including Bootstrap via Bower.
//** Load fonts from this directory.
@icon-font-path: "../css/icons/glyphicons/";
//== Components
//
//## Define common padding and border radius sizes and more. Values based on 14px text and 1.428 line-height (~20px to start).
@padding-base-vertical: 8px;
@padding-base-horizontal: 16px;
@padding-large-vertical: 9px;
@padding-large-horizontal: 18px;
@padding-small-vertical: 7px;
@padding-small-horizontal: 14px;
@padding-xs-vertical: 6px;
@padding-xs-horizontal: 12px;
@line-height-large: 1.4285715; // 20/14
@line-height-small: 1.6666667; // 20/12
@border-radius-base: 3px;
@border-radius-large: 4px;
@border-radius-small: 2px;
//** Global background color for active items (e.g., navs or dropdowns).
@component-active-bg: @color-teal-400;
//== Tables
//
//## Customizes the `.table` component with basic values, each used across all table variations.
//** Padding for `
`s and `
`s.
@table-cell-padding: 12px 20px;
//** Padding for cells in `.table-condensed`.
@table-condensed-cell-padding: @table-mini-cell-padding;
//** Background color used for `.table-striped`.
@table-bg-accent: #fcfcfc;
//** Background color used for `.table-hover`.
@table-bg-hover: #f8f8f8;
//== Buttons
//
//## For each of Bootstrap's buttons, define text, background and border color.
@btn-default-bg: #f5f5f5;
@btn-default-border: transparent;
@btn-primary-border: @btn-primary-bg;
@btn-success-border: @btn-success-bg;
@btn-info-border: @btn-info-bg;
@btn-warning-border: @btn-warning-bg;
@btn-danger-border: @btn-danger-bg;
//== Forms
//
//##
//** `` background color
@input-bg: transparent;
//** `` background color
@input-bg-disabled: @input-bg;
//** Text color for ``s
@input-color: @text-color;
//** `` border color
@input-border: #ddd;
// This has no effect on `