2014-12-02 17:02:35 -05:00
// Variables
2015-03-09 10:18:25 -04:00
//
2015-08-11 02:38:41 -04:00
// Copy settings from this file into the provided `_custom.scss` to override
// the Bootstrap defaults without modifying key, versioned files.
2015-08-19 17:06:39 -04:00
// Table of Contents
2015-08-11 02:38:41 -04:00
//
// Colors
// Options
// Spacing
// Body
// Links
// Grid breakpoints
// Grid containers
// Grid columns
2015-08-12 21:22:02 -04:00
// Fonts
// Components
2014-12-02 17:02:35 -05:00
2016-02-07 05:53:35 -05:00
@mixin _assert-ascending ( $map , $map-name ) {
$prev-key : null ;
$prev-num : null ;
@each $key , $num in $map {
@if $prev-num != null and $prev-num >= $num {
@warn " Invalid value for #{ $map-name } : This map must be in ascending order, but key ' #{ $key } ' has value #{ $num } which isn't greater than #{ $prev-num } , the value of the previous key ' #{ $prev-key } ' ! " ;
}
$prev-key : $key ;
$prev-num : $num ;
}
}
2015-08-14 02:13:38 -04:00
// General variable structure
//
// Variable format should follow the `$component-modifier-state-property` order.
2014-12-02 17:02:35 -05:00
2015-03-09 10:18:25 -04:00
// Colors
2014-12-02 17:02:35 -05:00
//
2015-08-11 02:38:41 -04:00
// Grayscale and brand colors for use across Bootstrap.
2014-12-02 17:02:35 -05:00
2015-08-11 02:38:41 -04:00
$gray-dark : #373a3c !default ;
$gray : #55595c !default ;
$gray-light : #818a91 !default ;
$gray-lighter : #eceeef !default ;
$gray-lightest : #f7f7f9 !default ;
2014-12-02 17:02:35 -05:00
2015-08-11 02:38:41 -04:00
$brand-primary : #0275d8 !default ;
$brand-success : #5cb85c !default ;
$brand-info : #5bc0de !default ;
$brand-warning : #f0ad4e !default ;
$brand-danger : #d9534f !default ;
2014-12-02 17:02:35 -05:00
2015-08-11 02:38:41 -04:00
// Options
2014-12-02 17:02:35 -05:00
//
2015-08-11 02:38:41 -04:00
// Quickly modify global styling by enabling or disabling optional features.
$enable-flex : false !default ;
$enable-rounded : true !default ;
$enable-shadows : false !default ;
$enable-gradients : false !default ;
$enable-transitions : false !default ;
$enable-hover-media-query : false !default ;
2015-08-24 01:13:58 -04:00
$enable-grid-classes : true !default ;
2016-02-07 00:35:18 -05:00
$enable-print-styles : true !default ;
2015-08-11 02:38:41 -04:00
// Spacing
//
// Control the default styling of most Bootstrap elements by modifying these
// variables. Mostly focused on spacing.
2015-12-27 13:20:39 -05:00
// You can add more entries to the $spacers map, should you need more variation.
2015-08-11 02:38:41 -04:00
2016-01-07 03:19:48 -05:00
$spacer : 1 rem !default ;
$spacer-x : $spacer !default ;
$spacer-y : $spacer !default ;
2015-11-06 01:17:34 -05:00
$spacers : (
0 : (
2016-01-07 03:19:48 -05:00
x : 0 ,
y : 0
2015-11-06 01:17:34 -05:00
) ,
1 : (
2016-01-07 03:19:48 -05:00
x : $spacer-x ,
y : $ spacer-y
2015-11-06 01:17:34 -05:00
) ,
2 : (
2016-01-07 03:19:48 -05:00
x : ( $spacer-x * 1 .5 ) ,
y : ( $ spacer-y * 1 . 5 )
2015-11-06 01:17:34 -05:00
) ,
3 : (
2016-01-07 03:19:48 -05:00
x : ( $spacer-x * 3 ) ,
y : ( $ spacer-y * 3 )
2015-11-06 01:17:34 -05:00
)
) ! default ;
2016-01-07 03:19:48 -05:00
$border-width : 1 px !default ;
2015-08-11 02:38:41 -04:00
// Body
//
// Settings for the `<body>` element.
2014-12-02 17:02:35 -05:00
2016-01-07 03:20:25 -05:00
$body-bg : #fff !default ;
$body-color : $gray-dark !default ;
2015-08-11 02:38:41 -04:00
// Links
//
// Style anchor elements.
2014-12-02 17:02:35 -05:00
2016-01-07 03:20:25 -05:00
$link-color : $brand-primary !default ;
$link-decoration : none !default ;
$link-hover-color : darken ( $link-color , 15 % ) !default ;
$link-hover-decoration : underline !default ;
2014-12-02 17:02:35 -05:00
2015-08-11 02:38:41 -04:00
// Grid breakpoints
2014-12-02 17:02:35 -05:00
//
2016-02-16 04:24:34 -05:00
// Define the minimum dimensions at which your layout will change,
2015-08-11 02:38:41 -04:00
// adapting to different screen sizes, for use in media queries.
2014-12-02 17:02:35 -05:00
2015-08-11 02:38:41 -04:00
$grid-breakpoints : (
xs : 0 ,
2015-08-30 20:23:43 -04:00
sm : 544 px ,
md : 768 px ,
lg : 992 px ,
xl : 1200px
2015-08-11 02:38:41 -04:00
) ! default ;
2016-02-07 05:53:35 -05:00
@include _assert-ascending ( $grid-breakpoints , " $grid-breakpoints " ) ;
2014-12-02 17:02:35 -05:00
2015-04-29 14:48:58 -04:00
2015-08-11 02:38:41 -04:00
// Grid containers
2015-04-29 14:48:58 -04:00
//
2015-08-11 02:38:41 -04:00
// Define the maximum width of `.container` for different screen sizes.
2015-04-29 14:48:58 -04:00
2015-08-11 02:38:41 -04:00
$container-max-widths : (
2015-08-30 20:23:43 -04:00
sm : 576 px ,
md : 720 px ,
lg : 940 px ,
xl : 1140px
2015-08-11 02:38:41 -04:00
) ! default ;
2016-02-07 05:53:35 -05:00
@include _assert-ascending ( $container-max-widths , " $container-max-widths " ) ;
2015-08-11 02:38:41 -04:00
// Grid columns
//
// Set the number of columns and specify the width of the gutters.
2016-01-07 03:21:58 -05:00
$grid-columns : 12 !default ;
2016-02-06 23:12:55 -05:00
$grid-gutter-width : 30 px !default ;
2015-04-15 18:30:26 -04:00
2015-01-20 18:35:28 -05:00
2015-03-09 10:18:25 -04:00
// Typography
2014-12-02 17:02:35 -05:00
//
2015-03-09 10:18:25 -04:00
// Font, line-height, and color for body text, headings, and more.
2014-12-02 17:02:35 -05:00
2016-02-06 16:23:00 -05:00
$font-family-sans-serif : - apple-system , BlinkMacSystemFont , " Segoe UI " , " Roboto " , " Oxygen " , " Ubuntu " , " Cantarell " , " Fira Sans " , " Droid Sans " , " Helvetica Neue " , Arial , sans-serif !default ;
2016-01-07 03:21:58 -05:00
$font-family-serif : Georgia , " Times New Roman " , Times , serif !default ;
2016-01-09 01:54:24 -05:00
$font-family-monospace : Menlo , Monaco , Consolas , " Liberation Mono " , " Courier New " , monospace !default ;
2016-02-06 02:01:59 -05:00
$font-family-base : $font-family-sans-serif !default ;
2014-12-02 17:02:35 -05:00
2015-03-09 10:18:25 -04:00
// Pixel value used to responsively scale all typography. Applied to the `<html>` element.
2016-01-07 03:21:58 -05:00
$font-size-root : 16 px !default ;
2015-03-09 10:18:25 -04:00
2016-01-07 03:21:58 -05:00
$font-size-base : 1 rem !default ;
$font-size-lg : 1 .25 rem !default ;
$font-size-sm : .875 rem !default ;
$font-size-xs : .75 rem !default ;
2014-12-09 19:24:05 -05:00
2016-02-03 22:45:13 -05:00
$line-height-base : 1 .5 !default ;
2016-01-07 03:21:58 -05:00
$font-size-h1 : 2 .5 rem !default ;
$font-size-h2 : 2 rem !default ;
$font-size-h3 : 1 .75 rem !default ;
$font-size-h4 : 1 .5 rem !default ;
$font-size-h5 : 1 .25 rem !default ;
$font-size-h6 : 1 rem !default ;
2014-12-02 17:02:35 -05:00
2016-01-07 03:21:58 -05:00
$display1-size : 6 rem !default ;
$display2-size : 5 .5 rem !default ;
$display3-size : 4 .5 rem !default ;
$display4-size : 3 .5 rem !default ;
2015-08-10 00:17:27 -04:00
2016-01-07 03:21:58 -05:00
$display1-weight : 300 !default ;
$display2-weight : 300 !default ;
$display3-weight : 300 !default ;
$display4-weight : 300 !default ;
2015-08-10 00:17:27 -04:00
2016-01-07 03:21:58 -05:00
$headings-margin-bottom : ( $spacer / 2 ) !default ;
$headings-font-family : inherit !default ;
$headings-font-weight : 500 !default ;
$headings-line-height : 1 .1 !default ;
$headings-color : inherit !default ;
2014-12-02 17:02:35 -05:00
2016-01-07 03:21:58 -05:00
$lead-font-size : 1 .25 rem !default ;
$lead-font-weight : 300 !default ;
2015-08-14 02:18:32 -04:00
2016-02-16 02:59:53 -05:00
$small-font-size : 80 % !default ;
2016-01-07 03:21:58 -05:00
$text-muted : $gray-light !default ;
2015-08-14 02:18:32 -04:00
2016-01-07 03:21:58 -05:00
$abbr-border-color : $gray-light !default ;
2015-08-14 02:18:32 -04:00
2016-01-07 03:21:58 -05:00
$blockquote-small-color : $gray-light !default ;
$blockquote-font-size : ( $font-size-base * 1 .25 ) !default ;
$blockquote-border-color : $gray-lighter !default ;
2016-01-15 01:27:08 -05:00
$blockquote-border-width : .25 rem !default ;
2015-08-14 02:18:32 -04:00
2016-01-07 03:21:58 -05:00
$hr-border-color : rgba ( 0 , 0 , 0 ,. 1 ) !default ;
$hr-border-width : $border-width !default ;
2015-08-05 03:38:36 -04:00
2016-02-16 02:55:19 -05:00
$mark-padding : .2 em !default ;
2016-01-07 03:21:58 -05:00
$dt-font-weight : bold !default ;
2015-12-06 15:28:15 -05:00
2016-01-09 18:26:02 -05:00
$kbd-box-shadow : inset 0 - .1 rem 0 rgba ( 0 , 0 , 0 ,. 25 ) !default ;
2016-01-07 03:21:58 -05:00
$nested-kbd-font-weight : bold !default ;
2015-12-06 15:28:15 -05:00
2016-01-07 03:21:58 -05:00
$list-inline-padding : 5 px !default ;
2015-12-04 04:56:49 -05:00
2014-12-02 17:02:35 -05:00
2015-03-09 10:18:25 -04:00
// Components
2014-12-02 17:02:35 -05:00
//
2015-12-08 03:16:46 -05:00
// Define common padding and border radius sizes and more.
2014-12-02 17:02:35 -05:00
2015-08-25 01:49:45 -04:00
$line-height-lg : ( 4 / 3 ) !default ;
2014-12-09 19:24:05 -05:00
$line-height-sm : 1 .5 !default ;
2014-12-02 17:02:35 -05:00
2015-06-22 21:57:56 -04:00
$border-radius : .25 rem !default ;
2014-12-09 19:24:05 -05:00
$border-radius-lg : .3 rem !default ;
$border-radius-sm : .2 rem !default ;
2014-12-02 17:02:35 -05:00
2015-06-22 21:57:56 -04:00
$component-active-color : #fff !default ;
$component-active-bg : $brand-primary !default ;
2014-12-02 17:02:35 -05:00
2015-06-22 21:57:56 -04:00
$caret-width : .3 em !default ;
2015-06-22 21:53:04 -04:00
$caret-width-lg : $caret-width !default ;
2014-12-02 17:02:35 -05:00
2015-03-09 10:18:25 -04:00
// Tables
2014-12-02 17:02:35 -05:00
//
2015-03-09 10:18:25 -04:00
// Customizes the `.table` component with basic values, each used across all table variations.
2014-12-02 17:02:35 -05:00
2014-12-09 19:24:05 -05:00
$table-cell-padding : .75 rem !default ;
$table-sm-cell-padding : .3 rem !default ;
2014-12-02 17:02:35 -05:00
2014-12-09 19:24:05 -05:00
$table-bg : transparent !default ;
$table-bg-accent : #f9f9f9 !default ;
$table-bg-hover : #f5f5f5 !default ;
$table-bg-active : $table-bg-hover !default ;
2014-12-02 17:02:35 -05:00
2015-11-15 02:24:48 -05:00
$table-border-width : $border-width !default ;
2014-12-09 19:24:05 -05:00
$table-border-color : $gray-lighter !default ;
2014-12-02 17:02:35 -05:00
2015-03-09 10:18:25 -04:00
// Buttons
2014-12-02 17:02:35 -05:00
//
2015-03-09 10:18:25 -04:00
// For each of Bootstrap's buttons, define text, background and border color.
2014-12-02 17:02:35 -05:00
2015-08-23 18:44:16 -04:00
$btn-padding-x : 1 rem !default ;
2016-02-08 01:46:50 -05:00
$btn-padding-y : .5 rem !default ;
$btn-line-height : 1 .25 !default ;
2014-12-09 19:24:05 -05:00
$btn-font-weight : normal !default ;
2016-01-09 18:27:56 -05:00
$btn-box-shadow : inset 0 1 px 0 rgba ( 255 , 255 , 255 ,. 15 ) , 0 1 px 1 px rgba ( 0 , 0 , 0 ,. 075 ) !default ;
2016-01-09 18:14:36 -05:00
$btn-active-box-shadow : inset 0 3 px 5 px rgba ( 0 , 0 , 0 ,. 125 ) !default ;
2014-12-02 17:02:35 -05:00
2014-12-09 19:24:05 -05:00
$btn-primary-color : #fff !default ;
$btn-primary-bg : $brand-primary !default ;
2015-08-10 01:49:21 -04:00
$btn-primary-border : $btn-primary-bg !default ;
2014-12-02 17:02:35 -05:00
2014-12-09 19:24:05 -05:00
$btn-secondary-color : $gray-dark !default ;
$btn-secondary-bg : #fff !default ;
2015-04-29 14:42:38 -04:00
$btn-secondary-border : #ccc !default ;
2014-12-02 17:02:35 -05:00
2014-12-09 19:24:05 -05:00
$btn-info-color : #fff !default ;
$btn-info-bg : $brand-info !default ;
2015-08-10 01:49:21 -04:00
$btn-info-border : $btn-info-bg !default ;
2014-12-02 17:02:35 -05:00
2014-12-09 19:24:05 -05:00
$btn-success-color : #fff !default ;
$btn-success-bg : $brand-success !default ;
2015-08-10 01:49:21 -04:00
$btn-success-border : $btn-success-bg !default ;
2014-12-02 17:02:35 -05:00
2014-12-09 19:24:05 -05:00
$btn-warning-color : #fff !default ;
$btn-warning-bg : $brand-warning !default ;
2015-08-10 01:49:21 -04:00
$btn-warning-border : $btn-warning-bg !default ;
2014-12-02 17:02:35 -05:00
2014-12-09 19:24:05 -05:00
$btn-danger-color : #fff !default ;
$btn-danger-bg : $brand-danger !default ;
2015-08-10 01:49:21 -04:00
$btn-danger-border : $btn-danger-bg !default ;
2014-12-02 17:02:35 -05:00
2014-12-09 19:24:05 -05:00
$btn-link-disabled-color : $gray-light !default ;
2014-12-02 17:02:35 -05:00
2016-02-08 01:46:50 -05:00
$btn-padding-x-sm : .5 rem !default ;
2015-08-18 02:42:39 -04:00
$btn-padding-y-sm : .25 rem !default ;
2015-08-14 02:04:16 -04:00
2016-02-08 01:46:50 -05:00
$btn-padding-x-lg : 1 .5 rem !default ;
2015-08-14 02:04:16 -04:00
$btn-padding-y-lg : .75 rem !default ;
2015-12-08 03:18:24 -05:00
$btn-block-spacing-y : 5 px !default ;
2016-01-06 19:41:37 -05:00
$btn-toolbar-margin : 5 px !default ;
$split-btn-dropdown-toggle-padding-x : 8 px !default ;
$split-btn-lg-dropdown-toggle-padding-x : 12 px !default ;
2015-08-14 02:04:16 -04:00
2015-06-19 02:56:43 -04:00
// Allows for customizing button radius independently from global border radius
2015-08-23 18:44:16 -04:00
$btn-border-radius : $border-radius !default ;
$btn-border-radius-lg : $border-radius-lg !default ;
$btn-border-radius-sm : $border-radius-sm !default ;
2015-06-19 02:56:43 -04:00
2014-12-02 17:02:35 -05:00
2015-03-09 10:18:25 -04:00
// Forms
2014-12-02 17:02:35 -05:00
2015-08-14 02:04:16 -04:00
$input-padding-x : .75 rem !default ;
2016-02-08 01:46:50 -05:00
$input-padding-y : .5 rem !default ;
$input-line-height : 1 .25 !default ;
2015-08-14 02:04:16 -04:00
2014-12-09 19:24:05 -05:00
$input-bg : #fff !default ;
$input-bg-disabled : $gray-lighter !default ;
2014-12-02 17:02:35 -05:00
2014-12-09 19:24:05 -05:00
$input-color : $gray !default ;
2016-02-09 01:28:11 -05:00
$input-border-color : rgba ( 0 , 0 , 0 ,. 15 ) !default ;
2015-12-07 05:07:35 -05:00
$input-btn-border-width : $border-width !default ; // For form controls and buttons
2015-07-03 21:35:46 -04:00
$input-box-shadow : inset 0 1 px 1 px rgba ( 0 , 0 , 0 ,. 075 ) !default ;
2014-12-02 17:02:35 -05:00
2015-06-22 21:53:04 -04:00
$input-border-radius : $border-radius !default ;
2014-12-09 19:24:05 -05:00
$input-border-radius-lg : $border-radius-lg !default ;
$input-border-radius-sm : $border-radius-sm !default ;
2014-12-02 17:02:35 -05:00
2014-12-09 19:24:05 -05:00
$input-border-focus : #66afe9 !default ;
$input-box-shadow-focus : rgba ( 102 , 175 , 233 ,. 6 ) !default ;
2014-12-02 17:02:35 -05:00
2014-12-09 19:24:05 -05:00
$input-color-placeholder : #999 !default ;
2014-12-02 17:02:35 -05:00
2016-02-08 01:46:50 -05:00
$input-padding-x-sm : .5 rem !default ;
$input-padding-y-sm : .25 rem !default ;
2015-08-14 02:04:16 -04:00
2016-02-08 01:46:50 -05:00
$input-padding-x-lg : 1 .5 rem !default ;
2015-08-14 02:04:16 -04:00
$input-padding-y-lg : .75 rem !default ;
2016-02-03 22:45:13 -05:00
$input-height : (( $font-size-base * $line-height-base ) + ( $input-padding-y * 2 )) !default ;
2015-09-16 00:11:15 -04:00
$input-height-lg : (( $font-size-lg * $line-height-lg ) + ( $input-padding-y-lg * 2 )) !default ;
$input-height-sm : (( $font-size-sm * $line-height-sm ) + ( $input-padding-y-sm * 2 )) !default ;
2014-12-02 17:02:35 -05:00
2015-09-02 00:01:12 -04:00
$form-group-margin-bottom : $spacer-y !default ;
2015-03-01 17:11:22 -05:00
2014-12-09 19:24:05 -05:00
$input-group-addon-bg : $gray-lighter !default ;
2015-11-15 01:32:42 -05:00
$input-group-addon-border-color : $input-border-color !default ;
2014-12-02 17:02:35 -05:00
2014-12-09 19:24:05 -05:00
$cursor-disabled : not-allowed !default ;
2014-12-02 17:02:35 -05:00
2016-01-17 01:29:51 -05:00
$custom-control-gutter : 1 .5 rem !default ;
$custom-control-spacer-x : 1 rem !default ;
$custom-control-spacer-y : .25 rem !default ;
$custom-control-indicator-size : 1 rem !default ;
$custom-control-indicator-bg : #ddd !default ;
$custom-control-indicator-bg-size : 50 % 50 % !default ;
$custom-control-indicator-box-shadow : inset 0 .25 rem .25 rem rgba ( 0 , 0 , 0 ,. 1 ) !default ;
$custom-control-disabled-cursor : $cursor-disabled !default ;
$custom-control-disabled-indicator-bg : #eee !default ;
$custom-control-disabled-description-color : #767676 !default ;
$custom-control-checked-indicator-color : #fff !default ;
$custom-control-checked-indicator-bg : #0074d9 !default ;
$custom-control-checked-indicator-box-shadow : none !default ;
$custom-control-focus-indicator-box-shadow : 0 0 0 .075 rem #fff , 0 0 0 .2 rem #0074d9 !default ;
$custom-control-active-indicator-color : #fff !default ;
$custom-control-active-indicator-bg : #84c6ff !default ;
$custom-control-active-indicator-box-shadow : none !default ;
$custom-checkbox-radius : $border-radius !default ;
2016-02-06 20:00:57 -05:00
$custom-checkbox-checked-icon : url( "data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E" ) !default ;
2016-01-17 01:29:51 -05:00
$custom-checkbox-indeterminate-bg : #0074d9 !default ;
2016-02-06 20:00:57 -05:00
$custom-checkbox-indeterminate-icon : url( "data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='%23fff' d='M0 2h4'/%3E%3C/svg%3E" ) !default ;
2016-01-17 01:29:51 -05:00
$custom-checkbox-indeterminate-box-shadow : none !default ;
$custom-radio-radius : 50 % !default ;
2016-02-06 20:00:57 -05:00
$custom-radio-checked-icon : url( "data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E" ) !default ;
2016-01-17 01:29:51 -05:00
$custom-select-padding-x : .75 rem !default ;
$custom-select-padding-y : .375 rem !default ;
$custom-select-indicator-padding : 1 rem !default ; // Extra padding to account for the presence of the background-image based indicator
$custom-select-color : $input-color !default ;
$custom-select-bg : #fff !default ;
$custom-select-bg-size : 8 px 10 px !default ; // In pixels because image dimensions
2016-02-06 20:00:57 -05:00
$custom-select-indicator : url( "data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23333' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E" ) !default ;
2016-01-17 01:29:51 -05:00
$custom-select-border-width : $input-btn-border-width !default ;
$custom-select-border-color : $input-border-color !default ;
$custom-select-border-radius : $border-radius !default ;
$custom-select-focus-border-color : #51a7e8 !default ;
2016-02-06 15:29:53 -05:00
$custom-select-focus-box-shadow : inset 0 1 px 2 px rgba ( 0 , 0 , 0 , .075 ) , 0 0 5 px rgba ( 81 , 167 , 232 , .5 ) !default ;
2016-01-17 01:29:51 -05:00
$custom-select-sm-padding-y : .2 rem !default ;
$custom-select-sm-font-size : 75 % !default ;
2015-10-13 22:30:30 -04:00
2016-01-17 18:21:16 -05:00
$custom-file-height : 2 .5 rem !default ;
$custom-file-width : 14 rem !default ;
$custom-file-focus-box-shadow : 0 0 0 .075 rem #fff , 0 0 0 .2 rem #0074d9 !default ;
$custom-file-padding-x : .5 rem !default ;
$custom-file-padding-y : 1 rem !default ;
$custom-file-line-height : 1 .5 !default ;
$custom-file-color : #555 !default ;
$custom-file-bg : #fff !default ;
$custom-file-border-width : $border-width !default ;
$custom-file-border-color : #ddd !default ;
$custom-file-border-radius : $border-radius !default ;
$custom-file-box-shadow : inset 0 .2 rem .4 rem rgba ( 0 , 0 , 0 ,. 05 ) !default ;
$custom-file-button-color : $custom-file-color !default ;
$custom-file-button-bg : #eee !default ;
2016-01-17 23:50:55 -05:00
$custom-file-text : (
placeholder : (
en : " Choose file... "
) ,
button-label : (
en : " Browse "
)
) ! default ;
2015-10-13 22:30:30 -04:00
2015-08-13 01:39:36 -04:00
// Form validation icons
2016-02-06 21:05:07 -05:00
$form-icon-success : url( "data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%235cb85c' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E" ) !default ;
$form-icon-warning : url( "data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23f0ad4e' d='M4.4 5.324h-.8v-2.46h.8zm0 1.42h-.8V5.89h.8zM3.76.63L.04 7.075c-.115.2.016.425.26.426h7.397c.242 0 .372-.226.258-.426C6.726 4.924 5.47 2.79 4.253.63c-.113-.174-.39-.174-.494 0z'/%3E%3C/svg%3E" ) !default ;
$form-icon-danger : url( "data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23d9534f' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E" ) !default ;
2015-08-13 01:39:36 -04:00
2014-12-02 17:02:35 -05:00
2015-03-09 10:18:25 -04:00
// Dropdowns
2014-12-02 17:02:35 -05:00
//
2015-03-09 10:18:25 -04:00
// Dropdown menu container and contents.
2014-12-02 17:02:35 -05:00
2016-02-16 03:42:10 -05:00
$dropdown-min-width : 160 px !default ;
2016-02-17 00:07:24 -05:00
$dropdown-padding-y : 5 px !default ;
2016-02-17 00:13:15 -05:00
$dropdown-margin-top : 2 px !default ;
2014-12-09 19:24:05 -05:00
$dropdown-bg : #fff !default ;
2015-11-15 01:28:45 -05:00
$dropdown-border-color : rgba ( 0 , 0 , 0 ,. 15 ) !default ;
2015-11-15 01:30:16 -05:00
$dropdown-border-width : $border-width !default ;
2014-12-09 19:24:05 -05:00
$dropdown-divider-bg : #e5e5e5 !default ;
2016-01-09 18:31:29 -05:00
$dropdown-box-shadow : 0 6 px 12 px rgba ( 0 , 0 , 0 ,. 175 ) !default ;
2014-12-02 17:02:35 -05:00
2014-12-09 19:24:05 -05:00
$dropdown-link-color : $gray-dark !default ;
$dropdown-link-hover-color : darken ( $gray-dark , 5 % ) !default ;
$dropdown-link-hover-bg : #f5f5f5 !default ;
2014-12-02 17:02:35 -05:00
2014-12-09 19:24:05 -05:00
$dropdown-link-active-color : $component-active-color !default ;
$dropdown-link-active-bg : $component-active-bg !default ;
2014-12-02 17:02:35 -05:00
2014-12-09 19:24:05 -05:00
$dropdown-link-disabled-color : $gray-light !default ;
2014-12-02 17:02:35 -05:00
2016-02-17 00:16:55 -05:00
$dropdown-item-padding-x : 20 px !default ;
2014-12-09 19:24:05 -05:00
$dropdown-header-color : $gray-light !default ;
2014-12-02 17:02:35 -05:00
2015-03-09 10:18:25 -04:00
// Z-index master list
2014-12-02 17:02:35 -05:00
//
// Warning: Avoid customizing these values. They're used for a bird's eye view
// of components dependent on the z-axis and are designed to all work together.
2016-01-13 19:21:52 -05:00
$zindex-dropdown-backdrop : 990 !default ;
2014-12-09 19:24:05 -05:00
$zindex-navbar : 1000 !default ;
$zindex-dropdown : 1000 !default ;
$zindex-popover : 1060 !default ;
$zindex-tooltip : 1070 !default ;
$zindex-navbar-fixed : 1030 !default ;
2015-04-13 22:00:59 -04:00
$zindex-navbar-sticky : 1030 !default ;
2015-03-29 03:08:54 -04:00
$zindex-modal-bg : 1040 !default ;
$zindex-modal : 1050 !default ;
2014-12-02 17:02:35 -05:00
2015-03-09 10:18:25 -04:00
// Navbar
2014-12-02 17:02:35 -05:00
2015-08-18 03:46:29 -04:00
$navbar-border-radius : $border-radius !default ;
2015-12-08 04:30:23 -05:00
$navbar-padding-x : $spacer !default ;
$navbar-padding-y : ( $spacer / 2 ) !default ;
2016-02-17 02:11:25 -05:00
$navbar-brand-padding-y : .25 rem !default ;
2015-08-18 03:46:29 -04:00
2015-08-23 18:44:16 -04:00
$navbar-dark-color : rgba ( 255 , 255 , 255 ,. 5 ) !default ;
$navbar-dark-hover-color : rgba ( 255 , 255 , 255 ,. 75 ) !default ;
$navbar-dark-active-color : rgba ( 255 , 255 , 255 , 1 ) !default ;
$navbar-dark-disabled-color : rgba ( 255 , 255 , 255 ,. 25 ) !default ;
2015-08-18 03:46:29 -04:00
2015-08-23 18:44:16 -04:00
$navbar-light-color : rgba ( 0 , 0 , 0 ,. 3 ) !default ;
$navbar-light-hover-color : rgba ( 0 , 0 , 0 ,. 6 ) !default ;
$navbar-light-active-color : rgba ( 0 , 0 , 0 ,. 8 ) !default ;
$navbar-light-disabled-color : rgba ( 0 , 0 , 0 ,. 15 ) !default ;
2014-12-02 17:02:35 -05:00
2015-03-09 10:18:25 -04:00
// Navs
2014-12-02 17:02:35 -05:00
2016-01-06 18:47:28 -05:00
$nav-item-margin : .2 rem !default ;
$nav-item-inline-spacer : 1 rem !default ;
$nav-link-padding : .5 em 1 em !default ;
$nav-link-hover-bg : $gray-lighter !default ;
$nav-disabled-link-color : $gray-light !default ;
$nav-disabled-link-hover-color : $gray-light !default ;
$nav-disabled-link-hover-bg : transparent !default ;
$nav-tabs-border-color : #ddd !default ;
$nav-tabs-border-width : $border-width !default ;
$nav-tabs-link-hover-border-color : $gray-lighter !default ;
$nav-tabs-active-link-hover-color : $gray !default ;
2016-01-06 18:50:08 -05:00
$nav-tabs-active-link-hover-bg : $body-bg !default ;
2016-01-06 18:47:28 -05:00
$nav-tabs-active-link-hover-border-color : #ddd !default ;
$nav-tabs-justified-link-border-color : #ddd !default ;
$nav-tabs-justified-active-link-border-color : $body-bg !default ;
2016-01-06 18:50:08 -05:00
$nav-pills-border-radius : $border-radius !default ;
$nav-pills-active-link-color : $component-active-color !default ;
$nav-pills-active-link-bg : $component-active-bg !default ;
2014-12-02 17:02:35 -05:00
2015-03-09 10:18:25 -04:00
// Pagination
2014-12-02 17:02:35 -05:00
2015-08-14 02:04:16 -04:00
$pagination-padding-x : .75 rem !default ;
$pagination-padding-y : .5 rem !default ;
$pagination-padding-x-sm : .75 rem !default ;
$pagination-padding-y-sm : .275 rem !default ;
$pagination-padding-x-lg : 1 .5 rem !default ;
$pagination-padding-y-lg : .75 rem !default ;
2014-12-09 19:24:05 -05:00
$pagination-color : $link-color !default ;
$pagination-bg : #fff !default ;
2015-11-15 01:53:18 -05:00
$pagination-border-width : $border-width !default ;
2015-11-15 01:51:18 -05:00
$pagination-border-color : #ddd !default ;
2014-12-02 17:02:35 -05:00
2014-12-09 19:24:05 -05:00
$pagination-hover-color : $link-hover-color !default ;
$pagination-hover-bg : $gray-lighter !default ;
$pagination-hover-border : #ddd !default ;
2014-12-02 17:02:35 -05:00
2014-12-09 19:24:05 -05:00
$pagination-active-color : #fff !default ;
$pagination-active-bg : $brand-primary !default ;
$pagination-active-border : $brand-primary !default ;
2014-12-02 17:02:35 -05:00
2014-12-09 19:24:05 -05:00
$pagination-disabled-color : $gray-light !default ;
$pagination-disabled-bg : #fff !default ;
$pagination-disabled-border : #ddd !default ;
2014-12-02 17:02:35 -05:00
2015-03-09 10:18:25 -04:00
// Jumbotron
2014-12-02 17:02:35 -05:00
2014-12-09 19:24:05 -05:00
$jumbotron-padding : 2 rem !default ;
$jumbotron-bg : $gray-lighter !default ;
2014-12-02 17:02:35 -05:00
2015-03-09 10:18:25 -04:00
// Form states and alerts
2014-12-02 17:02:35 -05:00
//
2015-03-09 10:18:25 -04:00
// Define colors for form feedback states and, by default, alerts.
2014-12-02 17:02:35 -05:00
2014-12-09 19:24:05 -05:00
$state-success-text : #3c763d !default ;
$state-success-bg : #dff0d8 !default ;
$state-success-border : darken ( $state-success-bg , 5 % ) !default ;
2014-12-02 17:02:35 -05:00
2014-12-09 19:24:05 -05:00
$state-info-text : #31708f !default ;
$state-info-bg : #d9edf7 !default ;
$state-info-border : darken ( $state-info-bg , 7 % ) !default ;
2014-12-02 17:02:35 -05:00
2014-12-09 19:24:05 -05:00
$state-warning-text : #8a6d3b !default ;
$state-warning-bg : #fcf8e3 !default ;
2016-02-16 03:04:30 -05:00
$mark-bg : $state-warning-bg !default ;
2014-12-09 19:24:05 -05:00
$state-warning-border : darken ( $state-warning-bg , 5 % ) !default ;
2014-12-02 17:02:35 -05:00
2014-12-09 19:24:05 -05:00
$state-danger-text : #a94442 !default ;
$state-danger-bg : #f2dede !default ;
$state-danger-border : darken ( $state-danger-bg , 5 % ) !default ;
2014-12-02 17:02:35 -05:00
2015-08-19 17:34:26 -04:00
// Cards
2015-08-23 18:44:16 -04:00
$card-spacer-x : 1 .25 rem !default ;
$card-spacer-y : .75 rem !default ;
2015-12-08 03:49:31 -05:00
$card-border-width : 1 px !default ;
2015-10-12 19:32:15 -04:00
$card-border-radius : $border-radius !default ;
2016-01-17 21:55:24 -05:00
$card-border-color : rgba ( 0 , 0 , 0 ,. 125 ) !default ;
2015-12-08 03:49:31 -05:00
$card-border-radius-inner : $card-border-radius !default ;
2015-09-01 04:26:01 -04:00
$card-cap-bg : #f5f5f5 !default ;
2015-09-22 19:40:34 -04:00
$card-bg : #fff !default ;
2015-08-19 17:34:26 -04:00
2015-09-26 08:57:13 -04:00
$card-link-hover-color : #fff !default ;
2015-12-08 03:51:43 -05:00
$card-deck-margin : .625 rem !default ;
2016-02-17 02:00:58 -05:00
$card-columns-sm-up-column-gap : 1 .25 rem !default ;
2015-09-26 08:57:13 -04:00
2015-03-09 10:18:25 -04:00
// Tooltips
2014-12-02 17:02:35 -05:00
2014-12-09 19:24:05 -05:00
$tooltip-max-width : 200 px !default ;
$tooltip-color : #fff !default ;
$tooltip-bg : #000 !default ;
$tooltip-opacity : .9 !default ;
2015-12-08 03:31:43 -05:00
$tooltip-padding-y : 3 px !default ;
$tooltip-padding-x : 8 px !default ;
$tooltip-margin : 3 px !default ;
2014-12-02 17:02:35 -05:00
2014-12-09 19:24:05 -05:00
$tooltip-arrow-width : 5 px !default ;
$tooltip-arrow-color : $tooltip-bg !default ;
2014-12-02 17:02:35 -05:00
2015-03-09 10:18:25 -04:00
// Popovers
2014-12-02 17:02:35 -05:00
2014-12-09 19:24:05 -05:00
$popover-bg : #fff !default ;
$popover-max-width : 276 px !default ;
2015-11-15 02:11:20 -05:00
$popover-border-width : $border-width !default ;
2014-12-09 19:24:05 -05:00
$popover-border-color : rgba ( 0 , 0 , 0 ,. 2 ) !default ;
2016-01-09 18:33:13 -05:00
$popover-box-shadow : 0 5 px 10 px rgba ( 0 , 0 , 0 ,. 2 ) !default ;
2014-12-02 17:02:35 -05:00
2014-12-09 19:24:05 -05:00
$popover-title-bg : darken ( $popover-bg , 3 % ) !default ;
2016-01-09 17:46:04 -05:00
$popover-title-padding-x : 14 px !default ;
$popover-title-padding-y : 8 px !default ;
$popover-content-padding-x : 14 px !default ;
$popover-content-padding-y : 9 px !default ;
2014-12-02 17:02:35 -05:00
2014-12-09 19:24:05 -05:00
$popover-arrow-width : 10 px !default ;
$popover-arrow-color : $popover-bg !default ;
2014-12-02 17:02:35 -05:00
2016-01-13 19:16:14 -05:00
$popover-arrow-outer-width : ( $popover-arrow-width + 1 px ) !default ;
2016-02-06 15:29:53 -05:00
$popover-arrow-outer-color : fade-in ( $popover-border-color , .05 ) !default ;
2014-12-02 17:02:35 -05:00
2016-02-11 03:54:30 -05:00
// Tags
2016-02-16 23:28:51 -05:00
$tag-default-bg : $gray-light !default ;
$tag-primary-bg : $brand-primary !default ;
$tag-success-bg : $brand-success !default ;
$tag-info-bg : $brand-info !default ;
$tag-warning-bg : $brand-warning !default ;
$tag-danger-bg : $brand-danger !default ;
$tag-color : #fff !default ;
$tag-link-hover-color : #fff !default ;
$tag-font-size : 75 % !default ;
$tag-font-weight : bold !default ;
$tag-padding-x : .4 em !default ;
$tag-padding-y : .25 em !default ;
$tag-pill-padding-x : .6 em !default ;
2016-02-16 03:30:40 -05:00
// Use a higher than normal value to ensure completely rounded edges when
// customizing padding or font-size on labels.
2016-02-16 23:28:51 -05:00
$tag-pill-border-radius : 10 rem !default ;
2014-12-02 17:02:35 -05:00
2015-03-09 10:18:25 -04:00
// Modals
2014-12-02 17:02:35 -05:00
2015-03-09 10:18:25 -04:00
// Padding applied to the modal body
2014-12-09 19:24:05 -05:00
$modal-inner-padding : 15 px !default ;
2014-12-02 17:02:35 -05:00
2016-02-16 02:10:38 -05:00
$modal-dialog-margin : 10 px !default ;
2016-02-16 02:24:41 -05:00
$modal-dialog-sm-up-margin-y : 30 px !default ;
2016-02-16 02:10:38 -05:00
2014-12-09 19:24:05 -05:00
$modal-title-padding : 15 px !default ;
2016-02-03 22:45:13 -05:00
$modal-title-line-height : $line-height-base !default ;
2014-12-02 17:02:35 -05:00
2016-01-09 18:39:41 -05:00
$modal-content-bg : #fff !default ;
$modal-content-border-color : rgba ( 0 , 0 , 0 ,. 2 ) !default ;
2016-02-16 02:45:28 -05:00
$modal-content-border-width : $border-width !default ;
2016-01-09 18:39:41 -05:00
$modal-content-xs-box-shadow : 0 3 px 9 px rgba ( 0 , 0 , 0 ,. 5 ) !default ;
$modal-content-sm-up-box-shadow : 0 5 px 15 px rgba ( 0 , 0 , 0 ,. 5 ) !default ;
2014-12-02 17:02:35 -05:00
2014-12-09 19:24:05 -05:00
$modal-backdrop-bg : #000 !default ;
$modal-backdrop-opacity : .5 !default ;
$modal-header-border-color : #e5e5e5 !default ;
$modal-footer-border-color : $modal-header-border-color !default ;
2016-02-16 02:45:28 -05:00
$modal-header-border-width : $modal-content-border-width !default ;
2016-02-16 02:35:57 -05:00
$modal-footer-border-width : $modal-header-border-width !default ;
2014-12-02 17:02:35 -05:00
2014-12-09 19:24:05 -05:00
$modal-lg : 900 px !default ;
$modal-md : 600 px !default ;
$modal-sm : 300 px !default ;
2014-12-02 17:02:35 -05:00
2015-03-09 10:18:25 -04:00
// Alerts
2014-12-02 17:02:35 -05:00
//
2015-03-09 10:18:25 -04:00
// Define alert colors, border radius, and padding.
2014-12-02 17:02:35 -05:00
2014-12-09 19:24:05 -05:00
$alert-padding : 15 px !default ;
2015-06-22 21:53:04 -04:00
$alert-border-radius : $border-radius !default ;
2014-12-09 19:24:05 -05:00
$alert-link-font-weight : bold !default ;
2015-10-15 10:57:15 -04:00
$alert-border-width : $border-width !default ;
2014-12-02 17:02:35 -05:00
2014-12-09 19:24:05 -05:00
$alert-success-bg : $state-success-bg !default ;
$alert-success-text : $state-success-text !default ;
$alert-success-border : $state-success-border !default ;
2014-12-02 17:02:35 -05:00
2014-12-09 19:24:05 -05:00
$alert-info-bg : $state-info-bg !default ;
$alert-info-text : $state-info-text !default ;
$alert-info-border : $state-info-border !default ;
2014-12-02 17:02:35 -05:00
2014-12-09 19:24:05 -05:00
$alert-warning-bg : $state-warning-bg !default ;
$alert-warning-text : $state-warning-text !default ;
$alert-warning-border : $state-warning-border !default ;
2014-12-02 17:02:35 -05:00
2014-12-09 19:24:05 -05:00
$alert-danger-bg : $state-danger-bg !default ;
$alert-danger-text : $state-danger-text !default ;
$alert-danger-border : $state-danger-border !default ;
2014-12-02 17:02:35 -05:00
2015-03-09 10:18:25 -04:00
// Progress bars
2014-12-02 17:02:35 -05:00
2015-12-21 12:51:44 -05:00
$progress-bg : #eee !default ;
2015-12-21 12:45:55 -05:00
$progress-bar-color : #0074d9 !default ;
2015-06-22 21:53:04 -04:00
$progress-border-radius : $border-radius !default ;
2016-01-09 17:59:08 -05:00
$progress-box-shadow : inset 0 .1 rem .1 rem rgba ( 0 , 0 , 0 ,. 1 ) !default ;
2014-12-02 17:02:35 -05:00
2014-12-09 19:24:05 -05:00
$progress-bar-bg : $brand-primary !default ;
$progress-bar-success-bg : $brand-success !default ;
$progress-bar-warning-bg : $brand-warning !default ;
$progress-bar-danger-bg : $brand-danger !default ;
$progress-bar-info-bg : $brand-info !default ;
2014-12-02 17:02:35 -05:00
2015-03-09 10:18:25 -04:00
// List group
2014-12-02 17:02:35 -05:00
2014-12-09 19:24:05 -05:00
$list-group-bg : #fff !default ;
2015-11-15 15:43:42 -05:00
$list-group-border-color : #ddd !default ;
2015-11-15 15:46:35 -05:00
$list-group-border-width : $border-width !default ;
2015-06-22 21:53:04 -04:00
$list-group-border-radius : $border-radius !default ;
2014-12-02 17:02:35 -05:00
2014-12-09 19:24:05 -05:00
$list-group-hover-bg : #f5f5f5 !default ;
$list-group-active-color : $component-active-color !default ;
$list-group-active-bg : $component-active-bg !default ;
$list-group-active-border : $list-group-active-bg !default ;
$list-group-active-text-color : lighten ( $list-group-active-bg , 40 % ) !default ;
2014-12-02 17:02:35 -05:00
2014-12-09 19:24:05 -05:00
$list-group-disabled-color : $gray-light !default ;
$list-group-disabled-bg : $gray-lighter !default ;
$list-group-disabled-text-color : $list-group-disabled-color !default ;
2014-12-02 17:02:35 -05:00
2014-12-09 19:24:05 -05:00
$list-group-link-color : #555 !default ;
$list-group-link-hover-color : $list-group-link-color !default ;
$list-group-link-heading-color : #333 !default ;
2014-12-02 17:02:35 -05:00
2016-02-17 01:27:29 -05:00
$list-group-item-padding-x : 1 .25 rem !default ;
$list-group-item-padding-y : .75 rem !default ;
$list-group-item-heading-margin-bottom : 5 px !default ;
2016-02-17 01:57:10 -05:00
2014-12-02 17:02:35 -05:00
2015-08-11 02:29:36 -04:00
// Image thumbnails
2014-12-02 17:02:35 -05:00
2014-12-09 19:24:05 -05:00
$thumbnail-padding : .25 rem !default ;
$thumbnail-bg : $body-bg !default ;
2015-11-15 01:56:20 -05:00
$thumbnail-border-width : $border-width !default ;
2015-11-15 01:54:53 -05:00
$thumbnail-border-color : #ddd !default ;
2015-06-22 21:53:04 -04:00
$thumbnail-border-radius : $border-radius !default ;
2016-01-09 18:35:19 -05:00
$thumbnail-box-shadow : 0 1 px 2 px rgba ( 0 , 0 , 0 ,. 075 ) !default ;
2014-12-02 17:02:35 -05:00
2016-02-17 01:31:40 -05:00
// Figures
$figure-caption-font-size : 90 % !default ;
2015-03-09 10:18:25 -04:00
// Breadcrumbs
2014-12-02 17:02:35 -05:00
2015-12-08 05:20:25 -05:00
$breadcrumb-padding-y : .75 rem !default ;
$breadcrumb-padding-x : 1 rem !default ;
$breadcrumb-item-padding : .5 rem !default ;
2014-12-02 17:02:35 -05:00
2014-12-09 19:24:05 -05:00
$breadcrumb-bg : $gray-lighter !default ;
$breadcrumb-divider-color : $gray-light !default ;
$breadcrumb-active-color : $gray-light !default ;
$breadcrumb-divider : " / " !default ;
2014-12-02 17:02:35 -05:00
2016-01-09 17:34:59 -05:00
// Media objects
$media-margin-top : 15 px !default ;
$media-heading-margin-bottom : 5 px !default ;
$media-alignment-padding-x : 10 px !default ;
2015-03-09 10:18:25 -04:00
// Carousel
2014-12-02 17:02:35 -05:00
2014-12-09 19:24:05 -05:00
$carousel-text-shadow : 0 1 px 2 px rgba ( 0 , 0 , 0 ,. 6 ) !default ;
2014-12-02 17:02:35 -05:00
2014-12-09 19:24:05 -05:00
$carousel-control-color : #fff !default ;
$carousel-control-width : 15 % !default ;
2016-02-16 23:40:54 -05:00
$carousel-control-sm-up-size : 30 px !default ;
2014-12-09 19:24:05 -05:00
$carousel-control-opacity : .5 !default ;
$carousel-control-font-size : 20 px !default ;
2014-12-02 17:02:35 -05:00
2016-02-17 00:28:20 -05:00
$carousel-indicators-width : 60 % !default ;
2016-02-17 00:00:10 -05:00
$carousel-indicator-size : 10 px !default ;
$carousel-indicator-active-size : 12 px !default ;
2014-12-09 19:24:05 -05:00
$carousel-indicator-active-bg : #fff !default ;
$carousel-indicator-border-color : #fff !default ;
2014-12-02 17:02:35 -05:00
2016-02-17 00:32:39 -05:00
$carousel-caption-width : 70 % !default ;
$carousel-caption-sm-up-width : 60 % !default ;
2014-12-09 19:24:05 -05:00
$carousel-caption-color : #fff !default ;
2014-12-02 17:02:35 -05:00
2015-03-09 10:18:25 -04:00
// Close
2014-12-02 17:02:35 -05:00
2014-12-09 19:24:05 -05:00
$close-font-weight : bold !default ;
$close-color : #000 !default ;
$close-text-shadow : 0 1 px 0 #fff !default ;
2014-12-02 17:02:35 -05:00
2015-03-09 10:18:25 -04:00
// Code
2014-12-02 17:02:35 -05:00
2016-02-17 01:37:00 -05:00
$code-font-size : 90 % !default ;
2016-02-17 01:45:26 -05:00
$code-padding-x : .4 rem !default ;
$code-padding-y : .2 rem !default ;
2015-06-09 19:28:17 -04:00
$code-color : #bd4147 !default ;
2014-12-09 19:24:05 -05:00
$code-bg : #f7f7f9 !default ;
2014-12-02 17:02:35 -05:00
2014-12-09 19:24:05 -05:00
$kbd-color : #fff !default ;
$kbd-bg : #333 !default ;
2014-12-02 17:02:35 -05:00
2014-12-09 19:24:05 -05:00
$pre-bg : #f7f7f9 !default ;
$pre-color : $gray-dark !default ;
$pre-border-color : #ccc !default ;
$pre-scrollable-max-height : 340 px !default ;