`, and ``.
49 | $font-family-monospace: Menlo, Monaco, Consolas, "Courier New", monospace !default;
50 | $font-family-base: $font-family-sans-serif !default;
51 |
52 | $font-size-base: 14px !default;
53 | $font-size-large: ceil(($font-size-base * 1.25)) !default; // ~18px
54 | $font-size-small: ceil(($font-size-base * 0.85)) !default; // ~12px
55 |
56 | $font-size-h1: floor(($font-size-base * 2.6)) !default; // ~36px
57 | $font-size-h2: floor(($font-size-base * 2.15)) !default; // ~30px
58 | $font-size-h3: ceil(($font-size-base * 1.7)) !default; // ~24px
59 | $font-size-h4: ceil(($font-size-base * 1.25)) !default; // ~18px
60 | $font-size-h5: $font-size-base !default;
61 | $font-size-h6: ceil(($font-size-base * 0.85)) !default; // ~12px
62 |
63 | //** Unit-less `line-height` for use in components like buttons.
64 | $line-height-base: 1.428571429 !default; // 20/14
65 | //** Computed "line-height" (`font-size` * `line-height`) for use with `margin`, `padding`, etc.
66 | $line-height-computed: floor(($font-size-base * $line-height-base)) !default; // ~20px
67 |
68 | //** By default, this inherits from the ``.
69 | $headings-font-family: inherit !default;
70 | $headings-font-weight: 500 !default;
71 | $headings-line-height: 1.1 !default;
72 | $headings-color: inherit !default;
73 |
74 |
75 | //== Iconography
76 | //
77 | //## Specify custom location and filename of the included Glyphicons icon font. Useful for those including Bootstrap via Bower.
78 |
79 | //** Load fonts from this directory.
80 |
81 | // [converter] If $bootstrap-sass-asset-helper if used, provide path relative to the assets load path.
82 | // [converter] This is because some asset helpers, such as Sprockets, do not work with file-relative paths.
83 | $icon-font-path: if($bootstrap-sass-asset-helper, "bootstrap/", "../fonts/bootstrap/") !default;
84 |
85 | //** File name for all font files.
86 | $icon-font-name: "glyphicons-halflings-regular" !default;
87 | //** Element ID within SVG icon file.
88 | $icon-font-svg-id: "glyphicons_halflingsregular" !default;
89 |
90 |
91 | //== Components
92 | //
93 | //## Define common padding and border radius sizes and more. Values based on 14px text and 1.428 line-height (~20px to start).
94 |
95 | $padding-base-vertical: 6px !default;
96 | $padding-base-horizontal: 12px !default;
97 |
98 | $padding-large-vertical: 10px !default;
99 | $padding-large-horizontal: 16px !default;
100 |
101 | $padding-small-vertical: 5px !default;
102 | $padding-small-horizontal: 10px !default;
103 |
104 | $padding-xs-vertical: 1px !default;
105 | $padding-xs-horizontal: 5px !default;
106 |
107 | $line-height-large: 1.3333333 !default; // extra decimals for Win 8.1 Chrome
108 | $line-height-small: 1.5 !default;
109 |
110 | $border-radius-base: 4px !default;
111 | $border-radius-large: 6px !default;
112 | $border-radius-small: 3px !default;
113 |
114 | //** Global color for active items (e.g., navs or dropdowns).
115 | $component-active-color: #fff !default;
116 | //** Global background color for active items (e.g., navs or dropdowns).
117 | $component-active-bg: $brand-primary !default;
118 |
119 | //** Width of the `border` for generating carets that indicate dropdowns.
120 | $caret-width-base: 4px !default;
121 | //** Carets increase slightly in size for larger components.
122 | $caret-width-large: 5px !default;
123 |
124 |
125 | //== Tables
126 | //
127 | //## Customizes the `.table` component with basic values, each used across all table variations.
128 |
129 | //** Padding for ``s and ` | `s.
130 | $table-cell-padding: 8px !default;
131 | //** Padding for cells in `.table-condensed`.
132 | $table-condensed-cell-padding: 5px !default;
133 |
134 | //** Default background color used for all tables.
135 | $table-bg: transparent !default;
136 | //** Background color used for `.table-striped`.
137 | $table-bg-accent: #f9f9f9 !default;
138 | //** Background color used for `.table-hover`.
139 | $table-bg-hover: #f5f5f5 !default;
140 | $table-bg-active: $table-bg-hover !default;
141 |
142 | //** Border color for table and cell borders.
143 | $table-border-color: #ddd !default;
144 |
145 |
146 | //== Buttons
147 | //
148 | //## For each of Bootstrap's buttons, define text, background and border color.
149 |
150 | $btn-font-weight: normal !default;
151 |
152 | $btn-default-color: #333 !default;
153 | $btn-default-bg: #fff !default;
154 | $btn-default-border: #ccc !default;
155 |
156 | $btn-primary-color: #fff !default;
157 | $btn-primary-bg: $brand-primary !default;
158 | $btn-primary-border: darken($btn-primary-bg, 5%) !default;
159 |
160 | $btn-success-color: #fff !default;
161 | $btn-success-bg: $brand-success !default;
162 | $btn-success-border: darken($btn-success-bg, 5%) !default;
163 |
164 | $btn-info-color: #fff !default;
165 | $btn-info-bg: $brand-info !default;
166 | $btn-info-border: darken($btn-info-bg, 5%) !default;
167 |
168 | $btn-warning-color: #fff !default;
169 | $btn-warning-bg: $brand-warning !default;
170 | $btn-warning-border: darken($btn-warning-bg, 5%) !default;
171 |
172 | $btn-danger-color: #fff !default;
173 | $btn-danger-bg: $brand-danger !default;
174 | $btn-danger-border: darken($btn-danger-bg, 5%) !default;
175 |
176 | $btn-link-disabled-color: $gray-light !default;
177 |
178 | // Allows for customizing button radius independently from global border radius
179 | $btn-border-radius-base: $border-radius-base !default;
180 | $btn-border-radius-large: $border-radius-large !default;
181 | $btn-border-radius-small: $border-radius-small !default;
182 |
183 |
184 | //== Forms
185 | //
186 | //##
187 |
188 | //** `` background color
189 | $input-bg: #fff !default;
190 | //** `` background color
191 | $input-bg-disabled: $gray-lighter !default;
192 |
193 | //** Text color for ``s
194 | $input-color: $gray !default;
195 | //** `` border color
196 | $input-border: #ccc !default;
197 |
198 | // TODO: Rename `$input-border-radius` to `$input-border-radius-base` in v4
199 | //** Default `.form-control` border radius
200 | // This has no effect on ` |