$bootstrap-sass-asset-helper: false !default;
// Journal 3.3.7
// Variables
// --------------------------------------------------
//== Colors
//
//## Gray and brand colors for use across Bootstrap.
$gray-base: #000 !default;
$gray-darker: lighten($gray-base, 13.5%) !default; // #222
$gray-dark: lighten($gray-base, 20%) !default; // #333
$gray: #777 !default; // #555
$gray-light: lighten($gray-base, 60%) !default; // #999
$gray-lighter: lighten($gray-base, 80%) !default; // #eee
$brand-primary: #EB6864 !default;
$brand-success: #22B24C !default;
$brand-info: #369 !default;
$brand-warning: #F5E625 !default;
$brand-danger: #F57A00 !default;
$theme-colors: (
primary: $brand-primary,
secondary: #999999,
success: $brand-success,
info: $brand-info,
warning: $brand-warning,
danger: $brand-danger,
light: $gray-light,
dark: $gray-dark
);
//== Scaffolding
//
//## Settings for some of the most global styles.
//** Background color for `
`.
$body-bg: #fff !default;
//** Global text color on ``.
$text-color: $gray !default;
//** Global textual link color.
$link-color: $brand-primary !default;
//** Link hover color set via `darken()` function.
$link-hover-color: darken($link-color, 15%) !default;
//** Link hover decoration.
$link-hover-decoration: underline !default;
//== Typography
//
//## Font, line-height, and color for body text, headings, and more.
$font-family-sans-serif: "News Cycle", "Arial Narrow Bold", sans-serif !default;
$font-family-serif: Georgia, "Times New Roman", Times, serif !default;
//** Default monospace fonts for ``, ``, and `
`.
$font-family-monospace: Menlo, Monaco, Consolas, "Courier New", monospace !default;
$font-family-base: $font-family-serif !default;
$font-size-base: 1rem !default;
$font-size-lg: ceil(($font-size-base * 1.25)) !default; // ~18px
$font-size-sm: ceil(($font-size-base * 0.85)) !default; // ~12px
$font-size-h1: floor(($font-size-base * 2.6)) !default; // ~36px
$font-size-h2: floor(($font-size-base * 2.15)) !default; // ~30px
$font-size-h3: ceil(($font-size-base * 1.7)) !default; // ~24px
$font-size-h4: ceil(($font-size-base * 1.25)) !default; // ~18px
$font-size-h5: $font-size-base !default;
$font-size-h6: ceil(($font-size-base * 0.85)) !default; // ~12px
//** Unit-less `line-height` for use in components like buttons.
$line-height-base: 1.428571429 !default; // 20/14
//** Computed "line-height" (`font-size` * `line-height`) for use with `margin`, `padding`, etc.
$line-height-computed: floor(($font-size-base * $line-height-base)) !default; // ~20px
//** By default, this inherits from the ``.
$headings-font-family: $font-family-sans-serif !default;
$headings-font-weight: 700 !default;
$headings-line-height: 1.1 !default;
$headings-color: #000 !default;
//== 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: if($bootstrap-sass-asset-helper, "bootstrap/", "../fonts/bootstrap/") !default;
//** File name for all font files.
$icon-font-name: "glyphicons-halflings-regular" !default;
//** Element ID within SVG icon file.
$icon-font-svg-id: "glyphicons_halflingsregular" !default;
//== 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: 0.5rem !default;
$padding-base-horizontal: 0.8rem !default;
$padding-large-vertical: 0.9rem !default;
$padding-large-horizontal: 1rem !default;
$padding-small-vertical: 0.3rem !default;
$padding-small-horizontal: 0.65rem !default;
$padding-xs-vertical: 1px !default;
$padding-xs-horizontal: 5px !default;
$line-height-lg: 1.3333333 !default; // extra decimals for Win 8.1 Chrome
$line-height-sm: 1.5 !default;
$border-width: 1px;
$border-radius: 0.2rem !default;
$border-radius-lg: 0.25rem !default;
$border-radius-sm: 0.15rem !default;
//** Global color for active items (e.g., navs or dropdowns).
$component-active-color: #fff !default;
//** Global background color for active items (e.g., navs or dropdowns).
$component-active-bg: $brand-primary !default;
//** Width of the `border` for generating carets that indicate dropdowns.
$caret-width-base: 4px !default;
//** Carets increase slightly in size for larger components.
$caret-width-large: 5px !default;
//== Tables
//
//## Customizes the `.table` component with basic values, each used across all table variations.
//** Padding for `
`s and `
`s.
$table-cell-padding: 8px !default;
//** Padding for cells in `.table-condensed`.
$table-condensed-cell-padding: 5px !default;
//** Default background color used for all tables.
$table-bg: transparent !default;
//** Background color used for `.table-striped`.
$table-bg-accent: #f9f9f9 !default;
//** Background color used for `.table-hover`.
$table-bg-hover: #f5f5f5 !default;
$table-bg-active: $table-bg-hover !default;
//** Border color for table and cell borders.
$table-border-color: #ddd !default;
//== Buttons
//
//## For each of Bootstrap's buttons, define text, background and border color.
$input-btn-padding-y: .35rem;
$input-btn-padding-x: .75rem;
$input-btn-line-height: 1.25;
$input-btn-padding-y-sm: .25rem;
$input-btn-padding-x-sm: .5rem;
$input-btn-line-height-sm: 1.5;
$input-btn-padding-y-lg: .5rem;
$input-btn-padding-x-lg: 1rem;
$input-btn-line-height-lg: 1.5;
$btn-font-weight: normal !default;
$btn-secondary-color: #fff !default;
$btn-secondary-bg: $gray-light !default;
$btn-secondary-border: $btn-secondary-bg !default;
$btn-primary-color: $btn-secondary-color !default;
$btn-primary-bg: $brand-primary !default;
$btn-primary-border: $btn-primary-bg !default;
$btn-success-color: $btn-secondary-color !default;
$btn-success-bg: $brand-success !default;
$btn-success-border: $btn-success-bg !default;
$btn-info-color: $btn-secondary-color !default;
$btn-info-bg: $brand-info !default;
$btn-info-border: $btn-info-bg !default;
$btn-warning-color: $btn-secondary-color !default;
$btn-warning-bg: $brand-warning !default;
$btn-warning-border: $btn-warning-bg !default;
$btn-danger-color: $btn-secondary-color !default;
$btn-danger-bg: $brand-danger !default;
$btn-danger-border: $btn-danger-bg !default;
$btn-link-disabled-color: $gray-light !default;
// Allows for customizing button radius independently from global border radius
$btn-border-radius: $border-radius !default;
$btn-border-radius-lg: $border-radius-lg !default;
$btn-border-radius-sm: $border-radius-sm !default;
//== Forms
//
//##
//** `` background color
$input-bg: #fff !default;
//** `` background color
$input-bg-disabled: $gray-lighter !default;
//** Text color for ``s
$input-color: $text-color !default;
//** `` border color
$input-border-color: #ccc !default;
$input-btn-border-width: $border-width; // For form controls and buttons
// TODO: Rename `$input-border-radius` to `$input-border-radius` in v4
//** Default `.form-control` border radius
// This has no effect on `