ssg-guideline 0.1.0

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 (48) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.txt +21 -0
  3. data/README.md +45 -0
  4. data/_layouts/default.html +1 -0
  5. data/_layouts/page.html +5 -0
  6. data/_layouts/post.html +5 -0
  7. data/_sass/bootstrap/_alert.scss +55 -0
  8. data/_sass/bootstrap/_badge.scss +77 -0
  9. data/_sass/bootstrap/_breadcrumb.scss +38 -0
  10. data/_sass/bootstrap/_button-group.scss +202 -0
  11. data/_sass/bootstrap/_buttons.scss +170 -0
  12. data/_sass/bootstrap/_card.scss +276 -0
  13. data/_sass/bootstrap/_carousel.scss +178 -0
  14. data/_sass/bootstrap/_close.scss +31 -0
  15. data/_sass/bootstrap/_code.scss +64 -0
  16. data/_sass/bootstrap/_custom-forms.scss +263 -0
  17. data/_sass/bootstrap/_custom.scss +4 -0
  18. data/_sass/bootstrap/_dropdown.scss +161 -0
  19. data/_sass/bootstrap/_forms.scss +388 -0
  20. data/_sass/bootstrap/_grid.scss +52 -0
  21. data/_sass/bootstrap/_images.scss +43 -0
  22. data/_sass/bootstrap/_input-group.scss +178 -0
  23. data/_sass/bootstrap/_jumbotron.scss +20 -0
  24. data/_sass/bootstrap/_list-group.scss +141 -0
  25. data/_sass/bootstrap/_media.scss +8 -0
  26. data/_sass/bootstrap/_mixins.scss +57 -0
  27. data/_sass/bootstrap/_modal.scss +142 -0
  28. data/_sass/bootstrap/_nav.scss +119 -0
  29. data/_sass/bootstrap/_navbar.scss +268 -0
  30. data/_sass/bootstrap/_normalize.scss +461 -0
  31. data/_sass/bootstrap/_pagination.scss +67 -0
  32. data/_sass/bootstrap/_popover.scss +171 -0
  33. data/_sass/bootstrap/_print.scss +119 -0
  34. data/_sass/bootstrap/_progress.scss +32 -0
  35. data/_sass/bootstrap/_reboot.scss +389 -0
  36. data/_sass/bootstrap/_responsive-embed.scss +52 -0
  37. data/_sass/bootstrap/_tables.scss +153 -0
  38. data/_sass/bootstrap/_tooltip.scss +90 -0
  39. data/_sass/bootstrap/_transitions.scss +34 -0
  40. data/_sass/bootstrap/_type.scss +143 -0
  41. data/_sass/bootstrap/_utilities.scss +13 -0
  42. data/_sass/bootstrap/_variables.scss +961 -0
  43. data/_sass/bootstrap/bootstrap-grid.scss +43 -0
  44. data/_sass/bootstrap/bootstrap-reboot.scss +10 -0
  45. data/_sass/bootstrap/bootstrap.scss +54 -0
  46. data/_sass/extra/_syntax-highlighting.scss +71 -0
  47. data/_sass/main.scss +48 -0
  48. metadata +132 -0
@@ -0,0 +1,388 @@
1
+ // scss-lint:disable QualifyingElement
2
+
3
+ //
4
+ // Textual form controls
5
+ //
6
+
7
+ .form-control {
8
+ display: block;
9
+ width: 100%;
10
+ // // Make inputs at least the height of their button counterpart (base line-height + padding + border)
11
+ // height: $input-height;
12
+ padding: $input-padding-y $input-padding-x;
13
+ font-size: $font-size-base;
14
+ line-height: $input-line-height;
15
+ color: $input-color;
16
+ background-color: $input-bg;
17
+ // Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214.
18
+ background-image: none;
19
+ background-clip: padding-box;
20
+ border: $input-btn-border-width solid $input-border-color;
21
+
22
+ // Note: This has no effect on <select>s in some browsers, due to the limited stylability of `<select>`s in CSS.
23
+ @if $enable-rounded {
24
+ // Manually use the if/else instead of the mixin to account for iOS override
25
+ border-radius: $input-border-radius;
26
+ } @else {
27
+ // Otherwise undo the iOS default
28
+ border-radius: 0;
29
+ }
30
+
31
+ @include box-shadow($input-box-shadow);
32
+ @include transition($input-transition);
33
+
34
+ // Unstyle the caret on `<select>`s in IE10+.
35
+ &::-ms-expand {
36
+ background-color: transparent;
37
+ border: 0;
38
+ }
39
+
40
+ // Customize the `:focus` state to imitate native WebKit styles.
41
+ @include form-control-focus();
42
+
43
+ // Placeholder
44
+ &::placeholder {
45
+ color: $input-color-placeholder;
46
+ // Override Firefox's unusual default opacity; see https://github.com/twbs/bootstrap/pull/11526.
47
+ opacity: 1;
48
+ }
49
+
50
+ // Disabled and read-only inputs
51
+ //
52
+ // HTML5 says that controls under a fieldset > legend:first-child won't be
53
+ // disabled if the fieldset is disabled. Due to implementation difficulty, we
54
+ // don't honor that edge case; we style them as disabled anyway.
55
+ &:disabled,
56
+ &[readonly] {
57
+ background-color: $input-bg-disabled;
58
+ // iOS fix for unreadable disabled content; see https://github.com/twbs/bootstrap/issues/11655.
59
+ opacity: 1;
60
+ }
61
+
62
+ &:disabled {
63
+ cursor: $cursor-disabled;
64
+ }
65
+ }
66
+
67
+ select.form-control {
68
+ &:not([size]):not([multiple]) {
69
+ $select-border-width: ($border-width * 2);
70
+ height: calc(#{$input-height} + #{$select-border-width});
71
+ }
72
+
73
+ &:focus::-ms-value {
74
+ // Suppress the nested default white text on blue background highlight given to
75
+ // the selected option text when the (still closed) <select> receives focus
76
+ // in IE and (under certain conditions) Edge, as it looks bad and cannot be made to
77
+ // match the appearance of the native widget.
78
+ // See https://github.com/twbs/bootstrap/issues/19398.
79
+ color: $input-color;
80
+ background-color: $input-bg;
81
+ }
82
+ }
83
+
84
+ // Make file inputs better match text inputs by forcing them to new lines.
85
+ .form-control-file,
86
+ .form-control-range {
87
+ display: block;
88
+ }
89
+
90
+
91
+ //
92
+ // Labels
93
+ //
94
+
95
+ // For use with horizontal and inline forms, when you need the label text to
96
+ // align with the form controls.
97
+ .col-form-label {
98
+ padding-top: calc(#{$input-padding-y} - #{$input-btn-border-width} * 2);
99
+ padding-bottom: calc(#{$input-padding-y} - #{$input-btn-border-width} * 2);
100
+ margin-bottom: 0; // Override the `<label>` default
101
+ }
102
+
103
+ .col-form-label-lg {
104
+ padding-top: calc(#{$input-padding-y-lg} - #{$input-btn-border-width} * 2);
105
+ padding-bottom: calc(#{$input-padding-y-lg} - #{$input-btn-border-width} * 2);
106
+ font-size: $font-size-lg;
107
+ }
108
+
109
+ .col-form-label-sm {
110
+ padding-top: calc(#{$input-padding-y-sm} - #{$input-btn-border-width} * 2);
111
+ padding-bottom: calc(#{$input-padding-y-sm} - #{$input-btn-border-width} * 2);
112
+ font-size: $font-size-sm;
113
+ }
114
+
115
+
116
+ //
117
+ // Legends
118
+ //
119
+
120
+ // For use with horizontal and inline forms, when you need the legend text to
121
+ // be the same size as regular labels, and to align with the form controls.
122
+ .col-form-legend {
123
+ padding-top: $input-padding-y;
124
+ padding-bottom: $input-padding-y;
125
+ margin-bottom: 0;
126
+ font-size: $font-size-base;
127
+ }
128
+
129
+
130
+ // Static form control text
131
+ //
132
+ // Apply class to an element to make any string of text align with labels in a
133
+ // horizontal form layout.
134
+
135
+ .form-control-static {
136
+ padding-top: $input-padding-y;
137
+ padding-bottom: $input-padding-y;
138
+ margin-bottom: 0; // match inputs if this class comes on inputs with default margins
139
+ line-height: $input-line-height;
140
+ border: solid transparent;
141
+ border-width: $input-btn-border-width 0;
142
+
143
+ &.form-control-sm,
144
+ &.form-control-lg {
145
+ padding-right: 0;
146
+ padding-left: 0;
147
+ }
148
+ }
149
+
150
+
151
+ // Form control sizing
152
+ //
153
+ // Build on `.form-control` with modifier classes to decrease or increase the
154
+ // height and font-size of form controls.
155
+ //
156
+ // The `.form-group-* form-control` variations are sadly duplicated to avoid the
157
+ // issue documented in https://github.com/twbs/bootstrap/issues/15074.
158
+
159
+ .form-control-sm {
160
+ padding: $input-padding-y-sm $input-padding-x-sm;
161
+ font-size: $font-size-sm;
162
+ @include border-radius($input-border-radius-sm);
163
+ }
164
+
165
+ select.form-control-sm {
166
+ &:not([size]):not([multiple]) {
167
+ height: $input-height-sm;
168
+ }
169
+ }
170
+
171
+ .form-control-lg {
172
+ padding: $input-padding-y-lg $input-padding-x-lg;
173
+ font-size: $font-size-lg;
174
+ @include border-radius($input-border-radius-lg);
175
+ }
176
+
177
+ select.form-control-lg {
178
+ &:not([size]):not([multiple]) {
179
+ height: $input-height-lg;
180
+ }
181
+ }
182
+
183
+
184
+ // Form groups
185
+ //
186
+ // Designed to help with the organization and spacing of vertical forms. For
187
+ // horizontal forms, use the predefined grid classes.
188
+
189
+ .form-group {
190
+ margin-bottom: $form-group-margin-bottom;
191
+ }
192
+
193
+ .form-text {
194
+ display: block;
195
+ margin-top: $form-text-margin-top;
196
+ }
197
+
198
+
199
+ // Checkboxes and radios
200
+ //
201
+ // Indent the labels to position radios/checkboxes as hanging controls.
202
+
203
+ .form-check {
204
+ position: relative;
205
+ display: block;
206
+ margin-bottom: $form-check-margin-bottom;
207
+
208
+ &.disabled {
209
+ .form-check-label {
210
+ color: $text-muted;
211
+ cursor: $cursor-disabled;
212
+ }
213
+ }
214
+ }
215
+
216
+ .form-check-label {
217
+ padding-left: $form-check-input-gutter;
218
+ margin-bottom: 0; // Override default `<label>` bottom margin
219
+ cursor: pointer;
220
+ }
221
+
222
+ .form-check-input {
223
+ position: absolute;
224
+ margin-top: $form-check-input-margin-y;
225
+ margin-left: -$form-check-input-gutter;
226
+
227
+ &:only-child {
228
+ position: static;
229
+ }
230
+ }
231
+
232
+ // Radios and checkboxes on same line
233
+ .form-check-inline {
234
+ display: inline-block;
235
+
236
+ .form-check-label {
237
+ vertical-align: middle;
238
+ }
239
+
240
+ + .form-check-inline {
241
+ margin-left: $form-check-inline-margin-x;
242
+ }
243
+ }
244
+
245
+
246
+ // Form control feedback states
247
+ //
248
+ // Apply contextual and semantic states to individual form controls.
249
+
250
+ .form-control-feedback {
251
+ margin-top: $form-feedback-margin-top;
252
+ }
253
+
254
+ .form-control-success,
255
+ .form-control-warning,
256
+ .form-control-danger {
257
+ padding-right: ($input-padding-x * 3);
258
+ background-repeat: no-repeat;
259
+ background-position: center right ($input-height / 4);
260
+ background-size: ($input-height / 2) ($input-height / 2);
261
+ }
262
+
263
+ // Form validation states
264
+ .has-success {
265
+ @include form-control-validation($brand-success);
266
+
267
+ .form-control-success {
268
+ background-image: $form-icon-success;
269
+ }
270
+ }
271
+
272
+ .has-warning {
273
+ @include form-control-validation($brand-warning);
274
+
275
+ .form-control-warning {
276
+ background-image: $form-icon-warning;
277
+ }
278
+ }
279
+
280
+ .has-danger {
281
+ @include form-control-validation($brand-danger);
282
+
283
+ .form-control-danger {
284
+ background-image: $form-icon-danger;
285
+ }
286
+ }
287
+
288
+
289
+ // Inline forms
290
+ //
291
+ // Make forms appear inline(-block) by adding the `.form-inline` class. Inline
292
+ // forms begin stacked on extra small (mobile) devices and then go inline when
293
+ // viewports reach <768px.
294
+ //
295
+ // Requires wrapping inputs and labels with `.form-group` for proper display of
296
+ // default HTML form controls and our custom form controls (e.g., input groups).
297
+
298
+ .form-inline {
299
+ display: flex;
300
+ flex-flow: row wrap;
301
+ align-items: center; // Prevent shorter elements from growing to same height as others (e.g., small buttons growing to normal sized button height)
302
+
303
+ // Because we use flex, the initial sizing of checkboxes is collapsed and
304
+ // doesn't occupy the full-width (which is what we want for xs grid tier),
305
+ // so we force that here.
306
+ .form-check {
307
+ width: 100%;
308
+ }
309
+
310
+ // Kick in the inline
311
+ @include media-breakpoint-up(sm) {
312
+ label {
313
+ display: flex;
314
+ align-items: center;
315
+ justify-content: center;
316
+ margin-bottom: 0;
317
+ }
318
+
319
+ // Inline-block all the things for "inline"
320
+ .form-group {
321
+ display: flex;
322
+ flex: 0 0 auto;
323
+ flex-flow: row wrap;
324
+ align-items: center;
325
+ margin-bottom: 0;
326
+ }
327
+
328
+ // Allow folks to *not* use `.form-group`
329
+ .form-control {
330
+ display: inline-block;
331
+ width: auto; // Prevent labels from stacking above inputs in `.form-group`
332
+ vertical-align: middle;
333
+ }
334
+
335
+ // Make static controls behave like regular ones
336
+ .form-control-static {
337
+ display: inline-block;
338
+ }
339
+
340
+ .input-group {
341
+ width: auto;
342
+ }
343
+
344
+ .form-control-label {
345
+ margin-bottom: 0;
346
+ vertical-align: middle;
347
+ }
348
+
349
+ // Remove default margin on radios/checkboxes that were used for stacking, and
350
+ // then undo the floating of radios and checkboxes to match.
351
+ .form-check {
352
+ display: flex;
353
+ align-items: center;
354
+ justify-content: center;
355
+ width: auto;
356
+ margin-top: 0;
357
+ margin-bottom: 0;
358
+ }
359
+ .form-check-label {
360
+ padding-left: 0;
361
+ }
362
+ .form-check-input {
363
+ position: relative;
364
+ margin-top: 0;
365
+ margin-right: $form-check-input-margin-x;
366
+ margin-left: 0;
367
+ }
368
+
369
+ // Custom form controls
370
+ .custom-control {
371
+ display: flex;
372
+ align-items: center;
373
+ justify-content: center;
374
+ padding-left: 0;
375
+ }
376
+ .custom-control-indicator {
377
+ position: static;
378
+ display: inline-block;
379
+ margin-right: $form-check-input-margin-x; // Flexbox alignment means we lose our HTML space here, so we compensate.
380
+ vertical-align: text-bottom;
381
+ }
382
+
383
+ // Re-override the feedback icon.
384
+ .has-feedback .form-control-feedback {
385
+ top: 0;
386
+ }
387
+ }
388
+ }
@@ -0,0 +1,52 @@
1
+ // Container widths
2
+ //
3
+ // Set the container width, and override it for fixed navbars in media queries.
4
+
5
+ @if $enable-grid-classes {
6
+ .container {
7
+ @include make-container();
8
+ @include make-container-max-widths();
9
+ }
10
+ }
11
+
12
+ // Fluid container
13
+ //
14
+ // Utilizes the mixin meant for fixed width containers, but without any defined
15
+ // width for fluid, full width layouts.
16
+
17
+ @if $enable-grid-classes {
18
+ .container-fluid {
19
+ @include make-container();
20
+ }
21
+ }
22
+
23
+ // Row
24
+ //
25
+ // Rows contain and clear the floats of your columns.
26
+
27
+ @if $enable-grid-classes {
28
+ .row {
29
+ @include make-row();
30
+ }
31
+
32
+ // Remove the negative margin from default .row, then the horizontal padding
33
+ // from all immediate children columns (to prevent runaway style inheritance).
34
+ .no-gutters {
35
+ margin-right: 0;
36
+ margin-left: 0;
37
+
38
+ > .col,
39
+ > [class*="col-"] {
40
+ padding-right: 0;
41
+ padding-left: 0;
42
+ }
43
+ }
44
+ }
45
+
46
+ // Columns
47
+ //
48
+ // Common styles for small and large grid columns
49
+
50
+ @if $enable-grid-classes {
51
+ @include make-grid-columns();
52
+ }
@@ -0,0 +1,43 @@
1
+ // Responsive images (ensure images don't scale beyond their parents)
2
+ //
3
+ // This is purposefully opt-in via an explicit class rather than being the default for all `<img>`s.
4
+ // We previously tried the "images are responsive by default" approach in Bootstrap v2,
5
+ // and abandoned it in Bootstrap v3 because it breaks lots of third-party widgets (including Google Maps)
6
+ // which weren't expecting the images within themselves to be involuntarily resized.
7
+ // See also https://github.com/twbs/bootstrap/issues/18178
8
+ .img-fluid {
9
+ @include img-fluid;
10
+ }
11
+
12
+
13
+ // Image thumbnails
14
+ .img-thumbnail {
15
+ padding: $thumbnail-padding;
16
+ background-color: $thumbnail-bg;
17
+ border: $thumbnail-border-width solid $thumbnail-border-color;
18
+ @include border-radius($thumbnail-border-radius);
19
+ @include transition($thumbnail-transition);
20
+ @include box-shadow($thumbnail-box-shadow);
21
+
22
+ // Keep them at most 100% wide
23
+ @include img-fluid;
24
+ }
25
+
26
+ //
27
+ // Figures
28
+ //
29
+
30
+ .figure {
31
+ // Ensures the caption's text aligns with the image.
32
+ display: inline-block;
33
+ }
34
+
35
+ .figure-img {
36
+ margin-bottom: ($spacer-y / 2);
37
+ line-height: 1;
38
+ }
39
+
40
+ .figure-caption {
41
+ font-size: $figure-caption-font-size;
42
+ color: $figure-caption-color;
43
+ }
@@ -0,0 +1,178 @@
1
+ //
2
+ // Base styles
3
+ //
4
+
5
+ .input-group {
6
+ position: relative;
7
+ display: flex;
8
+ width: 100%;
9
+
10
+ .form-control {
11
+ // Ensure that the input is always above the *appended* addon button for
12
+ // proper border colors.
13
+ position: relative;
14
+ z-index: 2;
15
+ flex: 1 1 auto;
16
+ // Add width 1% and flex-basis auto to ensure that button will not wrap out
17
+ // the column. Applies to IE Edge+ and Firefox. Chrome does not require this.
18
+ width: 1%;
19
+ margin-bottom: 0;
20
+
21
+ // Bring the "active" form control to the front
22
+ @include hover-focus-active {
23
+ z-index: 3;
24
+ }
25
+ }
26
+ }
27
+
28
+ .input-group-addon,
29
+ .input-group-btn,
30
+ .input-group .form-control {
31
+ // Vertically centers the content of the addons within the input group
32
+ display: flex;
33
+ flex-direction: column;
34
+ justify-content: center;
35
+
36
+ &:not(:first-child):not(:last-child) {
37
+ @include border-radius(0);
38
+ }
39
+ }
40
+
41
+ .input-group-addon,
42
+ .input-group-btn {
43
+ white-space: nowrap;
44
+ vertical-align: middle; // Match the inputs
45
+ }
46
+
47
+
48
+ // Sizing options
49
+ //
50
+ // Remix the default form control sizing classes into new ones for easier
51
+ // manipulation.
52
+
53
+ .input-group-lg > .form-control,
54
+ .input-group-lg > .input-group-addon,
55
+ .input-group-lg > .input-group-btn > .btn {
56
+ @extend .form-control-lg;
57
+ }
58
+ .input-group-sm > .form-control,
59
+ .input-group-sm > .input-group-addon,
60
+ .input-group-sm > .input-group-btn > .btn {
61
+ @extend .form-control-sm;
62
+ }
63
+
64
+
65
+ //
66
+ // Text input groups
67
+ //
68
+
69
+ .input-group-addon {
70
+ padding: $input-padding-y $input-padding-x;
71
+ margin-bottom: 0; // Allow use of <label> elements by overriding our default margin-bottom
72
+ font-size: $font-size-base; // Match inputs
73
+ font-weight: $font-weight-normal;
74
+ line-height: $input-line-height;
75
+ color: $input-color;
76
+ text-align: center;
77
+ background-color: $input-group-addon-bg;
78
+ border: $input-btn-border-width solid $input-group-addon-border-color;
79
+ @include border-radius($input-border-radius);
80
+
81
+ // Sizing
82
+ &.form-control-sm {
83
+ padding: $input-padding-y-sm $input-padding-x-sm;
84
+ font-size: $font-size-sm;
85
+ @include border-radius($input-border-radius-sm);
86
+ }
87
+ &.form-control-lg {
88
+ padding: $input-padding-y-lg $input-padding-x-lg;
89
+ font-size: $font-size-lg;
90
+ @include border-radius($input-border-radius-lg);
91
+ }
92
+
93
+ // scss-lint:disable QualifyingElement
94
+ // Nuke default margins from checkboxes and radios to vertically center within.
95
+ input[type="radio"],
96
+ input[type="checkbox"] {
97
+ margin-top: 0;
98
+ }
99
+ // scss-lint:enable QualifyingElement
100
+ }
101
+
102
+
103
+ //
104
+ // Reset rounded corners
105
+ //
106
+
107
+ .input-group .form-control:not(:last-child),
108
+ .input-group-addon:not(:last-child),
109
+ .input-group-btn:not(:last-child) > .btn,
110
+ .input-group-btn:not(:last-child) > .btn-group > .btn,
111
+ .input-group-btn:not(:last-child) > .dropdown-toggle,
112
+ .input-group-btn:not(:first-child) > .btn:not(:last-child):not(.dropdown-toggle),
113
+ .input-group-btn:not(:first-child) > .btn-group:not(:last-child) > .btn {
114
+ @include border-right-radius(0);
115
+ }
116
+ .input-group-addon:not(:last-child) {
117
+ border-right: 0;
118
+ }
119
+ .input-group .form-control:not(:first-child),
120
+ .input-group-addon:not(:first-child),
121
+ .input-group-btn:not(:first-child) > .btn,
122
+ .input-group-btn:not(:first-child) > .btn-group > .btn,
123
+ .input-group-btn:not(:first-child) > .dropdown-toggle,
124
+ .input-group-btn:not(:last-child) > .btn:not(:first-child),
125
+ .input-group-btn:not(:last-child) > .btn-group:not(:first-child) > .btn {
126
+ @include border-left-radius(0);
127
+ }
128
+ .form-control + .input-group-addon:not(:first-child) {
129
+ border-left: 0;
130
+ }
131
+
132
+ //
133
+ // Button input groups
134
+ //
135
+
136
+ .input-group-btn {
137
+ position: relative;
138
+ // Jankily prevent input button groups from wrapping with `white-space` and
139
+ // `font-size` in combination with `inline-block` on buttons.
140
+ font-size: 0;
141
+ white-space: nowrap;
142
+
143
+ // Negative margin for spacing, position for bringing hovered/focused/actived
144
+ // element above the siblings.
145
+ > .btn {
146
+ position: relative;
147
+ // Vertically stretch the button and center its content
148
+ flex: 1;
149
+
150
+ + .btn {
151
+ margin-left: (-$input-btn-border-width);
152
+ }
153
+
154
+ // Bring the "active" button to the front
155
+ @include hover-focus-active {
156
+ z-index: 3;
157
+ }
158
+ }
159
+
160
+ // Negative margin to only have a single, shared border between the two
161
+ &:not(:last-child) {
162
+ > .btn,
163
+ > .btn-group {
164
+ margin-right: (-$input-btn-border-width);
165
+ }
166
+ }
167
+ &:not(:first-child) {
168
+ > .btn,
169
+ > .btn-group {
170
+ z-index: 2;
171
+ margin-left: (-$input-btn-border-width);
172
+ // Because specificity
173
+ @include hover-focus-active {
174
+ z-index: 3;
175
+ }
176
+ }
177
+ }
178
+ }
@@ -0,0 +1,20 @@
1
+ .jumbotron {
2
+ padding: $jumbotron-padding ($jumbotron-padding / 2);
3
+ margin-bottom: $jumbotron-padding;
4
+ background-color: $jumbotron-bg;
5
+ @include border-radius($border-radius-lg);
6
+
7
+ @include media-breakpoint-up(sm) {
8
+ padding: ($jumbotron-padding * 2) $jumbotron-padding;
9
+ }
10
+ }
11
+
12
+ .jumbotron-hr {
13
+ border-top-color: darken($jumbotron-bg, 10%);
14
+ }
15
+
16
+ .jumbotron-fluid {
17
+ padding-right: 0;
18
+ padding-left: 0;
19
+ @include border-radius(0);
20
+ }