jekyll-theme-portfolio 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (114) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.md +21 -0
  3. data/README.md +19 -0
  4. data/_includes/footer.html +57 -0
  5. data/_includes/head.html +12 -0
  6. data/_includes/header.html +43 -0
  7. data/_layouts/default.html +20 -0
  8. data/_layouts/home.html +41 -0
  9. data/_layouts/page.html +13 -0
  10. data/_layouts/portfolio.html +66 -0
  11. data/_layouts/post.html +23 -0
  12. data/_sass/_bootstrap_customization.scss +332 -0
  13. data/_sass/_syntax-highlighting.scss +74 -0
  14. data/_sass/_variables.scss +106 -0
  15. data/_sass/bootstrap-4-jekyll/_bootstrap-4-jekyll.scss +8 -0
  16. data/_sass/bootstrap/__DO_NOT_MODIFY +0 -0
  17. data/_sass/bootstrap/_alert.scss +51 -0
  18. data/_sass/bootstrap/_badge.scss +54 -0
  19. data/_sass/bootstrap/_breadcrumb.scss +41 -0
  20. data/_sass/bootstrap/_button-group.scss +163 -0
  21. data/_sass/bootstrap/_buttons.scss +137 -0
  22. data/_sass/bootstrap/_card.scss +289 -0
  23. data/_sass/bootstrap/_carousel.scss +197 -0
  24. data/_sass/bootstrap/_close.scss +41 -0
  25. data/_sass/bootstrap/_code.scss +48 -0
  26. data/_sass/bootstrap/_custom-forms.scss +507 -0
  27. data/_sass/bootstrap/_dropdown.scss +191 -0
  28. data/_sass/bootstrap/_forms.scss +330 -0
  29. data/_sass/bootstrap/_functions.scss +86 -0
  30. data/_sass/bootstrap/_grid.scss +52 -0
  31. data/_sass/bootstrap/_images.scss +42 -0
  32. data/_sass/bootstrap/_input-group.scss +193 -0
  33. data/_sass/bootstrap/_jumbotron.scss +17 -0
  34. data/_sass/bootstrap/_list-group.scss +149 -0
  35. data/_sass/bootstrap/_media.scss +8 -0
  36. data/_sass/bootstrap/_mixins.scss +47 -0
  37. data/_sass/bootstrap/_modal.scss +229 -0
  38. data/_sass/bootstrap/_nav.scss +120 -0
  39. data/_sass/bootstrap/_navbar.scss +294 -0
  40. data/_sass/bootstrap/_pagination.scss +73 -0
  41. data/_sass/bootstrap/_popover.scss +171 -0
  42. data/_sass/bootstrap/_print.scss +141 -0
  43. data/_sass/bootstrap/_progress.scss +43 -0
  44. data/_sass/bootstrap/_reboot.scss +483 -0
  45. data/_sass/bootstrap/_root.scss +19 -0
  46. data/_sass/bootstrap/_spinners.scss +55 -0
  47. data/_sass/bootstrap/_tables.scss +185 -0
  48. data/_sass/bootstrap/_toasts.scss +44 -0
  49. data/_sass/bootstrap/_tooltip.scss +115 -0
  50. data/_sass/bootstrap/_transitions.scss +20 -0
  51. data/_sass/bootstrap/_type.scss +125 -0
  52. data/_sass/bootstrap/_utilities.scss +17 -0
  53. data/_sass/bootstrap/_variables.scss +1123 -0
  54. data/_sass/bootstrap/bootstrap-grid.scss +29 -0
  55. data/_sass/bootstrap/bootstrap-reboot.scss +12 -0
  56. data/_sass/bootstrap/bootstrap.scss +44 -0
  57. data/_sass/bootstrap/mixins/_alert.scss +13 -0
  58. data/_sass/bootstrap/mixins/_background-variant.scss +21 -0
  59. data/_sass/bootstrap/mixins/_badge.scss +17 -0
  60. data/_sass/bootstrap/mixins/_border-radius.scss +63 -0
  61. data/_sass/bootstrap/mixins/_box-shadow.scss +20 -0
  62. data/_sass/bootstrap/mixins/_breakpoints.scss +123 -0
  63. data/_sass/bootstrap/mixins/_buttons.scss +107 -0
  64. data/_sass/bootstrap/mixins/_caret.scss +62 -0
  65. data/_sass/bootstrap/mixins/_clearfix.scss +7 -0
  66. data/_sass/bootstrap/mixins/_deprecate.scss +10 -0
  67. data/_sass/bootstrap/mixins/_float.scss +14 -0
  68. data/_sass/bootstrap/mixins/_forms.scss +192 -0
  69. data/_sass/bootstrap/mixins/_gradients.scss +45 -0
  70. data/_sass/bootstrap/mixins/_grid-framework.scss +66 -0
  71. data/_sass/bootstrap/mixins/_grid.scss +51 -0
  72. data/_sass/bootstrap/mixins/_hover.scss +37 -0
  73. data/_sass/bootstrap/mixins/_image.scss +36 -0
  74. data/_sass/bootstrap/mixins/_list-group.scss +21 -0
  75. data/_sass/bootstrap/mixins/_lists.scss +7 -0
  76. data/_sass/bootstrap/mixins/_nav-divider.scss +10 -0
  77. data/_sass/bootstrap/mixins/_pagination.scss +22 -0
  78. data/_sass/bootstrap/mixins/_reset-text.scss +17 -0
  79. data/_sass/bootstrap/mixins/_resize.scss +6 -0
  80. data/_sass/bootstrap/mixins/_screen-reader.scss +33 -0
  81. data/_sass/bootstrap/mixins/_size.scss +7 -0
  82. data/_sass/bootstrap/mixins/_table-row.scss +39 -0
  83. data/_sass/bootstrap/mixins/_text-emphasis.scss +16 -0
  84. data/_sass/bootstrap/mixins/_text-hide.scss +11 -0
  85. data/_sass/bootstrap/mixins/_text-truncate.scss +8 -0
  86. data/_sass/bootstrap/mixins/_transition.scss +16 -0
  87. data/_sass/bootstrap/mixins/_visibility.scss +8 -0
  88. data/_sass/bootstrap/utilities/_align.scss +8 -0
  89. data/_sass/bootstrap/utilities/_background.scss +19 -0
  90. data/_sass/bootstrap/utilities/_borders.scss +75 -0
  91. data/_sass/bootstrap/utilities/_clearfix.scss +3 -0
  92. data/_sass/bootstrap/utilities/_display.scss +26 -0
  93. data/_sass/bootstrap/utilities/_embed.scss +39 -0
  94. data/_sass/bootstrap/utilities/_flex.scss +51 -0
  95. data/_sass/bootstrap/utilities/_float.scss +11 -0
  96. data/_sass/bootstrap/utilities/_overflow.scss +5 -0
  97. data/_sass/bootstrap/utilities/_position.scss +32 -0
  98. data/_sass/bootstrap/utilities/_screenreaders.scss +11 -0
  99. data/_sass/bootstrap/utilities/_shadows.scss +6 -0
  100. data/_sass/bootstrap/utilities/_sizing.scss +20 -0
  101. data/_sass/bootstrap/utilities/_spacing.scss +73 -0
  102. data/_sass/bootstrap/utilities/_stretched-link.scss +19 -0
  103. data/_sass/bootstrap/utilities/_text.scss +72 -0
  104. data/_sass/bootstrap/utilities/_visibility.scss +13 -0
  105. data/_sass/bootstrap/vendor/_rfs.scss +204 -0
  106. data/assets/images/projects/nativescript.png +0 -0
  107. data/assets/images/projects/puppet.png +0 -0
  108. data/assets/javascript/bootstrap/__DO_NOT_MODIFY +0 -0
  109. data/assets/javascript/bootstrap/bootstrap.bundle.min.js +7 -0
  110. data/assets/javascript/bootstrap/bootstrap.bundle.min.js.map +1 -0
  111. data/assets/javascript/bootstrap/jquery.min.js +2 -0
  112. data/assets/javascript/bootstrap/jquery.min.map +1 -0
  113. data/assets/main.scss +9 -0
  114. metadata +219 -0
@@ -0,0 +1,191 @@
1
+ // The dropdown wrapper (`<div>`)
2
+ .dropup,
3
+ .dropright,
4
+ .dropdown,
5
+ .dropleft {
6
+ position: relative;
7
+ }
8
+
9
+ .dropdown-toggle {
10
+ white-space: nowrap;
11
+
12
+ // Generate the caret automatically
13
+ @include caret;
14
+ }
15
+
16
+ // The dropdown menu
17
+ .dropdown-menu {
18
+ position: absolute;
19
+ top: 100%;
20
+ left: 0;
21
+ z-index: $zindex-dropdown;
22
+ display: none; // none by default, but block on "open" of the menu
23
+ float: left;
24
+ min-width: $dropdown-min-width;
25
+ padding: $dropdown-padding-y 0;
26
+ margin: $dropdown-spacer 0 0; // override default ul
27
+ @include font-size($dropdown-font-size);
28
+ color: $dropdown-color;
29
+ text-align: left; // Ensures proper alignment if parent has it changed (e.g., modal footer)
30
+ list-style: none;
31
+ background-color: $dropdown-bg;
32
+ background-clip: padding-box;
33
+ border: $dropdown-border-width solid $dropdown-border-color;
34
+ @include border-radius($dropdown-border-radius);
35
+ @include box-shadow($dropdown-box-shadow);
36
+ }
37
+
38
+ @each $breakpoint in map-keys($grid-breakpoints) {
39
+ @include media-breakpoint-up($breakpoint) {
40
+ $infix: breakpoint-infix($breakpoint, $grid-breakpoints);
41
+
42
+ .dropdown-menu#{$infix}-left {
43
+ right: auto;
44
+ left: 0;
45
+ }
46
+
47
+ .dropdown-menu#{$infix}-right {
48
+ right: 0;
49
+ left: auto;
50
+ }
51
+ }
52
+ }
53
+
54
+ // Allow for dropdowns to go bottom up (aka, dropup-menu)
55
+ // Just add .dropup after the standard .dropdown class and you're set.
56
+ .dropup {
57
+ .dropdown-menu {
58
+ top: auto;
59
+ bottom: 100%;
60
+ margin-top: 0;
61
+ margin-bottom: $dropdown-spacer;
62
+ }
63
+
64
+ .dropdown-toggle {
65
+ @include caret(up);
66
+ }
67
+ }
68
+
69
+ .dropright {
70
+ .dropdown-menu {
71
+ top: 0;
72
+ right: auto;
73
+ left: 100%;
74
+ margin-top: 0;
75
+ margin-left: $dropdown-spacer;
76
+ }
77
+
78
+ .dropdown-toggle {
79
+ @include caret(right);
80
+ &::after {
81
+ vertical-align: 0;
82
+ }
83
+ }
84
+ }
85
+
86
+ .dropleft {
87
+ .dropdown-menu {
88
+ top: 0;
89
+ right: 100%;
90
+ left: auto;
91
+ margin-top: 0;
92
+ margin-right: $dropdown-spacer;
93
+ }
94
+
95
+ .dropdown-toggle {
96
+ @include caret(left);
97
+ &::before {
98
+ vertical-align: 0;
99
+ }
100
+ }
101
+ }
102
+
103
+ // When enabled Popper.js, reset basic dropdown position
104
+ // stylelint-disable-next-line no-duplicate-selectors
105
+ .dropdown-menu {
106
+ &[x-placement^="top"],
107
+ &[x-placement^="right"],
108
+ &[x-placement^="bottom"],
109
+ &[x-placement^="left"] {
110
+ right: auto;
111
+ bottom: auto;
112
+ }
113
+ }
114
+
115
+ // Dividers (basically an `<hr>`) within the dropdown
116
+ .dropdown-divider {
117
+ @include nav-divider($dropdown-divider-bg, $dropdown-divider-margin-y);
118
+ }
119
+
120
+ // Links, buttons, and more within the dropdown menu
121
+ //
122
+ // `<button>`-specific styles are denoted with `// For <button>s`
123
+ .dropdown-item {
124
+ display: block;
125
+ width: 100%; // For `<button>`s
126
+ padding: $dropdown-item-padding-y $dropdown-item-padding-x;
127
+ clear: both;
128
+ font-weight: $font-weight-normal;
129
+ color: $dropdown-link-color;
130
+ text-align: inherit; // For `<button>`s
131
+ white-space: nowrap; // prevent links from randomly breaking onto new lines
132
+ background-color: transparent; // For `<button>`s
133
+ border: 0; // For `<button>`s
134
+
135
+ // Prevent dropdown overflow if there's no padding
136
+ // See https://github.com/twbs/bootstrap/pull/27703
137
+ @if $dropdown-padding-y == 0 {
138
+ &:first-child {
139
+ @include border-top-radius($dropdown-inner-border-radius);
140
+ }
141
+
142
+ &:last-child {
143
+ @include border-bottom-radius($dropdown-inner-border-radius);
144
+ }
145
+ }
146
+
147
+ @include hover-focus {
148
+ color: $dropdown-link-hover-color;
149
+ text-decoration: none;
150
+ @include gradient-bg($dropdown-link-hover-bg);
151
+ }
152
+
153
+ &.active,
154
+ &:active {
155
+ color: $dropdown-link-active-color;
156
+ text-decoration: none;
157
+ @include gradient-bg($dropdown-link-active-bg);
158
+ }
159
+
160
+ &.disabled,
161
+ &:disabled {
162
+ color: $dropdown-link-disabled-color;
163
+ pointer-events: none;
164
+ background-color: transparent;
165
+ // Remove CSS gradients if they're enabled
166
+ @if $enable-gradients {
167
+ background-image: none;
168
+ }
169
+ }
170
+ }
171
+
172
+ .dropdown-menu.show {
173
+ display: block;
174
+ }
175
+
176
+ // Dropdown section headers
177
+ .dropdown-header {
178
+ display: block;
179
+ padding: $dropdown-padding-y $dropdown-item-padding-x;
180
+ margin-bottom: 0; // for use with heading elements
181
+ @include font-size($font-size-sm);
182
+ color: $dropdown-header-color;
183
+ white-space: nowrap; // as with > li > a
184
+ }
185
+
186
+ // Dropdown text
187
+ .dropdown-item-text {
188
+ display: block;
189
+ padding: $dropdown-item-padding-y $dropdown-item-padding-x;
190
+ color: $dropdown-link-color;
191
+ }
@@ -0,0 +1,330 @@
1
+ // stylelint-disable selector-no-qualifying-type
2
+
3
+ //
4
+ // Textual form controls
5
+ //
6
+
7
+ .form-control {
8
+ display: block;
9
+ width: 100%;
10
+ height: $input-height;
11
+ padding: $input-padding-y $input-padding-x;
12
+ font-family: $input-font-family;
13
+ @include font-size($input-font-size);
14
+ font-weight: $input-font-weight;
15
+ line-height: $input-line-height;
16
+ color: $input-color;
17
+ background-color: $input-bg;
18
+ background-clip: padding-box;
19
+ border: $input-border-width solid $input-border-color;
20
+
21
+ // Note: This has no effect on <select>s in some browsers, due to the limited stylability of `<select>`s in CSS.
22
+ @include border-radius($input-border-radius, 0);
23
+
24
+ @include box-shadow($input-box-shadow);
25
+ @include transition($input-transition);
26
+
27
+ // Unstyle the caret on `<select>`s in IE10+.
28
+ &::-ms-expand {
29
+ background-color: transparent;
30
+ border: 0;
31
+ }
32
+
33
+ // Customize the `:focus` state to imitate native WebKit styles.
34
+ @include form-control-focus();
35
+
36
+ // Placeholder
37
+ &::placeholder {
38
+ color: $input-placeholder-color;
39
+ // Override Firefox's unusual default opacity; see https://github.com/twbs/bootstrap/pull/11526.
40
+ opacity: 1;
41
+ }
42
+
43
+ // Disabled and read-only inputs
44
+ //
45
+ // HTML5 says that controls under a fieldset > legend:first-child won't be
46
+ // disabled if the fieldset is disabled. Due to implementation difficulty, we
47
+ // don't honor that edge case; we style them as disabled anyway.
48
+ &:disabled,
49
+ &[readonly] {
50
+ background-color: $input-disabled-bg;
51
+ // iOS fix for unreadable disabled content; see https://github.com/twbs/bootstrap/issues/11655.
52
+ opacity: 1;
53
+ }
54
+ }
55
+
56
+ select.form-control {
57
+ &:focus::-ms-value {
58
+ // Suppress the nested default white text on blue background highlight given to
59
+ // the selected option text when the (still closed) <select> receives focus
60
+ // in IE and (under certain conditions) Edge, as it looks bad and cannot be made to
61
+ // match the appearance of the native widget.
62
+ // See https://github.com/twbs/bootstrap/issues/19398.
63
+ color: $input-color;
64
+ background-color: $input-bg;
65
+ }
66
+ }
67
+
68
+ // Make file inputs better match text inputs by forcing them to new lines.
69
+ .form-control-file,
70
+ .form-control-range {
71
+ display: block;
72
+ width: 100%;
73
+ }
74
+
75
+
76
+ //
77
+ // Labels
78
+ //
79
+
80
+ // For use with horizontal and inline forms, when you need the label (or legend)
81
+ // text to align with the form controls.
82
+ .col-form-label {
83
+ padding-top: calc(#{$input-padding-y} + #{$input-border-width});
84
+ padding-bottom: calc(#{$input-padding-y} + #{$input-border-width});
85
+ margin-bottom: 0; // Override the `<label>/<legend>` default
86
+ @include font-size(inherit); // Override the `<legend>` default
87
+ line-height: $input-line-height;
88
+ }
89
+
90
+ .col-form-label-lg {
91
+ padding-top: calc(#{$input-padding-y-lg} + #{$input-border-width});
92
+ padding-bottom: calc(#{$input-padding-y-lg} + #{$input-border-width});
93
+ @include font-size($input-font-size-lg);
94
+ line-height: $input-line-height-lg;
95
+ }
96
+
97
+ .col-form-label-sm {
98
+ padding-top: calc(#{$input-padding-y-sm} + #{$input-border-width});
99
+ padding-bottom: calc(#{$input-padding-y-sm} + #{$input-border-width});
100
+ @include font-size($input-font-size-sm);
101
+ line-height: $input-line-height-sm;
102
+ }
103
+
104
+
105
+ // Readonly controls as plain text
106
+ //
107
+ // Apply class to a readonly input to make it appear like regular plain
108
+ // text (without any border, background color, focus indicator)
109
+
110
+ .form-control-plaintext {
111
+ display: block;
112
+ width: 100%;
113
+ padding-top: $input-padding-y;
114
+ padding-bottom: $input-padding-y;
115
+ margin-bottom: 0; // match inputs if this class comes on inputs with default margins
116
+ line-height: $input-line-height;
117
+ color: $input-plaintext-color;
118
+ background-color: transparent;
119
+ border: solid transparent;
120
+ border-width: $input-border-width 0;
121
+
122
+ &.form-control-sm,
123
+ &.form-control-lg {
124
+ padding-right: 0;
125
+ padding-left: 0;
126
+ }
127
+ }
128
+
129
+
130
+ // Form control sizing
131
+ //
132
+ // Build on `.form-control` with modifier classes to decrease or increase the
133
+ // height and font-size of form controls.
134
+ //
135
+ // Repeated in `_input_group.scss` to avoid Sass extend issues.
136
+
137
+ .form-control-sm {
138
+ height: $input-height-sm;
139
+ padding: $input-padding-y-sm $input-padding-x-sm;
140
+ @include font-size($input-font-size-sm);
141
+ line-height: $input-line-height-sm;
142
+ @include border-radius($input-border-radius-sm);
143
+ }
144
+
145
+ .form-control-lg {
146
+ height: $input-height-lg;
147
+ padding: $input-padding-y-lg $input-padding-x-lg;
148
+ @include font-size($input-font-size-lg);
149
+ line-height: $input-line-height-lg;
150
+ @include border-radius($input-border-radius-lg);
151
+ }
152
+
153
+ // stylelint-disable-next-line no-duplicate-selectors
154
+ select.form-control {
155
+ &[size],
156
+ &[multiple] {
157
+ height: auto;
158
+ }
159
+ }
160
+
161
+ textarea.form-control {
162
+ height: auto;
163
+ }
164
+
165
+ // Form groups
166
+ //
167
+ // Designed to help with the organization and spacing of vertical forms. For
168
+ // horizontal forms, use the predefined grid classes.
169
+
170
+ .form-group {
171
+ margin-bottom: $form-group-margin-bottom;
172
+ }
173
+
174
+ .form-text {
175
+ display: block;
176
+ margin-top: $form-text-margin-top;
177
+ }
178
+
179
+
180
+ // Form grid
181
+ //
182
+ // Special replacement for our grid system's `.row` for tighter form layouts.
183
+
184
+ .form-row {
185
+ display: flex;
186
+ flex-wrap: wrap;
187
+ margin-right: -$form-grid-gutter-width / 2;
188
+ margin-left: -$form-grid-gutter-width / 2;
189
+
190
+ > .col,
191
+ > [class*="col-"] {
192
+ padding-right: $form-grid-gutter-width / 2;
193
+ padding-left: $form-grid-gutter-width / 2;
194
+ }
195
+ }
196
+
197
+
198
+ // Checkboxes and radios
199
+ //
200
+ // Indent the labels to position radios/checkboxes as hanging controls.
201
+
202
+ .form-check {
203
+ position: relative;
204
+ display: block;
205
+ padding-left: $form-check-input-gutter;
206
+ }
207
+
208
+ .form-check-input {
209
+ position: absolute;
210
+ margin-top: $form-check-input-margin-y;
211
+ margin-left: -$form-check-input-gutter;
212
+
213
+ &:disabled ~ .form-check-label {
214
+ color: $text-muted;
215
+ }
216
+ }
217
+
218
+ .form-check-label {
219
+ margin-bottom: 0; // Override default `<label>` bottom margin
220
+ }
221
+
222
+ .form-check-inline {
223
+ display: inline-flex;
224
+ align-items: center;
225
+ padding-left: 0; // Override base .form-check
226
+ margin-right: $form-check-inline-margin-x;
227
+
228
+ // Undo .form-check-input defaults and add some `margin-right`.
229
+ .form-check-input {
230
+ position: static;
231
+ margin-top: 0;
232
+ margin-right: $form-check-inline-input-margin-x;
233
+ margin-left: 0;
234
+ }
235
+ }
236
+
237
+
238
+ // Form validation
239
+ //
240
+ // Provide feedback to users when form field values are valid or invalid. Works
241
+ // primarily for client-side validation via scoped `:invalid` and `:valid`
242
+ // pseudo-classes but also includes `.is-invalid` and `.is-valid` classes for
243
+ // server side validation.
244
+
245
+ @each $state, $data in $form-validation-states {
246
+ @include form-validation-state($state, map-get($data, color), map-get($data, icon));
247
+ }
248
+
249
+ // Inline forms
250
+ //
251
+ // Make forms appear inline(-block) by adding the `.form-inline` class. Inline
252
+ // forms begin stacked on extra small (mobile) devices and then go inline when
253
+ // viewports reach <768px.
254
+ //
255
+ // Requires wrapping inputs and labels with `.form-group` for proper display of
256
+ // default HTML form controls and our custom form controls (e.g., input groups).
257
+
258
+ .form-inline {
259
+ display: flex;
260
+ flex-flow: row wrap;
261
+ align-items: center; // Prevent shorter elements from growing to same height as others (e.g., small buttons growing to normal sized button height)
262
+
263
+ // Because we use flex, the initial sizing of checkboxes is collapsed and
264
+ // doesn't occupy the full-width (which is what we want for xs grid tier),
265
+ // so we force that here.
266
+ .form-check {
267
+ width: 100%;
268
+ }
269
+
270
+ // Kick in the inline
271
+ @include media-breakpoint-up(sm) {
272
+ label {
273
+ display: flex;
274
+ align-items: center;
275
+ justify-content: center;
276
+ margin-bottom: 0;
277
+ }
278
+
279
+ // Inline-block all the things for "inline"
280
+ .form-group {
281
+ display: flex;
282
+ flex: 0 0 auto;
283
+ flex-flow: row wrap;
284
+ align-items: center;
285
+ margin-bottom: 0;
286
+ }
287
+
288
+ // Allow folks to *not* use `.form-group`
289
+ .form-control {
290
+ display: inline-block;
291
+ width: auto; // Prevent labels from stacking above inputs in `.form-group`
292
+ vertical-align: middle;
293
+ }
294
+
295
+ // Make static controls behave like regular ones
296
+ .form-control-plaintext {
297
+ display: inline-block;
298
+ }
299
+
300
+ .input-group,
301
+ .custom-select {
302
+ width: auto;
303
+ }
304
+
305
+ // Remove default margin on radios/checkboxes that were used for stacking, and
306
+ // then undo the floating of radios and checkboxes to match.
307
+ .form-check {
308
+ display: flex;
309
+ align-items: center;
310
+ justify-content: center;
311
+ width: auto;
312
+ padding-left: 0;
313
+ }
314
+ .form-check-input {
315
+ position: relative;
316
+ flex-shrink: 0;
317
+ margin-top: 0;
318
+ margin-right: $form-check-input-margin-x;
319
+ margin-left: 0;
320
+ }
321
+
322
+ .custom-control {
323
+ align-items: center;
324
+ justify-content: center;
325
+ }
326
+ .custom-control-label {
327
+ margin-bottom: 0;
328
+ }
329
+ }
330
+ }