bootswatch 4.0.0.alpha1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (50) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +19 -0
  3. data/Gemfile +4 -0
  4. data/LICENSE.txt +22 -0
  5. data/README.md +45 -0
  6. data/Rakefile +60 -0
  7. data/app/assets/stylesheets/bootswatch/cerulean/_bootswatch.scss +71 -0
  8. data/app/assets/stylesheets/bootswatch/cerulean/_variables.scss +855 -0
  9. data/app/assets/stylesheets/bootswatch/cosmo/_bootswatch.scss +45 -0
  10. data/app/assets/stylesheets/bootswatch/cosmo/_variables.scss +855 -0
  11. data/app/assets/stylesheets/bootswatch/custom/_bootswatch.scss +21 -0
  12. data/app/assets/stylesheets/bootswatch/custom/_variables.scss +857 -0
  13. data/app/assets/stylesheets/bootswatch/cyborg/_bootswatch.scss +140 -0
  14. data/app/assets/stylesheets/bootswatch/cyborg/_variables.scss +855 -0
  15. data/app/assets/stylesheets/bootswatch/darkly/_bootswatch.scss +146 -0
  16. data/app/assets/stylesheets/bootswatch/darkly/_variables.scss +855 -0
  17. data/app/assets/stylesheets/bootswatch/flatly/_bootswatch.scss +116 -0
  18. data/app/assets/stylesheets/bootswatch/flatly/_variables.scss +855 -0
  19. data/app/assets/stylesheets/bootswatch/journal/_bootswatch.scss +65 -0
  20. data/app/assets/stylesheets/bootswatch/journal/_variables.scss +857 -0
  21. data/app/assets/stylesheets/bootswatch/litera/_bootswatch.scss +130 -0
  22. data/app/assets/stylesheets/bootswatch/litera/_variables.scss +855 -0
  23. data/app/assets/stylesheets/bootswatch/lumen/_bootswatch.scss +298 -0
  24. data/app/assets/stylesheets/bootswatch/lumen/_variables.scss +855 -0
  25. data/app/assets/stylesheets/bootswatch/lux/_bootswatch.scss +115 -0
  26. data/app/assets/stylesheets/bootswatch/lux/_variables.scss +857 -0
  27. data/app/assets/stylesheets/bootswatch/materia/_bootswatch.scss +614 -0
  28. data/app/assets/stylesheets/bootswatch/materia/_variables.scss +857 -0
  29. data/app/assets/stylesheets/bootswatch/minty/_bootswatch.scss +89 -0
  30. data/app/assets/stylesheets/bootswatch/minty/_variables.scss +856 -0
  31. data/app/assets/stylesheets/bootswatch/pulse/_bootswatch.scss +126 -0
  32. data/app/assets/stylesheets/bootswatch/pulse/_variables.scss +857 -0
  33. data/app/assets/stylesheets/bootswatch/sandstone/_bootswatch.scss +156 -0
  34. data/app/assets/stylesheets/bootswatch/sandstone/_variables.scss +855 -0
  35. data/app/assets/stylesheets/bootswatch/simplex/_bootswatch.scss +106 -0
  36. data/app/assets/stylesheets/bootswatch/simplex/_variables.scss +857 -0
  37. data/app/assets/stylesheets/bootswatch/slate/_bootswatch.scss +278 -0
  38. data/app/assets/stylesheets/bootswatch/slate/_variables.scss +856 -0
  39. data/app/assets/stylesheets/bootswatch/spacelab/_bootswatch.scss +129 -0
  40. data/app/assets/stylesheets/bootswatch/spacelab/_variables.scss +855 -0
  41. data/app/assets/stylesheets/bootswatch/superhero/_bootswatch.scss +140 -0
  42. data/app/assets/stylesheets/bootswatch/superhero/_variables.scss +856 -0
  43. data/app/assets/stylesheets/bootswatch/united/_bootswatch.scss +36 -0
  44. data/app/assets/stylesheets/bootswatch/united/_variables.scss +855 -0
  45. data/app/assets/stylesheets/bootswatch/yeti/_bootswatch.scss +304 -0
  46. data/app/assets/stylesheets/bootswatch/yeti/_variables.scss +855 -0
  47. data/bootswatch.gemspec +23 -0
  48. data/lib/bootswatch.rb +6 -0
  49. data/lib/bootswatch/version.rb +3 -0
  50. metadata +120 -0
@@ -0,0 +1,278 @@
1
+ // Slate 4.0.0
2
+ // Bootswatch
3
+
4
+
5
+ @mixin btn-shadow($color){
6
+ @include gradient-y-three-colors(lighten($color, 6%), $color, 60%, darken($color, 4%));
7
+ filter: none;
8
+ }
9
+
10
+ @mixin btn-shadow-inverse($color){
11
+ @include gradient-y-three-colors(darken($color, 18%), darken($color, 15%), 40%, darken($color, 13%));
12
+ filter: none;
13
+ }
14
+
15
+ // Navbar ======================================================================
16
+
17
+ .navbar {
18
+ border: 1px solid rgba(0, 0, 0, 0.6);
19
+ text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
20
+
21
+ .container {
22
+ padding: 0;
23
+ }
24
+
25
+ .navbar-nav {
26
+ margin-top: 0;
27
+ }
28
+
29
+ .navbar-toggler {
30
+ border-color: rgba(0, 0, 0, 0.6);
31
+ margin-top: 0.5rem;
32
+ margin-right: 0.5rem;
33
+ }
34
+
35
+ &-fixed-top {
36
+ border-width: 0 0 1px 0;
37
+ }
38
+
39
+ &-fixed-bottom {
40
+ border-width: 1px 0 0 0;
41
+ }
42
+
43
+ .nav-link {
44
+ padding: 1rem;
45
+ border-left: 1px solid rgba(255, 255, 255, 0.1);
46
+ border-right: 1px solid rgba(0, 0, 0, 0.2);
47
+
48
+ &:hover,
49
+ &:focus {
50
+ @include btn-shadow-inverse($gray);
51
+ border-left: 1px solid rgba(0, 0, 0, 0.2);
52
+ }
53
+ }
54
+
55
+ &-brand {
56
+ padding: 0.75rem 1rem calc(54px - 0.75rem - 30px);
57
+ margin-right: 0;
58
+ border-right: 1px solid rgba(0, 0, 0, 0.2);
59
+ }
60
+
61
+ .nav-item.active .nav-link {
62
+ background-color: rgba(0, 0, 0, 0.3);
63
+ border-left: 1px solid rgba(0, 0, 0, 0.2);
64
+ }
65
+
66
+ &-nav .nav-item + .nav-item {
67
+ margin-left: 0;
68
+ }
69
+
70
+ .form-inline {
71
+ padding-top: 0.35rem;
72
+ }
73
+ }
74
+
75
+ .bg-primary {
76
+ background-color: $gray !important;
77
+ }
78
+
79
+ .bg-inverse {
80
+ background-color: $brand-primary !important;
81
+ }
82
+
83
+ .bg-faded {
84
+ background-color: $gray-lighter;
85
+ }
86
+
87
+ // Buttons =====================================================================
88
+
89
+ .btn,
90
+ .btn:hover {
91
+ border-color: rgba(0, 0, 0, 0.6);
92
+ text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
93
+ }
94
+
95
+ .btn-primary {
96
+ @include btn-shadow($btn-primary-bg);
97
+
98
+ &:hover {
99
+ @include btn-shadow-inverse($btn-primary-bg);
100
+ }
101
+ }
102
+
103
+ .btn-secondary {
104
+ @include btn-shadow($btn-secondary-bg);
105
+
106
+ &:hover {
107
+ @include btn-shadow-inverse($btn-secondary-bg);
108
+ }
109
+ }
110
+
111
+ .btn-success {
112
+ @include btn-shadow($btn-success-bg);
113
+
114
+ &:hover {
115
+ @include btn-shadow-inverse($btn-success-bg);
116
+ }
117
+ }
118
+
119
+ .btn-info {
120
+ @include btn-shadow($btn-info-bg);
121
+
122
+ &:hover {
123
+ @include btn-shadow-inverse($btn-info-bg);
124
+ }
125
+ }
126
+
127
+ .btn-warning {
128
+ @include btn-shadow($btn-warning-bg);
129
+
130
+ &:hover {
131
+ @include btn-shadow-inverse($btn-warning-bg);
132
+ }
133
+ }
134
+
135
+ .btn-danger {
136
+ @include btn-shadow($btn-danger-bg);
137
+
138
+ &:hover {
139
+ @include btn-shadow-inverse($btn-danger-bg);
140
+ }
141
+ }
142
+
143
+ .btn-link,
144
+ .btn-link:hover {
145
+ border-color: transparent;
146
+ }
147
+
148
+ .btn-group,
149
+ .btn-group-vertical {
150
+
151
+ .btn.active {
152
+ border-color: rgba(0, 0, 0, 0.6);
153
+ }
154
+ }
155
+
156
+ // Typography ==================================================================
157
+
158
+ h1, h2, h3, h4, h5, h6 {
159
+ text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.3);
160
+ }
161
+
162
+ // Tables ======================================================================
163
+
164
+ .table {
165
+ &-success,
166
+ &-info,
167
+ &-warning,
168
+ &-danger {
169
+ color: #fff;
170
+ }
171
+ }
172
+
173
+ // Forms =======================================================================
174
+
175
+ legend {
176
+ color: #fff;
177
+ }
178
+
179
+ .input-group-addon {
180
+ @include btn-shadow($btn-secondary-bg);
181
+ text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
182
+ color: $btn-secondary-color;
183
+ }
184
+
185
+ // Navs ========================================================================
186
+
187
+ .nav-tabs {
188
+
189
+ .nav-link,
190
+ .nav-link:hover {
191
+ color: #fff;
192
+ }
193
+ }
194
+
195
+ .nav-pills {
196
+
197
+ .nav-link {
198
+ @include btn-shadow($gray);
199
+ border: 1px solid rgba(0, 0, 0, 0.6);
200
+ text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
201
+ color: #fff;
202
+
203
+ &:hover {
204
+ @include btn-shadow-inverse($gray);
205
+ border: 1px solid rgba(0, 0, 0, 0.6);
206
+ }
207
+ }
208
+
209
+ .nav-link.active,
210
+ .nav-link:hover {
211
+ background-color: transparent;
212
+ @include btn-shadow-inverse($gray);
213
+ border: 1px solid rgba(0, 0, 0, 0.6);
214
+ }
215
+
216
+ .nav-link.disabled,
217
+ .nav-link.disabled:hover {
218
+ @include btn-shadow($gray);
219
+ color: $nav-disabled-link-color;
220
+ }
221
+ }
222
+
223
+ .pagination {
224
+
225
+ .page-link {
226
+ text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
227
+ @include btn-shadow($gray);
228
+
229
+ &:hover {
230
+ @include btn-shadow-inverse($gray);
231
+ text-decoration: none;
232
+ }
233
+ }
234
+
235
+ .page-item.active .page-link {
236
+ @include btn-shadow-inverse($gray);
237
+ }
238
+
239
+ .page-item.disabled .page-link {
240
+ @include btn-shadow($gray);
241
+ }
242
+ }
243
+
244
+ .breadcrumb {
245
+ border: 1px solid rgba(0, 0, 0, 0.6);
246
+ text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
247
+ background-color: transparent;
248
+ @include btn-shadow($gray);
249
+
250
+ a,
251
+ a:hover {
252
+ color: #fff;
253
+ }
254
+ }
255
+
256
+ // Indicators ==================================================================
257
+
258
+ .alert {
259
+
260
+ .alert-link,
261
+ a {
262
+ color: #fff;
263
+ text-decoration: underline;
264
+ }
265
+
266
+ .close {
267
+ color: $close-color;
268
+ text-decoration: none;
269
+ }
270
+ }
271
+
272
+ // Progress bars ===============================================================
273
+
274
+ // Containers ==================================================================
275
+
276
+ .jumbotron {
277
+ border: 1px solid rgba(0, 0, 0, 0.6);
278
+ }
@@ -0,0 +1,856 @@
1
+ // Slate 4.0.0
2
+ // Bootswatch
3
+
4
+
5
+
6
+ // Table of Contents
7
+ //
8
+ // Colors
9
+ // Options
10
+ // Spacing
11
+ // Body
12
+ // Links
13
+ // Grid breakpoints
14
+ // Grid containers
15
+ // Grid columns
16
+ // Fonts
17
+ // Components
18
+
19
+ @mixin _assert-ascending($map, $map-name) {
20
+ $prev-key: null;
21
+ $prev-num: null;
22
+ @each $key, $num in $map {
23
+ @if $prev-num == null {
24
+ // Do nothing
25
+ } @else if not comparable($prev-num, $num) {
26
+ @warn "Potentially invalid value for #{$map-name}: This map must be in ascending order, but key '#{$key}' has value #{$num} whose unit makes it incomparable to #{$prev-num}, the value of the previous key '#{$prev-key}' !";
27
+ } @else if $prev-num >= $num {
28
+ @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}' !";
29
+ }
30
+ $prev-key: $key;
31
+ $prev-num: $num;
32
+ }
33
+ }
34
+
35
+ // General variable structure
36
+ //
37
+ // Variable format should follow the `$component-modifier-state-property` order.
38
+
39
+
40
+ // Colors
41
+ //
42
+ // Grayscale and brand colors for use across Bootstrap.
43
+
44
+ $gray-dark: #272B30;
45
+ $gray: #3A3F44;
46
+ $gray-light: #52575C;
47
+ $gray-lighter: #7A8288;
48
+ $gray-lightest: #999;
49
+
50
+ $brand-primary: $gray-light;
51
+ $brand-success: #62c462;
52
+ $brand-info: #5bc0de;
53
+ $brand-warning: #f89406;
54
+ $brand-danger: #ee5f5b;
55
+ $brand-inverse: $gray-dark !default;
56
+
57
+
58
+ // Options
59
+ //
60
+ // Quickly modify global styling by enabling or disabling optional features.
61
+
62
+ $enable-flex: false !default;
63
+ $enable-rounded: true !default;
64
+ $enable-shadows: false !default;
65
+ $enable-gradients: false !default;
66
+ $enable-transitions: false !default;
67
+ $enable-hover-media-query: false !default;
68
+ $enable-grid-classes: true !default;
69
+ $enable-print-styles: true !default;
70
+
71
+
72
+ // Spacing
73
+ //
74
+ // Control the default styling of most Bootstrap elements by modifying these
75
+ // variables. Mostly focused on spacing.
76
+ // You can add more entries to the $spacers map, should you need more variation.
77
+
78
+ $spacer: 1rem !default;
79
+ $spacer-x: $spacer !default;
80
+ $spacer-y: $spacer !default;
81
+ $spacers: (
82
+ 0: (
83
+ x: 0,
84
+ y: 0
85
+ ),
86
+ 1: (
87
+ x: $spacer-x,
88
+ y: $spacer-y
89
+ ),
90
+ 2: (
91
+ x: ($spacer-x * 1.5),
92
+ y: ($spacer-y * 1.5)
93
+ ),
94
+ 3: (
95
+ x: ($spacer-x * 3),
96
+ y: ($spacer-y * 3)
97
+ )
98
+ ) !default;
99
+ $border-width: 1px !default;
100
+
101
+
102
+ // Body
103
+ //
104
+ // Settings for the `<body>` element.
105
+
106
+ $body-bg: $gray-dark;
107
+ $body-color: #aaa;
108
+
109
+
110
+ // Links
111
+ //
112
+ // Style anchor elements.
113
+
114
+ $link-color: #fff;
115
+ $link-decoration: none !default;
116
+ $link-hover-color: darken($link-color, 15%) !default;
117
+ $link-hover-decoration: underline !default;
118
+
119
+
120
+ // Grid breakpoints
121
+ //
122
+ // Define the minimum dimensions at which your layout will change,
123
+ // adapting to different screen sizes, for use in media queries.
124
+
125
+ $grid-breakpoints: (
126
+ xs: 0,
127
+ sm: 576px,
128
+ md: 768px,
129
+ lg: 992px,
130
+ xl: 1200px
131
+ ) !default;
132
+ @include _assert-ascending($grid-breakpoints, "$grid-breakpoints");
133
+
134
+
135
+ // Grid containers
136
+ //
137
+ // Define the maximum width of `.container` for different screen sizes.
138
+
139
+ $container-max-widths: (
140
+ sm: 540px,
141
+ md: 720px,
142
+ lg: 960px,
143
+ xl: 1140px
144
+ ) !default;
145
+ @include _assert-ascending($container-max-widths, "$container-max-widths");
146
+
147
+
148
+ // Grid columns
149
+ //
150
+ // Set the number of columns and specify the width of the gutters.
151
+
152
+ $grid-columns: 12 !default;
153
+ $grid-gutter-width-base: 30px !default;
154
+ $grid-gutter-widths: (
155
+ xs: $grid-gutter-width-base,
156
+ sm: $grid-gutter-width-base,
157
+ md: $grid-gutter-width-base,
158
+ lg: $grid-gutter-width-base,
159
+ xl: $grid-gutter-width-base
160
+ ) !default;
161
+
162
+ // Typography
163
+ //
164
+ // Font, line-height, and color for body text, headings, and more.
165
+
166
+ $font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !default;
167
+ $font-family-serif: Georgia, "Times New Roman", Times, serif !default;
168
+ $font-family-monospace: Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !default;
169
+ $font-family-base: $font-family-sans-serif !default;
170
+
171
+ // Pixel value used to responsively scale all typography. Applied to the `<html>` element.
172
+ $font-size-root: 15px !default;
173
+
174
+ $font-size-base: 1rem !default;
175
+ $font-size-lg: 1.25rem !default;
176
+ $font-size-sm: .875rem !default;
177
+ $font-size-xs: .75rem !default;
178
+
179
+ $line-height-base: 1.5 !default;
180
+
181
+ $font-size-h1: 2.5rem !default;
182
+ $font-size-h2: 2rem !default;
183
+ $font-size-h3: 1.75rem !default;
184
+ $font-size-h4: 1.5rem !default;
185
+ $font-size-h5: 1.25rem !default;
186
+ $font-size-h6: 1rem !default;
187
+
188
+ $display1-size: 6rem !default;
189
+ $display2-size: 5.5rem !default;
190
+ $display3-size: 4.5rem !default;
191
+ $display4-size: 3.5rem !default;
192
+
193
+ $display1-weight: 300 !default;
194
+ $display2-weight: 300 !default;
195
+ $display3-weight: 300 !default;
196
+ $display4-weight: 300 !default;
197
+
198
+ $headings-margin-bottom: ($spacer / 2) !default;
199
+ $headings-font-family: inherit !default;
200
+ $headings-font-weight: 500 !default;
201
+ $headings-line-height: 1.1 !default;
202
+ $headings-color: inherit !default;
203
+
204
+ $lead-font-size: 1.25rem !default;
205
+ $lead-font-weight: 300 !default;
206
+
207
+ $small-font-size: 80% !default;
208
+
209
+ $text-muted: $gray-lighter;
210
+
211
+ $abbr-border-color: $gray-light !default;
212
+
213
+ $blockquote-small-color: $gray-light !default;
214
+ $blockquote-font-size: ($font-size-base * 1.25) !default;
215
+ $blockquote-border-color: $gray-lighter !default;
216
+ $blockquote-border-width: .25rem !default;
217
+
218
+ $hr-border-color: rgba(0,0,0,.1) !default;
219
+ $hr-border-width: $border-width !default;
220
+
221
+ $mark-padding: .2em !default;
222
+
223
+ $dt-font-weight: bold !default;
224
+
225
+ $kbd-box-shadow: inset 0 -.1rem 0 rgba(0,0,0,.25) !default;
226
+ $nested-kbd-font-weight: bold !default;
227
+
228
+ $list-inline-padding: 5px !default;
229
+
230
+
231
+ // Components
232
+ //
233
+ // Define common padding and border radius sizes and more.
234
+
235
+ $line-height-lg: (4 / 3) !default;
236
+ $line-height-sm: 1.5 !default;
237
+
238
+ $border-radius: .25rem !default;
239
+ $border-radius-lg: .3rem !default;
240
+ $border-radius-sm: .2rem !default;
241
+
242
+ $component-active-color: #fff !default;
243
+ $component-active-bg: $brand-primary !default;
244
+
245
+ $caret-width: .3em !default;
246
+ $caret-width-lg: $caret-width !default;
247
+
248
+
249
+ // Tables
250
+ //
251
+ // Customizes the `.table` component with basic values, each used across all table variations.
252
+
253
+ $table-cell-padding: .75rem !default;
254
+ $table-sm-cell-padding: .3rem !default;
255
+
256
+ $table-bg: transparent !default;
257
+ $table-bg-accent: rgba(0,0,0,.05) !default;
258
+ $table-bg-hover: rgba(0,0,0,.075) !default;
259
+ $table-bg-active: $table-bg-hover !default;
260
+
261
+ $table-border-width: $border-width !default;
262
+ $table-border-color: rgba(0, 0, 0, 0.6);
263
+
264
+
265
+ // Buttons
266
+ //
267
+ // For each of Bootstrap's buttons, define text, background and border color.
268
+
269
+ $btn-padding-x: 1rem !default;
270
+ $btn-padding-y: .75rem !default;
271
+ $btn-line-height: 1.25 !default;
272
+ $btn-font-weight: normal !default;
273
+ $btn-box-shadow: inset 0 1px 0 rgba(255,255,255,.15), 0 1px 1px rgba(0,0,0,.075) !default;
274
+ $btn-active-box-shadow: inset 0 3px 5px rgba(0,0,0,.125) !default;
275
+
276
+ $btn-primary-color: #fff !default;
277
+ $btn-primary-bg: $brand-primary !default;
278
+ $btn-primary-border: $btn-primary-bg !default;
279
+
280
+ $btn-secondary-color: #fff;
281
+ $btn-secondary-bg: $gray-lighter;
282
+ $btn-secondary-border: $btn-secondary-bg;
283
+
284
+ $btn-info-color: #fff !default;
285
+ $btn-info-bg: $brand-info !default;
286
+ $btn-info-border: $btn-info-bg !default;
287
+
288
+ $btn-success-color: #fff !default;
289
+ $btn-success-bg: $brand-success !default;
290
+ $btn-success-border: $btn-success-bg !default;
291
+
292
+ $btn-warning-color: #fff !default;
293
+ $btn-warning-bg: $brand-warning !default;
294
+ $btn-warning-border: $btn-warning-bg !default;
295
+
296
+ $btn-danger-color: #fff !default;
297
+ $btn-danger-bg: $brand-danger !default;
298
+ $btn-danger-border: $btn-danger-bg !default;
299
+
300
+ $btn-link-disabled-color: $gray-light !default;
301
+
302
+ $btn-padding-x-sm: .5rem !default;
303
+ $btn-padding-y-sm: .25rem !default;
304
+
305
+ $btn-padding-x-lg: 1.5rem !default;
306
+ $btn-padding-y-lg: 1rem !default;
307
+
308
+ $btn-block-spacing-y: .5rem !default;
309
+ $btn-toolbar-margin: .5rem !default;
310
+
311
+ // Allows for customizing button radius independently from global border radius
312
+ $btn-border-radius: $border-radius !default;
313
+ $btn-border-radius-lg: $border-radius-lg !default;
314
+ $btn-border-radius-sm: $border-radius-sm !default;
315
+
316
+
317
+ // Forms
318
+
319
+ $input-padding-x: .75rem !default;
320
+ $input-padding-y: .75rem !default;
321
+ $input-line-height: 1.25 !default;
322
+
323
+ $input-bg: #fff !default;
324
+ $input-bg-disabled: #ccc;
325
+
326
+ $input-color: $gray !default;
327
+ $input-border-color: rgba(0,0,0,.15) !default;
328
+ $input-btn-border-width: $border-width !default; // For form controls and buttons
329
+ $input-box-shadow: inset 0 1px 1px rgba(0,0,0,.075) !default;
330
+
331
+ $input-border-radius: $border-radius !default;
332
+ $input-border-radius-lg: $border-radius-lg !default;
333
+ $input-border-radius-sm: $border-radius-sm !default;
334
+
335
+ $input-bg-focus: $input-bg !default;
336
+ $input-border-focus: #66afe9 !default;
337
+ $input-box-shadow-focus: $input-box-shadow, 0 0 8px rgba(102,175,233,.6) !default;
338
+ $input-color-focus: $input-color !default;
339
+
340
+ $input-color-placeholder: #999 !default;
341
+
342
+ $input-padding-x-sm: .5rem !default;
343
+ $input-padding-y-sm: .25rem !default;
344
+
345
+ $input-padding-x-lg: 1.5rem !default;
346
+ $input-padding-y-lg: .75rem !default;
347
+
348
+ $input-height: (($font-size-base * $line-height-base) + ($input-padding-y * 2)) !default;
349
+ $input-height-lg: (($font-size-lg * $line-height-lg) + ($input-padding-y-lg * 2)) !default;
350
+ $input-height-sm: (($font-size-sm * $line-height-sm) + ($input-padding-y-sm * 2)) !default;
351
+
352
+ $form-group-margin-bottom: $spacer-y !default;
353
+
354
+ $input-group-addon-bg: $gray-lighter !default;
355
+ $input-group-addon-border-color: $input-border-color !default;
356
+
357
+ $cursor-disabled: not-allowed !default;
358
+
359
+ $custom-control-gutter: 1.5rem !default;
360
+ $custom-control-spacer-x: 1rem !default;
361
+ $custom-control-spacer-y: .25rem !default;
362
+
363
+ $custom-control-indicator-size: 1rem !default;
364
+ $custom-control-indicator-bg: #ddd !default;
365
+ $custom-control-indicator-bg-size: 50% 50% !default;
366
+ $custom-control-indicator-box-shadow: inset 0 .25rem .25rem rgba(0,0,0,.1) !default;
367
+
368
+ $custom-control-disabled-cursor: $cursor-disabled !default;
369
+ $custom-control-disabled-indicator-bg: #eee !default;
370
+ $custom-control-disabled-description-color: #767676 !default;
371
+
372
+ $custom-control-checked-indicator-color: #fff !default;
373
+ $custom-control-checked-indicator-bg: #0074d9 !default;
374
+ $custom-control-checked-indicator-box-shadow: none !default;
375
+
376
+ $custom-control-focus-indicator-box-shadow: 0 0 0 .075rem #fff, 0 0 0 .2rem #0074d9 !default;
377
+
378
+ $custom-control-active-indicator-color: #fff !default;
379
+ $custom-control-active-indicator-bg: #84c6ff !default;
380
+ $custom-control-active-indicator-box-shadow: none !default;
381
+
382
+ $custom-checkbox-radius: $border-radius !default;
383
+ $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='#{$custom-control-checked-indicator-color}' 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;
384
+
385
+ $custom-checkbox-indeterminate-bg: #0074d9 !default;
386
+ $custom-checkbox-indeterminate-indicator-color: $custom-control-checked-indicator-color !default;
387
+ $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='#{$custom-checkbox-indeterminate-indicator-color}' d='M0 2h4'/%3E%3C/svg%3E") !default;
388
+ $custom-checkbox-indeterminate-box-shadow: none !default;
389
+
390
+ $custom-radio-radius: 50% !default;
391
+ $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='#{$custom-control-checked-indicator-color}'/%3E%3C/svg%3E") !default;
392
+
393
+ $custom-select-padding-x: .75rem !default;
394
+ $custom-select-padding-y: .375rem !default;
395
+ $custom-select-indicator-padding: 1rem !default; // Extra padding to account for the presence of the background-image based indicator
396
+ $custom-select-color: $input-color !default;
397
+ $custom-select-disabled-color: $gray-light !default;
398
+ $custom-select-bg: #fff !default;
399
+ $custom-select-disabled-bg: $gray-lighter !default;
400
+ $custom-select-bg-size: 8px 10px !default; // In pixels because image dimensions
401
+ $custom-select-indicator-color: #333 !default;
402
+ $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='#{$custom-select-indicator-color}' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") !default;
403
+ $custom-select-border-width: $input-btn-border-width !default;
404
+ $custom-select-border-color: $input-border-color !default;
405
+ $custom-select-border-radius: $border-radius !default;
406
+
407
+ $custom-select-focus-border-color: #51a7e8 !default;
408
+ $custom-select-focus-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .075), 0 0 5px rgba(81, 167, 232, .5) !default;
409
+
410
+ $custom-select-sm-padding-y: .2rem !default;
411
+ $custom-select-sm-font-size: 75% !default;
412
+
413
+ $custom-file-height: 2.5rem !default;
414
+ $custom-file-width: 14rem !default;
415
+ $custom-file-focus-box-shadow: 0 0 0 .075rem #fff, 0 0 0 .2rem #0074d9 !default;
416
+
417
+ $custom-file-padding-x: .5rem !default;
418
+ $custom-file-padding-y: 1rem !default;
419
+ $custom-file-line-height: 1.5 !default;
420
+ $custom-file-color: #555 !default;
421
+ $custom-file-bg: #fff !default;
422
+ $custom-file-border-width: $border-width !default;
423
+ $custom-file-border-color: #ddd !default;
424
+ $custom-file-border-radius: $border-radius !default;
425
+ $custom-file-box-shadow: inset 0 .2rem .4rem rgba(0,0,0,.05) !default;
426
+ $custom-file-button-color: $custom-file-color !default;
427
+ $custom-file-button-bg: #eee !default;
428
+ $custom-file-text: (
429
+ placeholder: (
430
+ en: "Choose file..."
431
+ ),
432
+ button-label: (
433
+ en: "Browse"
434
+ )
435
+ ) !default;
436
+
437
+
438
+ // Form validation icons
439
+ $form-icon-success-color: $brand-success !default;
440
+ $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='#{$form-icon-success-color}' 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;
441
+
442
+ $form-icon-warning-color: $brand-warning !default;
443
+ $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='#{$form-icon-warning-color}' 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;
444
+
445
+ $form-icon-danger-color: $brand-danger !default;
446
+ $form-icon-danger: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='#{$form-icon-danger-color}' 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;
447
+
448
+
449
+ // Dropdowns
450
+ //
451
+ // Dropdown menu container and contents.
452
+
453
+ $dropdown-min-width: 10rem !default;
454
+ $dropdown-padding-y: .5rem !default;
455
+ $dropdown-margin-top: .125rem !default;
456
+ $dropdown-bg: $gray;
457
+ $dropdown-border-color: rgba(0,0,0,.15) !default;
458
+ $dropdown-border-width: $border-width !default;
459
+ $dropdown-divider-bg: $dropdown-border-color;
460
+ $dropdown-box-shadow: 0 .5rem 1rem rgba(0,0,0,.175) !default;
461
+
462
+ $dropdown-link-color: $body-color;
463
+ $dropdown-link-hover-color: #fff;
464
+ $dropdown-link-hover-bg: $body-bg;
465
+
466
+ $dropdown-link-active-color: $component-active-color !default;
467
+ $dropdown-link-active-bg: $component-active-bg !default;
468
+
469
+ $dropdown-link-disabled-color: $gray-light !default;
470
+
471
+ $dropdown-item-padding-x: 1.5rem !default;
472
+
473
+ $dropdown-header-color: $gray-light !default;
474
+
475
+
476
+ // Z-index master list
477
+ //
478
+ // Warning: Avoid customizing these values. They're used for a bird's eye view
479
+ // of components dependent on the z-axis and are designed to all work together.
480
+
481
+ $zindex-dropdown-backdrop: 990 !default;
482
+ $zindex-navbar: 1000 !default;
483
+ $zindex-dropdown: 1000 !default;
484
+ $zindex-popover: 1060 !default;
485
+ $zindex-tooltip: 1070 !default;
486
+ $zindex-navbar-fixed: 1030 !default;
487
+ $zindex-navbar-sticky: 1030 !default;
488
+ $zindex-modal-bg: 1040 !default;
489
+ $zindex-modal: 1050 !default;
490
+
491
+
492
+ // Navbar
493
+
494
+ $navbar-border-radius: $border-radius !default;
495
+ $navbar-padding-x: 0;
496
+ $navbar-padding-y: 0;
497
+
498
+ $navbar-brand-padding-y: .25rem !default;
499
+
500
+ $navbar-divider-padding-y: .425rem !default;
501
+
502
+ $navbar-toggler-padding-x: .75rem !default;
503
+ $navbar-toggler-padding-y: .5rem !default;
504
+ $navbar-toggler-font-size: $font-size-lg !default;
505
+ $navbar-toggler-border-radius: $btn-border-radius !default;
506
+ $navbar-toggler-padding-x: .75rem !default;
507
+ $navbar-toggler-padding-y: .5rem !default;
508
+
509
+ $navbar-dark-color: rgba(255,255,255,.5) !default;
510
+ $navbar-dark-hover-color: rgba(255,255,255,1);
511
+ $navbar-dark-active-color: rgba(255,255,255,1) !default;
512
+ $navbar-dark-disabled-color: rgba(255,255,255,.25) !default;
513
+ $navbar-dark-toggler-bg: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='#{$navbar-dark-color}' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E") !default;
514
+ $navbar-dark-toggler-border: rgba(255,255,255,.1) !default;
515
+
516
+ $navbar-light-color: rgba(0,0,0,.5) !default;
517
+ $navbar-light-hover-color: rgba(0,0,0,.7) !default;
518
+ $navbar-light-active-color: rgba(0,0,0,.9) !default;
519
+ $navbar-light-disabled-color: rgba(0,0,0,.3) !default;
520
+ $navbar-light-toggler-bg: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='#{$navbar-light-color}' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E") !default;
521
+ $navbar-light-toggler-border: rgba(0,0,0,.1) !default;
522
+
523
+ // Navs
524
+
525
+ $nav-item-margin: .2rem !default;
526
+ $nav-item-inline-spacer: 1rem !default;
527
+ $nav-link-padding: .5em 1em !default;
528
+ $nav-link-hover-bg: $gray-lighter !default;
529
+ $nav-disabled-link-color: $gray-lighter;
530
+ $nav-disabled-link-hover-color: $gray-light !default;
531
+ $nav-disabled-link-hover-bg: transparent !default;
532
+
533
+ $nav-tabs-border-color: rgba(0, 0, 0, 0.6);
534
+ $nav-tabs-border-width: $border-width !default;
535
+ $nav-tabs-border-radius: $border-radius !default;
536
+ $nav-tabs-link-hover-border-color: $nav-tabs-border-color;
537
+ $nav-tabs-active-link-hover-color: #fff;
538
+ $nav-tabs-active-link-hover-bg: $body-bg !default;
539
+ $nav-tabs-active-link-hover-border-color: $nav-tabs-border-color;
540
+ $nav-tabs-justified-link-border-color: $nav-tabs-border-color;
541
+ $nav-tabs-justified-active-link-border-color: $nav-tabs-border-color;
542
+
543
+ $nav-pills-border-radius: $border-radius !default;
544
+ $nav-pills-active-link-color: $component-active-color !default;
545
+ $nav-pills-active-link-bg: $component-active-bg !default;
546
+
547
+
548
+ // Pagination
549
+
550
+ $pagination-padding-x: .75rem !default;
551
+ $pagination-padding-y: .5rem !default;
552
+ $pagination-padding-x-sm: .75rem !default;
553
+ $pagination-padding-y-sm: .275rem !default;
554
+ $pagination-padding-x-lg: 1.5rem !default;
555
+ $pagination-padding-y-lg: .75rem !default;
556
+
557
+
558
+ $pagination-color: #fff;
559
+ $pagination-bg: transparent;
560
+ $pagination-border-width: $border-width !default;
561
+ $pagination-border-color: rgba(0, 0, 0, 0.6);
562
+
563
+ $pagination-hover-color: #fff;
564
+ $pagination-hover-bg: transparent;
565
+ $pagination-hover-border: rgba(0, 0, 0, 0.6);
566
+
567
+ $pagination-active-color: #fff !default;
568
+ $pagination-active-bg: transparent;
569
+ $pagination-active-border: rgba(0, 0, 0, 0.6);
570
+
571
+ $pagination-disabled-color: $gray-lighter;
572
+ $pagination-disabled-bg: transparent;
573
+ $pagination-disabled-border: rgba(0, 0, 0, 0.6);
574
+
575
+
576
+ // Jumbotron
577
+
578
+ $jumbotron-padding: 2rem !default;
579
+ $jumbotron-bg: darken($gray-dark, 5%);
580
+
581
+
582
+ // Form states and alerts
583
+ //
584
+ // Define colors for form feedback states and, by default, alerts.
585
+
586
+ $state-success-text: #fff;
587
+ $state-success-bg: $brand-success;
588
+ $state-success-border: darken($state-success-bg, 5%) !default;
589
+
590
+ $state-info-text: #fff;
591
+ $state-info-bg: $brand-info;
592
+ $state-info-border: darken($state-info-bg, 7%) !default;
593
+
594
+ $state-warning-text: #fff;
595
+ $state-warning-bg: $brand-warning;
596
+ $mark-bg: $state-warning-bg !default;
597
+ $state-warning-border: darken($state-warning-bg, 5%) !default;
598
+
599
+ $state-danger-text: #fff;
600
+ $state-danger-bg: $brand-danger;
601
+ $state-danger-border: darken($state-danger-bg, 5%) !default;
602
+
603
+
604
+ // Cards
605
+ $card-spacer-x: 1.25rem !default;
606
+ $card-spacer-y: .75rem !default;
607
+ $card-border-width: 1px !default;
608
+ $card-border-radius: $border-radius !default;
609
+ $card-border-color: rgba(0,0,0,.6);
610
+ $card-border-radius-inner: calc(#{$card-border-radius} - #{$card-border-width}) !default;
611
+ $card-cap-bg: lighten($gray, 10%);
612
+ $card-bg: lighten($body-bg, 5%);
613
+
614
+ $card-link-hover-color: #fff !default;
615
+
616
+ $card-img-overlay-padding: 1.25rem !default;
617
+
618
+ $card-deck-margin: .625rem !default;
619
+
620
+ $card-columns-sm-up-column-gap: 1.25rem !default;
621
+
622
+
623
+ // Tooltips
624
+
625
+ $tooltip-max-width: 200px !default;
626
+ $tooltip-color: #fff !default;
627
+ $tooltip-bg: #000 !default;
628
+ $tooltip-opacity: .9 !default;
629
+ $tooltip-padding-y: 3px !default;
630
+ $tooltip-padding-x: 8px !default;
631
+ $tooltip-margin: 3px !default;
632
+
633
+ $tooltip-arrow-width: 5px !default;
634
+ $tooltip-arrow-color: $tooltip-bg !default;
635
+
636
+
637
+ // Popovers
638
+
639
+ $popover-inner-padding: 1px !default;
640
+ $popover-bg: lighten($body-bg, 5%);
641
+ $popover-max-width: 276px !default;
642
+ $popover-border-width: $border-width !default;
643
+ $popover-border-color: rgba(0,0,0,.2) !default;
644
+ $popover-box-shadow: 0 5px 10px rgba(0,0,0,.2) !default;
645
+
646
+ $popover-title-bg: lighten($popover-bg, 5%) !default;
647
+ $popover-title-padding-x: 14px !default;
648
+ $popover-title-padding-y: 8px !default;
649
+
650
+ $popover-content-padding-x: 14px !default;
651
+ $popover-content-padding-y: 9px !default;
652
+
653
+ $popover-arrow-width: 10px !default;
654
+ $popover-arrow-color: $popover-bg !default;
655
+
656
+ $popover-arrow-outer-width: ($popover-arrow-width + 1px) !default;
657
+ $popover-arrow-outer-color: fade-in($popover-border-color, .05) !default;
658
+
659
+
660
+ // Tags
661
+
662
+ $tag-default-bg: $gray-lighter;
663
+ $tag-primary-bg: $brand-primary !default;
664
+ $tag-success-bg: $brand-success !default;
665
+ $tag-info-bg: $brand-info !default;
666
+ $tag-warning-bg: $brand-warning !default;
667
+ $tag-danger-bg: $brand-danger !default;
668
+
669
+ $tag-color: #fff !default;
670
+ $tag-link-hover-color: #fff !default;
671
+ $tag-font-size: 75% !default;
672
+ $tag-font-weight: bold !default;
673
+ $tag-padding-x: .4em !default;
674
+ $tag-padding-y: .25em !default;
675
+
676
+ $tag-pill-padding-x: .6em !default;
677
+ // Use a higher than normal value to ensure completely rounded edges when
678
+ // customizing padding or font-size on labels.
679
+ $tag-pill-border-radius: 10rem !default;
680
+
681
+ // Modals
682
+
683
+ // Padding applied to the modal body
684
+ $modal-inner-padding: 15px !default;
685
+
686
+ $modal-dialog-margin: 10px !default;
687
+ $modal-dialog-sm-up-margin-y: 30px !default;
688
+
689
+ $modal-title-padding: 15px !default;
690
+ $modal-title-line-height: $line-height-base !default;
691
+
692
+ $modal-content-bg: lighten($body-bg, 5%);
693
+ $modal-content-border-color: rgba(0,0,0,.2) !default;
694
+ $modal-content-border-width: $border-width !default;
695
+ $modal-content-xs-box-shadow: 0 3px 9px rgba(0,0,0,.5) !default;
696
+ $modal-content-sm-up-box-shadow: 0 5px 15px rgba(0,0,0,.5) !default;
697
+
698
+ $modal-backdrop-bg: #000 !default;
699
+ $modal-backdrop-opacity: .5 !default;
700
+ $modal-header-border-color: $modal-content-border-color;
701
+ $modal-footer-border-color: $modal-header-border-color !default;
702
+ $modal-header-border-width: $modal-content-border-width !default;
703
+ $modal-footer-border-width: $modal-header-border-width !default;
704
+
705
+ $modal-lg: 900px !default;
706
+ $modal-md: 600px !default;
707
+ $modal-sm: 300px !default;
708
+
709
+
710
+ // Alerts
711
+ //
712
+ // Define alert colors, border radius, and padding.
713
+
714
+ $alert-padding-x: 1.25rem !default;
715
+ $alert-padding-y: .75rem !default;
716
+ $alert-border-radius: $border-radius !default;
717
+ $alert-link-font-weight: bold !default;
718
+ $alert-border-width: $border-width !default;
719
+
720
+ $alert-success-bg: $state-success-bg !default;
721
+ $alert-success-text: $state-success-text !default;
722
+ $alert-success-border: $state-success-border !default;
723
+
724
+ $alert-info-bg: $state-info-bg !default;
725
+ $alert-info-text: $state-info-text !default;
726
+ $alert-info-border: $state-info-border !default;
727
+
728
+ $alert-warning-bg: $state-warning-bg !default;
729
+ $alert-warning-text: $state-warning-text !default;
730
+ $alert-warning-border: $state-warning-border !default;
731
+
732
+ $alert-danger-bg: $state-danger-bg !default;
733
+ $alert-danger-text: $state-danger-text !default;
734
+ $alert-danger-border: $state-danger-border !default;
735
+
736
+
737
+ // Progress bars
738
+
739
+ $progress-bg: darken($gray-dark, 5%);
740
+ $progress-bar-color: $gray-lighter;
741
+ $progress-border-radius: $border-radius !default;
742
+ $progress-box-shadow: inset 0 .1rem .1rem rgba(0,0,0,.1) !default;
743
+
744
+ $progress-bar-bg: $brand-primary !default;
745
+ $progress-bar-success-bg: $brand-success !default;
746
+ $progress-bar-warning-bg: $brand-warning !default;
747
+ $progress-bar-danger-bg: $brand-danger !default;
748
+ $progress-bar-info-bg: $brand-info !default;
749
+
750
+
751
+ // List group
752
+
753
+ $list-group-bg: lighten($body-bg, 5%);
754
+ $list-group-border-color: rgba(0, 0, 0, 0.6);
755
+ $list-group-border-width: $border-width !default;
756
+ $list-group-border-radius: $border-radius !default;
757
+
758
+ $list-group-hover-bg: lighten($body-bg, 10%);
759
+ $list-group-active-color: #fff;
760
+ $list-group-active-bg: $list-group-hover-bg;
761
+ $list-group-active-border: $list-group-border-color;
762
+ $list-group-active-text-color: $list-group-active-color;
763
+
764
+ $list-group-disabled-color: $gray-light;
765
+ $list-group-disabled-bg: $list-group-bg;
766
+ $list-group-disabled-text-color: $list-group-disabled-color !default;
767
+
768
+ $list-group-link-color: #fff;
769
+ $list-group-link-hover-color: $list-group-link-color !default;
770
+ $list-group-link-heading-color: $list-group-link-color;
771
+
772
+ $list-group-item-padding-x: 1.25rem !default;
773
+ $list-group-item-padding-y: .75rem !default;
774
+ $list-group-item-heading-margin-bottom: 5px !default;
775
+
776
+
777
+ // Image thumbnails
778
+
779
+ $thumbnail-padding: .25rem !default;
780
+ $thumbnail-bg: $body-bg !default;
781
+ $thumbnail-border-width: $border-width !default;
782
+ $thumbnail-border-color: #ddd !default;
783
+ $thumbnail-border-radius: $border-radius !default;
784
+ $thumbnail-box-shadow: 0 1px 2px rgba(0,0,0,.075) !default;
785
+
786
+
787
+ // Figures
788
+
789
+ $figure-caption-font-size: 90% !default;
790
+
791
+
792
+ // Breadcrumbs
793
+
794
+ $breadcrumb-padding-y: .75rem !default;
795
+ $breadcrumb-padding-x: 1rem !default;
796
+ $breadcrumb-item-padding: .5rem !default;
797
+
798
+ $breadcrumb-bg: $gray-lighter !default;
799
+ $breadcrumb-divider-color: $gray-light !default;
800
+ $breadcrumb-active-color: $gray-lightest;
801
+ $breadcrumb-divider: "/" !default;
802
+
803
+
804
+ // Media objects
805
+
806
+ $media-margin-top: 15px !default;
807
+ $media-heading-margin-bottom: 5px !default;
808
+ $media-alignment-padding-x: 10px !default;
809
+
810
+
811
+ // Carousel
812
+
813
+ $carousel-text-shadow: 0 1px 2px rgba(0,0,0,.6) !default;
814
+
815
+ $carousel-control-color: #fff !default;
816
+ $carousel-control-width: 15% !default;
817
+ $carousel-control-sm-up-size: 30px !default;
818
+ $carousel-control-opacity: .5 !default;
819
+ $carousel-control-font-size: 20px !default;
820
+
821
+ $carousel-indicators-width: 60% !default;
822
+
823
+ $carousel-indicator-size: 10px !default;
824
+ $carousel-indicator-active-size: 12px !default;
825
+ $carousel-indicator-active-bg: #fff !default;
826
+ $carousel-indicator-border-color: #fff !default;
827
+
828
+ $carousel-caption-width: 70% !default;
829
+ $carousel-caption-sm-up-width: 60% !default;
830
+ $carousel-caption-color: #fff !default;
831
+
832
+ $carousel-icon-width: 20px !default;
833
+
834
+
835
+ // Close
836
+
837
+ $close-font-weight: bold !default;
838
+ $close-color: #000 !default;
839
+ $close-text-shadow: 0 1px 0 #fff !default;
840
+
841
+
842
+ // Code
843
+
844
+ $code-font-size: 90% !default;
845
+ $code-padding-x: .4rem !default;
846
+ $code-padding-y: .2rem !default;
847
+ $code-color: #bd4147 !default;
848
+ $code-bg: #f7f7f9 !default;
849
+
850
+ $kbd-color: #fff !default;
851
+ $kbd-bg: #333 !default;
852
+
853
+ $pre-bg: #f7f7f9 !default;
854
+ $pre-color: $gray-dark !default;
855
+ $pre-border-color: #ccc !default;
856
+ $pre-scrollable-max-height: 340px !default;