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