epages-essence 0.1.0 → 0.2.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 (107) hide show
  1. checksums.yaml +4 -4
  2. data/LICENSE +1 -1
  3. data/README.md +4 -3
  4. data/app/assets/images/essence/icon_component/arrow_right.svg +1 -0
  5. data/app/assets/images/essence/icon_component/chevron_up_down.svg +3 -0
  6. data/app/assets/images/essence/icon_component/power_off.svg +1 -0
  7. data/app/assets/images/essence/icon_component/sparkles.svg +1 -0
  8. data/app/assets/images/essence/icon_component/x_mark.svg +3 -0
  9. data/app/assets/stylesheets/essence/beyond/{_base.scss → layout/base.css} +0 -5
  10. data/app/assets/stylesheets/essence/beyond/layout/{_content.scss → content.css} +1 -1
  11. data/app/assets/stylesheets/essence/beyond/simple_form/control.css +249 -0
  12. data/app/assets/stylesheets/essence/beyond/simple_form/error.css +29 -0
  13. data/app/assets/stylesheets/essence/beyond/simple_form/fieldset.css +32 -0
  14. data/app/assets/stylesheets/essence/beyond/simple_form/group.css +21 -0
  15. data/app/assets/stylesheets/essence/beyond/simple_form/hint.css +6 -0
  16. data/app/assets/stylesheets/essence/beyond/simple_form/label.css +38 -0
  17. data/app/assets/stylesheets/essence/beyond/simple_form/row.css +5 -0
  18. data/app/assets/stylesheets/essence/beyond/simple_form/wrapper.css +3 -0
  19. data/app/assets/stylesheets/essence/beyond/utils/margin.css +15 -0
  20. data/app/assets/stylesheets/essence/beyond/variables.css +281 -0
  21. data/app/assets/stylesheets/essence/beyond.css +39 -0
  22. data/app/components/essence/action_bar_component/action_bar_component.css +23 -0
  23. data/app/components/essence/action_bar_component.rb +2 -1
  24. data/app/components/essence/app_info_component/app_info_component.css +45 -0
  25. data/app/components/essence/application_component.rb +1 -3
  26. data/app/components/essence/breadcrumb_component/breadcrumb_component.css +35 -0
  27. data/app/components/essence/button_component/button_component.css +140 -0
  28. data/app/components/essence/button_component/button_component.html.erb +2 -0
  29. data/app/components/essence/button_component/button_component_controller.js +27 -0
  30. data/app/components/essence/button_component.rb +27 -2
  31. data/app/components/essence/button_group_component/button_group_component.css +21 -0
  32. data/app/components/essence/button_group_component/button_group_component.html.erb +5 -0
  33. data/app/components/essence/button_group_component.rb +28 -0
  34. data/app/components/essence/card_component/card_component.css +66 -0
  35. data/app/components/essence/card_component/card_component.html.erb +6 -0
  36. data/app/components/essence/card_component/ribbon_component.html.erb +3 -0
  37. data/app/components/essence/card_component.rb +38 -4
  38. data/app/components/essence/clipboard_copy_component/{clipboard_copy_component.scss → clipboard_copy_component.css} +4 -4
  39. data/app/components/essence/empty_state_component/empty_state_component.css +42 -0
  40. data/app/components/essence/expandable_component/expandable_component.css +36 -0
  41. data/app/components/essence/expandable_component/expandable_component.html.erb +8 -0
  42. data/app/components/essence/expandable_component/expandable_component_controller.js +32 -0
  43. data/app/components/essence/expandable_component.rb +30 -0
  44. data/app/components/essence/expandable_toggle_component/expandable_toggle_component.css +7 -0
  45. data/app/components/essence/expandable_toggle_component/expandable_toggle_component.html.erb +3 -0
  46. data/app/components/essence/expandable_toggle_component/expandable_toggle_component.yml +4 -0
  47. data/app/components/essence/expandable_toggle_component/expandable_toggle_component_controller.js +52 -0
  48. data/app/components/essence/expandable_toggle_component.rb +38 -0
  49. data/app/components/essence/flash_component/container_component.html.erb +7 -0
  50. data/app/components/essence/flash_component/flash_component.css +101 -0
  51. data/app/components/essence/flash_component/flash_component.html.erb +11 -0
  52. data/app/components/essence/flash_component/flash_component_controller.js +24 -0
  53. data/app/components/essence/flash_component.rb +29 -0
  54. data/app/components/essence/link_component/link_component.css +49 -0
  55. data/app/components/essence/notification_component/notification_component.css +55 -0
  56. data/app/components/essence/notification_component.rb +6 -2
  57. data/app/components/essence/paragraph_component/{paragraph_component.scss → paragraph_component.css} +0 -5
  58. data/app/components/essence/scroll_shadow_component/{scroll_shadow_component.scss → scroll_shadow_component.css} +4 -0
  59. data/app/components/essence/spinner_component/{spinner_component.scss → spinner_component.css} +5 -12
  60. data/app/components/essence/spinner_component/spinner_component.html.erb +1 -1
  61. data/app/components/essence/spinner_component.rb +4 -2
  62. data/app/components/essence/status_component/status_component.css +64 -0
  63. data/app/components/essence/status_component.rb +1 -1
  64. data/app/components/essence/step_list_component/step_list_component.css +72 -0
  65. data/app/components/essence/step_list_component/step_list_component.html.erb +3 -1
  66. data/app/components/essence/step_list_component.rb +7 -1
  67. data/app/components/essence/table_component/{table_component.scss → table_component.css} +5 -8
  68. data/app/components/essence/title_component/{title_component.scss → title_component.css} +0 -4
  69. data/app/components/essence/tooltip_component/tooltip_component.css +55 -0
  70. data/app/inputs/file_input.rb +73 -0
  71. data/app/javascript/essence/application.js +2 -2
  72. data/app/javascript/essence/controllers/file_input_controller.js +41 -0
  73. data/app/javascript/essence/controllers/index.js +18 -3
  74. data/app/views/essence/beyond/body.html.erb +1 -0
  75. data/config/importmap.rb +3 -0
  76. data/config/initializers/essence/inline_svg.rb +5 -0
  77. data/config/initializers/essence/simple_form.rb +29 -8
  78. data/config/locales/essence.en.yml +3 -0
  79. data/lib/components/input_group.rb +19 -0
  80. data/lib/essence/engine.rb +20 -5
  81. data/lib/essence/version.rb +1 -1
  82. data/lib/essence.rb +1 -1
  83. data/vendor/assets/stylesheets/essence/flexboxgrid.css +824 -0
  84. metadata +78 -53
  85. data/app/assets/config/essence_manifest.js +0 -5
  86. data/app/assets/stylesheets/essence/beyond/components/_index.scss +0 -17
  87. data/app/assets/stylesheets/essence/beyond/layout/_index.scss +0 -1
  88. data/app/assets/stylesheets/essence/beyond/simple_form/_control.scss +0 -172
  89. data/app/assets/stylesheets/essence/beyond/simple_form/_error.scss +0 -27
  90. data/app/assets/stylesheets/essence/beyond/simple_form/_fieldset.scss +0 -34
  91. data/app/assets/stylesheets/essence/beyond/simple_form/_group.scss +0 -6
  92. data/app/assets/stylesheets/essence/beyond/simple_form/_hint.scss +0 -8
  93. data/app/assets/stylesheets/essence/beyond/simple_form/_index.scss +0 -43
  94. data/app/assets/stylesheets/essence/beyond/simple_form/_label.scss +0 -26
  95. data/app/assets/stylesheets/essence/beyond/simple_form/_wrapper.scss +0 -5
  96. data/app/assets/stylesheets/essence/beyond.scss +0 -4
  97. data/app/components/essence/action_bar_component/action_bar_component.scss +0 -29
  98. data/app/components/essence/app_info_component/app_info_component.scss +0 -45
  99. data/app/components/essence/breadcrumb_component/breadcrumb_component.scss +0 -39
  100. data/app/components/essence/button_component/button_component.scss +0 -105
  101. data/app/components/essence/card_component/card_component.scss +0 -21
  102. data/app/components/essence/empty_state_component/empty_state_component.scss +0 -50
  103. data/app/components/essence/link_component/link_component.scss +0 -58
  104. data/app/components/essence/notification_component/notification_component.scss +0 -63
  105. data/app/components/essence/status_component/status_component.scss +0 -80
  106. data/app/components/essence/step_list_component/step_list_component.scss +0 -79
  107. data/app/components/essence/tooltip_component/tooltip_component.scss +0 -63
@@ -0,0 +1,824 @@
1
+ :root {
2
+ --gutter-width: 30px;
3
+ --outer-margin: 60px;
4
+ --gutter-compensation: calc((var(--gutter-width) * 0.5) * -1);
5
+ --half-gutter-width: calc((var(--gutter-width) * 0.5));
6
+ --xs-min: 30;
7
+ --sm-min: 48;
8
+ --md-min: 64;
9
+ --lg-min: 75;
10
+ --screen-xs-min: var(--xs-min) em;
11
+ --screen-sm-min: var(--sm-min) em;
12
+ --screen-md-min: var(--md-min) em;
13
+ --screen-lg-min: var(--lg-min) em;
14
+ --container-sm: calc(var(--sm-min) + var(--gutter-width));
15
+ --container-md: calc(var(--md-min) + var(--gutter-width));
16
+ --container-lg: calc(var(--lg-min) + var(--gutter-width));
17
+ }
18
+
19
+ @custom-media --sm-viewport only screen and (min-width: 48em);
20
+ @custom-media --md-viewport only screen and (min-width: 64em);
21
+ @custom-media --lg-viewport only screen and (min-width: 75em);
22
+
23
+ .container-fluid,
24
+ .container {
25
+ margin-right: auto;
26
+ margin-left: auto;
27
+ }
28
+
29
+ .container-fluid {
30
+ padding-right: var(--outer-margin, 2rem);
31
+ padding-left: var(--outer-margin, 2rem);
32
+ }
33
+
34
+ .row {
35
+ box-sizing: border-box;
36
+ display: flex;
37
+ flex: 0 1 auto;
38
+ flex-direction: row;
39
+ flex-wrap: wrap;
40
+ margin-right: var(--gutter-compensation, -0.5rem);
41
+ margin-left: var(--gutter-compensation, -0.5rem);
42
+ }
43
+
44
+ .row.reverse {
45
+ flex-direction: row-reverse;
46
+ }
47
+
48
+ .col.reverse {
49
+ flex-direction: column-reverse;
50
+ }
51
+
52
+ .col-xs,
53
+ .col-xs-1,
54
+ .col-xs-2,
55
+ .col-xs-3,
56
+ .col-xs-4,
57
+ .col-xs-5,
58
+ .col-xs-6,
59
+ .col-xs-7,
60
+ .col-xs-8,
61
+ .col-xs-9,
62
+ .col-xs-10,
63
+ .col-xs-11,
64
+ .col-xs-12,
65
+ .col-xs-offset-0,
66
+ .col-xs-offset-1,
67
+ .col-xs-offset-2,
68
+ .col-xs-offset-3,
69
+ .col-xs-offset-4,
70
+ .col-xs-offset-5,
71
+ .col-xs-offset-6,
72
+ .col-xs-offset-7,
73
+ .col-xs-offset-8,
74
+ .col-xs-offset-9,
75
+ .col-xs-offset-10,
76
+ .col-xs-offset-11,
77
+ .col-xs-offset-12 {
78
+ box-sizing: border-box;
79
+ flex: 0 0 auto;
80
+ padding-right: var(--half-gutter-width, 0.5rem);
81
+ padding-left: var(--half-gutter-width, 0.5rem);
82
+ }
83
+
84
+ .col-xs {
85
+ flex-grow: 1;
86
+ flex-basis: 0;
87
+ max-width: 100%;
88
+ }
89
+
90
+ .col-xs-1 {
91
+ flex-basis: 8.33333333%;
92
+ max-width: 8.33333333%;
93
+ }
94
+
95
+ .col-xs-2 {
96
+ flex-basis: 16.66666667%;
97
+ max-width: 16.66666667%;
98
+ }
99
+
100
+ .col-xs-3 {
101
+ flex-basis: 25%;
102
+ max-width: 25%;
103
+ }
104
+
105
+ .col-xs-4 {
106
+ flex-basis: 33.33333333%;
107
+ max-width: 33.33333333%;
108
+ }
109
+
110
+ .col-xs-5 {
111
+ flex-basis: 41.66666667%;
112
+ max-width: 41.66666667%;
113
+ }
114
+
115
+ .col-xs-6 {
116
+ flex-basis: 50%;
117
+ max-width: 50%;
118
+ }
119
+
120
+ .col-xs-7 {
121
+ flex-basis: 58.33333333%;
122
+ max-width: 58.33333333%;
123
+ }
124
+
125
+ .col-xs-8 {
126
+ flex-basis: 66.66666667%;
127
+ max-width: 66.66666667%;
128
+ }
129
+
130
+ .col-xs-9 {
131
+ flex-basis: 75%;
132
+ max-width: 75%;
133
+ }
134
+
135
+ .col-xs-10 {
136
+ flex-basis: 83.33333333%;
137
+ max-width: 83.33333333%;
138
+ }
139
+
140
+ .col-xs-11 {
141
+ flex-basis: 91.66666667%;
142
+ max-width: 91.66666667%;
143
+ }
144
+
145
+ .col-xs-12 {
146
+ flex-basis: 100%;
147
+ max-width: 100%;
148
+ }
149
+
150
+ .col-xs-offset-0 {
151
+ margin-left: 0;
152
+ }
153
+
154
+ .col-xs-offset-1 {
155
+ margin-left: 8.33333333%;
156
+ }
157
+
158
+ .col-xs-offset-2 {
159
+ margin-left: 16.66666667%;
160
+ }
161
+
162
+ .col-xs-offset-3 {
163
+ margin-left: 25%;
164
+ }
165
+
166
+ .col-xs-offset-4 {
167
+ margin-left: 33.33333333%;
168
+ }
169
+
170
+ .col-xs-offset-5 {
171
+ margin-left: 41.66666667%;
172
+ }
173
+
174
+ .col-xs-offset-6 {
175
+ margin-left: 50%;
176
+ }
177
+
178
+ .col-xs-offset-7 {
179
+ margin-left: 58.33333333%;
180
+ }
181
+
182
+ .col-xs-offset-8 {
183
+ margin-left: 66.66666667%;
184
+ }
185
+
186
+ .col-xs-offset-9 {
187
+ margin-left: 75%;
188
+ }
189
+
190
+ .col-xs-offset-10 {
191
+ margin-left: 83.33333333%;
192
+ }
193
+
194
+ .col-xs-offset-11 {
195
+ margin-left: 91.66666667%;
196
+ }
197
+
198
+ .start-xs {
199
+ justify-content: flex-start;
200
+ text-align: start;
201
+ }
202
+
203
+ .center-xs {
204
+ justify-content: center;
205
+ text-align: center;
206
+ }
207
+
208
+ .end-xs {
209
+ justify-content: flex-end;
210
+ text-align: end;
211
+ }
212
+
213
+ .top-xs {
214
+ align-items: flex-start;
215
+ }
216
+
217
+ .middle-xs {
218
+ align-items: center;
219
+ }
220
+
221
+ .bottom-xs {
222
+ align-items: flex-end;
223
+ }
224
+
225
+ .around-xs {
226
+ justify-content: space-around;
227
+ }
228
+
229
+ .between-xs {
230
+ justify-content: space-between;
231
+ }
232
+
233
+ .first-xs {
234
+ order: -1;
235
+ }
236
+
237
+ .last-xs {
238
+ order: 1;
239
+ }
240
+
241
+ @media (--sm-viewport) {
242
+ .container {
243
+ width: var(--container-sm, 46rem);
244
+ }
245
+
246
+ .col-sm,
247
+ .col-sm-1,
248
+ .col-sm-2,
249
+ .col-sm-3,
250
+ .col-sm-4,
251
+ .col-sm-5,
252
+ .col-sm-6,
253
+ .col-sm-7,
254
+ .col-sm-8,
255
+ .col-sm-9,
256
+ .col-sm-10,
257
+ .col-sm-11,
258
+ .col-sm-12,
259
+ .col-sm-offset-0,
260
+ .col-sm-offset-1,
261
+ .col-sm-offset-2,
262
+ .col-sm-offset-3,
263
+ .col-sm-offset-4,
264
+ .col-sm-offset-5,
265
+ .col-sm-offset-6,
266
+ .col-sm-offset-7,
267
+ .col-sm-offset-8,
268
+ .col-sm-offset-9,
269
+ .col-sm-offset-10,
270
+ .col-sm-offset-11,
271
+ .col-sm-offset-12 {
272
+ box-sizing: border-box;
273
+ flex: 0 0 auto;
274
+ padding-right: var(--half-gutter-width, 0.5rem);
275
+ padding-left: var(--half-gutter-width, 0.5rem);
276
+ }
277
+
278
+ .col-sm {
279
+ flex-grow: 1;
280
+ flex-basis: 0;
281
+ max-width: 100%;
282
+ }
283
+
284
+ .col-sm-1 {
285
+ flex-basis: 8.33333333%;
286
+ max-width: 8.33333333%;
287
+ }
288
+
289
+ .col-sm-2 {
290
+ flex-basis: 16.66666667%;
291
+ max-width: 16.66666667%;
292
+ }
293
+
294
+ .col-sm-3 {
295
+ flex-basis: 25%;
296
+ max-width: 25%;
297
+ }
298
+
299
+ .col-sm-4 {
300
+ flex-basis: 33.33333333%;
301
+ max-width: 33.33333333%;
302
+ }
303
+
304
+ .col-sm-5 {
305
+ flex-basis: 41.66666667%;
306
+ max-width: 41.66666667%;
307
+ }
308
+
309
+ .col-sm-6 {
310
+ flex-basis: 50%;
311
+ max-width: 50%;
312
+ }
313
+
314
+ .col-sm-7 {
315
+ flex-basis: 58.33333333%;
316
+ max-width: 58.33333333%;
317
+ }
318
+
319
+ .col-sm-8 {
320
+ flex-basis: 66.66666667%;
321
+ max-width: 66.66666667%;
322
+ }
323
+
324
+ .col-sm-9 {
325
+ flex-basis: 75%;
326
+ max-width: 75%;
327
+ }
328
+
329
+ .col-sm-10 {
330
+ flex-basis: 83.33333333%;
331
+ max-width: 83.33333333%;
332
+ }
333
+
334
+ .col-sm-11 {
335
+ flex-basis: 91.66666667%;
336
+ max-width: 91.66666667%;
337
+ }
338
+
339
+ .col-sm-12 {
340
+ flex-basis: 100%;
341
+ max-width: 100%;
342
+ }
343
+
344
+ .col-sm-offset-0 {
345
+ margin-left: 0;
346
+ }
347
+
348
+ .col-sm-offset-1 {
349
+ margin-left: 8.33333333%;
350
+ }
351
+
352
+ .col-sm-offset-2 {
353
+ margin-left: 16.66666667%;
354
+ }
355
+
356
+ .col-sm-offset-3 {
357
+ margin-left: 25%;
358
+ }
359
+
360
+ .col-sm-offset-4 {
361
+ margin-left: 33.33333333%;
362
+ }
363
+
364
+ .col-sm-offset-5 {
365
+ margin-left: 41.66666667%;
366
+ }
367
+
368
+ .col-sm-offset-6 {
369
+ margin-left: 50%;
370
+ }
371
+
372
+ .col-sm-offset-7 {
373
+ margin-left: 58.33333333%;
374
+ }
375
+
376
+ .col-sm-offset-8 {
377
+ margin-left: 66.66666667%;
378
+ }
379
+
380
+ .col-sm-offset-9 {
381
+ margin-left: 75%;
382
+ }
383
+
384
+ .col-sm-offset-10 {
385
+ margin-left: 83.33333333%;
386
+ }
387
+
388
+ .col-sm-offset-11 {
389
+ margin-left: 91.66666667%;
390
+ }
391
+
392
+ .start-sm {
393
+ justify-content: flex-start;
394
+ text-align: start;
395
+ }
396
+
397
+ .center-sm {
398
+ justify-content: center;
399
+ text-align: center;
400
+ }
401
+
402
+ .end-sm {
403
+ justify-content: flex-end;
404
+ text-align: end;
405
+ }
406
+
407
+ .top-sm {
408
+ align-items: flex-start;
409
+ }
410
+
411
+ .middle-sm {
412
+ align-items: center;
413
+ }
414
+
415
+ .bottom-sm {
416
+ align-items: flex-end;
417
+ }
418
+
419
+ .around-sm {
420
+ justify-content: space-around;
421
+ }
422
+
423
+ .between-sm {
424
+ justify-content: space-between;
425
+ }
426
+
427
+ .first-sm {
428
+ order: -1;
429
+ }
430
+
431
+ .last-sm {
432
+ order: 1;
433
+ }
434
+ }
435
+
436
+ @media (--md-viewport) {
437
+ .container {
438
+ width: var(--container-md, 61rem);
439
+ }
440
+
441
+ .col-md,
442
+ .col-md-1,
443
+ .col-md-2,
444
+ .col-md-3,
445
+ .col-md-4,
446
+ .col-md-5,
447
+ .col-md-6,
448
+ .col-md-7,
449
+ .col-md-8,
450
+ .col-md-9,
451
+ .col-md-10,
452
+ .col-md-11,
453
+ .col-md-12,
454
+ .col-md-offset-0,
455
+ .col-md-offset-1,
456
+ .col-md-offset-2,
457
+ .col-md-offset-3,
458
+ .col-md-offset-4,
459
+ .col-md-offset-5,
460
+ .col-md-offset-6,
461
+ .col-md-offset-7,
462
+ .col-md-offset-8,
463
+ .col-md-offset-9,
464
+ .col-md-offset-10,
465
+ .col-md-offset-11,
466
+ .col-md-offset-12 {
467
+ box-sizing: border-box;
468
+ flex: 0 0 auto;
469
+ padding-right: var(--half-gutter-width, 0.5rem);
470
+ padding-left: var(--half-gutter-width, 0.5rem);
471
+ }
472
+
473
+ .col-md {
474
+ flex-grow: 1;
475
+ flex-basis: 0;
476
+ max-width: 100%;
477
+ }
478
+
479
+ .col-md-1 {
480
+ flex-basis: 8.33333333%;
481
+ max-width: 8.33333333%;
482
+ }
483
+
484
+ .col-md-2 {
485
+ flex-basis: 16.66666667%;
486
+ max-width: 16.66666667%;
487
+ }
488
+
489
+ .col-md-3 {
490
+ flex-basis: 25%;
491
+ max-width: 25%;
492
+ }
493
+
494
+ .col-md-4 {
495
+ flex-basis: 33.33333333%;
496
+ max-width: 33.33333333%;
497
+ }
498
+
499
+ .col-md-5 {
500
+ flex-basis: 41.66666667%;
501
+ max-width: 41.66666667%;
502
+ }
503
+
504
+ .col-md-6 {
505
+ flex-basis: 50%;
506
+ max-width: 50%;
507
+ }
508
+
509
+ .col-md-7 {
510
+ flex-basis: 58.33333333%;
511
+ max-width: 58.33333333%;
512
+ }
513
+
514
+ .col-md-8 {
515
+ flex-basis: 66.66666667%;
516
+ max-width: 66.66666667%;
517
+ }
518
+
519
+ .col-md-9 {
520
+ flex-basis: 75%;
521
+ max-width: 75%;
522
+ }
523
+
524
+ .col-md-10 {
525
+ flex-basis: 83.33333333%;
526
+ max-width: 83.33333333%;
527
+ }
528
+
529
+ .col-md-11 {
530
+ flex-basis: 91.66666667%;
531
+ max-width: 91.66666667%;
532
+ }
533
+
534
+ .col-md-12 {
535
+ flex-basis: 100%;
536
+ max-width: 100%;
537
+ }
538
+
539
+ .col-md-offset-0 {
540
+ margin-left: 0;
541
+ }
542
+
543
+ .col-md-offset-1 {
544
+ margin-left: 8.33333333%;
545
+ }
546
+
547
+ .col-md-offset-2 {
548
+ margin-left: 16.66666667%;
549
+ }
550
+
551
+ .col-md-offset-3 {
552
+ margin-left: 25%;
553
+ }
554
+
555
+ .col-md-offset-4 {
556
+ margin-left: 33.33333333%;
557
+ }
558
+
559
+ .col-md-offset-5 {
560
+ margin-left: 41.66666667%;
561
+ }
562
+
563
+ .col-md-offset-6 {
564
+ margin-left: 50%;
565
+ }
566
+
567
+ .col-md-offset-7 {
568
+ margin-left: 58.33333333%;
569
+ }
570
+
571
+ .col-md-offset-8 {
572
+ margin-left: 66.66666667%;
573
+ }
574
+
575
+ .col-md-offset-9 {
576
+ margin-left: 75%;
577
+ }
578
+
579
+ .col-md-offset-10 {
580
+ margin-left: 83.33333333%;
581
+ }
582
+
583
+ .col-md-offset-11 {
584
+ margin-left: 91.66666667%;
585
+ }
586
+
587
+ .start-md {
588
+ justify-content: flex-start;
589
+ text-align: start;
590
+ }
591
+
592
+ .center-md {
593
+ justify-content: center;
594
+ text-align: center;
595
+ }
596
+
597
+ .end-md {
598
+ justify-content: flex-end;
599
+ text-align: end;
600
+ }
601
+
602
+ .top-md {
603
+ align-items: flex-start;
604
+ }
605
+
606
+ .middle-md {
607
+ align-items: center;
608
+ }
609
+
610
+ .bottom-md {
611
+ align-items: flex-end;
612
+ }
613
+
614
+ .around-md {
615
+ justify-content: space-around;
616
+ }
617
+
618
+ .between-md {
619
+ justify-content: space-between;
620
+ }
621
+
622
+ .first-md {
623
+ order: -1;
624
+ }
625
+
626
+ .last-md {
627
+ order: 1;
628
+ }
629
+ }
630
+
631
+ @media (--lg-viewport) {
632
+ .container {
633
+ width: var(--container-lg, 71rem);
634
+ }
635
+
636
+ .col-lg,
637
+ .col-lg-1,
638
+ .col-lg-2,
639
+ .col-lg-3,
640
+ .col-lg-4,
641
+ .col-lg-5,
642
+ .col-lg-6,
643
+ .col-lg-7,
644
+ .col-lg-8,
645
+ .col-lg-9,
646
+ .col-lg-10,
647
+ .col-lg-11,
648
+ .col-lg-12,
649
+ .col-lg-offset-0,
650
+ .col-lg-offset-1,
651
+ .col-lg-offset-2,
652
+ .col-lg-offset-3,
653
+ .col-lg-offset-4,
654
+ .col-lg-offset-5,
655
+ .col-lg-offset-6,
656
+ .col-lg-offset-7,
657
+ .col-lg-offset-8,
658
+ .col-lg-offset-9,
659
+ .col-lg-offset-10,
660
+ .col-lg-offset-11,
661
+ .col-lg-offset-12 {
662
+ box-sizing: border-box;
663
+ flex: 0 0 auto;
664
+ padding-right: var(--half-gutter-width, 0.5rem);
665
+ padding-left: var(--half-gutter-width, 0.5rem);
666
+ }
667
+
668
+ .col-lg {
669
+ flex-grow: 1;
670
+ flex-basis: 0;
671
+ max-width: 100%;
672
+ }
673
+
674
+ .col-lg-1 {
675
+ flex-basis: 8.33333333%;
676
+ max-width: 8.33333333%;
677
+ }
678
+
679
+ .col-lg-2 {
680
+ flex-basis: 16.66666667%;
681
+ max-width: 16.66666667%;
682
+ }
683
+
684
+ .col-lg-3 {
685
+ flex-basis: 25%;
686
+ max-width: 25%;
687
+ }
688
+
689
+ .col-lg-4 {
690
+ flex-basis: 33.33333333%;
691
+ max-width: 33.33333333%;
692
+ }
693
+
694
+ .col-lg-5 {
695
+ flex-basis: 41.66666667%;
696
+ max-width: 41.66666667%;
697
+ }
698
+
699
+ .col-lg-6 {
700
+ flex-basis: 50%;
701
+ max-width: 50%;
702
+ }
703
+
704
+ .col-lg-7 {
705
+ flex-basis: 58.33333333%;
706
+ max-width: 58.33333333%;
707
+ }
708
+
709
+ .col-lg-8 {
710
+ flex-basis: 66.66666667%;
711
+ max-width: 66.66666667%;
712
+ }
713
+
714
+ .col-lg-9 {
715
+ flex-basis: 75%;
716
+ max-width: 75%;
717
+ }
718
+
719
+ .col-lg-10 {
720
+ flex-basis: 83.33333333%;
721
+ max-width: 83.33333333%;
722
+ }
723
+
724
+ .col-lg-11 {
725
+ flex-basis: 91.66666667%;
726
+ max-width: 91.66666667%;
727
+ }
728
+
729
+ .col-lg-12 {
730
+ flex-basis: 100%;
731
+ max-width: 100%;
732
+ }
733
+
734
+ .col-lg-offset-0 {
735
+ margin-left: 0;
736
+ }
737
+
738
+ .col-lg-offset-1 {
739
+ margin-left: 8.33333333%;
740
+ }
741
+
742
+ .col-lg-offset-2 {
743
+ margin-left: 16.66666667%;
744
+ }
745
+
746
+ .col-lg-offset-3 {
747
+ margin-left: 25%;
748
+ }
749
+
750
+ .col-lg-offset-4 {
751
+ margin-left: 33.33333333%;
752
+ }
753
+
754
+ .col-lg-offset-5 {
755
+ margin-left: 41.66666667%;
756
+ }
757
+
758
+ .col-lg-offset-6 {
759
+ margin-left: 50%;
760
+ }
761
+
762
+ .col-lg-offset-7 {
763
+ margin-left: 58.33333333%;
764
+ }
765
+
766
+ .col-lg-offset-8 {
767
+ margin-left: 66.66666667%;
768
+ }
769
+
770
+ .col-lg-offset-9 {
771
+ margin-left: 75%;
772
+ }
773
+
774
+ .col-lg-offset-10 {
775
+ margin-left: 83.33333333%;
776
+ }
777
+
778
+ .col-lg-offset-11 {
779
+ margin-left: 91.66666667%;
780
+ }
781
+
782
+ .start-lg {
783
+ justify-content: flex-start;
784
+ text-align: start;
785
+ }
786
+
787
+ .center-lg {
788
+ justify-content: center;
789
+ text-align: center;
790
+ }
791
+
792
+ .end-lg {
793
+ justify-content: flex-end;
794
+ text-align: end;
795
+ }
796
+
797
+ .top-lg {
798
+ align-items: flex-start;
799
+ }
800
+
801
+ .middle-lg {
802
+ align-items: center;
803
+ }
804
+
805
+ .bottom-lg {
806
+ align-items: flex-end;
807
+ }
808
+
809
+ .around-lg {
810
+ justify-content: space-around;
811
+ }
812
+
813
+ .between-lg {
814
+ justify-content: space-between;
815
+ }
816
+
817
+ .first-lg {
818
+ order: -1;
819
+ }
820
+
821
+ .last-lg {
822
+ order: 1;
823
+ }
824
+ }