bootstrap-grid.css 69.1 KB
Newer Older
Mark Otto's avatar
dist    
Mark Otto committed
1
/*!
XhmikosR's avatar
XhmikosR committed
2
 * Bootstrap Grid v5.0.0-alpha3 (https://getbootstrap.com/)
XhmikosR's avatar
XhmikosR committed
3
4
 * Copyright 2011-2020 The Bootstrap Authors
 * Copyright 2011-2020 Twitter, Inc.
XhmikosR's avatar
XhmikosR committed
5
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
Mark Otto's avatar
dist    
Mark Otto committed
6
 */
Mark Otto's avatar
Mark Otto committed
7
8
.container,
.container-fluid,
XhmikosR's avatar
XhmikosR committed
9
.container-xxl,
Mark Otto's avatar
Mark Otto committed
10
.container-xl,
XhmikosR's avatar
XhmikosR committed
11
12
13
.container-lg,
.container-md,
.container-sm {
Mark Otto's avatar
grunt    
Mark Otto committed
14
  width: 100%;
XhmikosR's avatar
XhmikosR committed
15
16
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
Mark Otto's avatar
dist    
Mark Otto committed
17
18
  margin-right: auto;
  margin-left: auto;
19
20
}

21
@media (min-width: 576px) {
XhmikosR's avatar
XhmikosR committed
22
  .container-sm, .container {
23
24
25
26
    max-width: 540px;
  }
}
@media (min-width: 768px) {
XhmikosR's avatar
XhmikosR committed
27
  .container-md, .container-sm, .container {
28
29
30
31
    max-width: 720px;
  }
}
@media (min-width: 992px) {
XhmikosR's avatar
XhmikosR committed
32
  .container-lg, .container-md, .container-sm, .container {
33
34
35
36
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
XhmikosR's avatar
XhmikosR committed
37
  .container-xl, .container-lg, .container-md, .container-sm, .container {
38
39
40
    max-width: 1140px;
  }
}
XhmikosR's avatar
XhmikosR committed
41
@media (min-width: 1400px) {
XhmikosR's avatar
XhmikosR committed
42
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
XhmikosR's avatar
XhmikosR committed
43
44
45
    max-width: 1320px;
  }
}
46
.row {
XhmikosR's avatar
XhmikosR committed
47
48
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
Mark Otto's avatar
grunt    
Mark Otto committed
49
  display: flex;
Mark Otto's avatar
dist    
Mark Otto committed
50
  flex-wrap: wrap;
XhmikosR's avatar
XhmikosR committed
51
52
53
  margin-top: calc(var(--bs-gutter-y) * -1);
  margin-right: calc(var(--bs-gutter-x) / -2);
  margin-left: calc(var(--bs-gutter-x) / -2);
XhmikosR's avatar
XhmikosR committed
54
55
56
57
58
59
}
.row > * {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
XhmikosR's avatar
XhmikosR committed
60
61
62
  padding-right: calc(var(--bs-gutter-x) / 2);
  padding-left: calc(var(--bs-gutter-x) / 2);
  margin-top: var(--bs-gutter-y);
63
64
}

XhmikosR's avatar
XhmikosR committed
65
66
.col {
  flex: 1 0 0%;
Mark Otto's avatar
grunt    
Mark Otto committed
67
68
}

XhmikosR's avatar
XhmikosR committed
69
70
71
.row-cols-auto > * {
  flex: 0 0 auto;
  width: auto;
Mark Otto's avatar
grunt    
Mark Otto committed
72
73
}

XhmikosR's avatar
XhmikosR committed
74
75
76
.row-cols-1 > * {
  flex: 0 0 auto;
  width: 100%;
XhmikosR's avatar
XhmikosR committed
77
78
}

XhmikosR's avatar
XhmikosR committed
79
80
81
.row-cols-2 > * {
  flex: 0 0 auto;
  width: 50%;
XhmikosR's avatar
XhmikosR committed
82
83
}

XhmikosR's avatar
XhmikosR committed
84
85
.row-cols-3 > * {
  flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
86
  width: 33.3333333333%;
XhmikosR's avatar
XhmikosR committed
87
88
}

XhmikosR's avatar
XhmikosR committed
89
90
91
.row-cols-4 > * {
  flex: 0 0 auto;
  width: 25%;
XhmikosR's avatar
XhmikosR committed
92
93
}

XhmikosR's avatar
XhmikosR committed
94
95
96
.row-cols-5 > * {
  flex: 0 0 auto;
  width: 20%;
XhmikosR's avatar
XhmikosR committed
97
98
}

XhmikosR's avatar
XhmikosR committed
99
100
.row-cols-6 > * {
  flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
101
  width: 16.6666666667%;
XhmikosR's avatar
XhmikosR committed
102
103
}

XhmikosR's avatar
XhmikosR committed
104
105
106
.col-auto {
  flex: 0 0 auto;
  width: auto;
XhmikosR's avatar
XhmikosR committed
107
108
}

XhmikosR's avatar
XhmikosR committed
109
110
.col-1 {
  flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
111
  width: 8.3333333333%;
XhmikosR's avatar
XhmikosR committed
112
113
}

XhmikosR's avatar
XhmikosR committed
114
115
.col-2 {
  flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
116
  width: 16.6666666667%;
XhmikosR's avatar
XhmikosR committed
117
118
}

XhmikosR's avatar
XhmikosR committed
119
120
121
.col-3 {
  flex: 0 0 auto;
  width: 25%;
XhmikosR's avatar
XhmikosR committed
122
123
}

XhmikosR's avatar
XhmikosR committed
124
125
.col-4 {
  flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
126
  width: 33.3333333333%;
XhmikosR's avatar
XhmikosR committed
127
128
}

XhmikosR's avatar
XhmikosR committed
129
130
.col-5 {
  flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
131
  width: 41.6666666667%;
XhmikosR's avatar
XhmikosR committed
132
133
}

XhmikosR's avatar
XhmikosR committed
134
135
136
.col-6 {
  flex: 0 0 auto;
  width: 50%;
XhmikosR's avatar
XhmikosR committed
137
138
}

XhmikosR's avatar
XhmikosR committed
139
140
.col-7 {
  flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
141
  width: 58.3333333333%;
XhmikosR's avatar
XhmikosR committed
142
143
}

XhmikosR's avatar
XhmikosR committed
144
145
.col-8 {
  flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
146
  width: 66.6666666667%;
XhmikosR's avatar
XhmikosR committed
147
148
}

XhmikosR's avatar
XhmikosR committed
149
150
151
.col-9 {
  flex: 0 0 auto;
  width: 75%;
XhmikosR's avatar
XhmikosR committed
152
153
}

XhmikosR's avatar
XhmikosR committed
154
155
.col-10 {
  flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
156
  width: 83.3333333333%;
XhmikosR's avatar
XhmikosR committed
157
158
}

XhmikosR's avatar
XhmikosR committed
159
160
.col-11 {
  flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
161
  width: 91.6666666667%;
XhmikosR's avatar
XhmikosR committed
162
163
}

XhmikosR's avatar
XhmikosR committed
164
165
166
167
168
169
.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

.offset-1 {
XhmikosR's avatar
XhmikosR committed
170
  margin-left: 8.3333333333%;
XhmikosR's avatar
XhmikosR committed
171
172
173
}

.offset-2 {
XhmikosR's avatar
XhmikosR committed
174
  margin-left: 16.6666666667%;
XhmikosR's avatar
XhmikosR committed
175
176
177
178
179
180
181
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
XhmikosR's avatar
XhmikosR committed
182
  margin-left: 33.3333333333%;
XhmikosR's avatar
XhmikosR committed
183
184
185
}

.offset-5 {
XhmikosR's avatar
XhmikosR committed
186
  margin-left: 41.6666666667%;
XhmikosR's avatar
XhmikosR committed
187
188
189
190
191
192
193
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
XhmikosR's avatar
XhmikosR committed
194
  margin-left: 58.3333333333%;
XhmikosR's avatar
XhmikosR committed
195
196
197
}

.offset-8 {
XhmikosR's avatar
XhmikosR committed
198
  margin-left: 66.6666666667%;
XhmikosR's avatar
XhmikosR committed
199
200
201
202
}

.offset-9 {
  margin-left: 75%;
XhmikosR's avatar
XhmikosR committed
203
204
}

XhmikosR's avatar
XhmikosR committed
205
.offset-10 {
XhmikosR's avatar
XhmikosR committed
206
  margin-left: 83.3333333333%;
XhmikosR's avatar
XhmikosR committed
207
208
209
}

.offset-11 {
XhmikosR's avatar
XhmikosR committed
210
  margin-left: 91.6666666667%;
XhmikosR's avatar
XhmikosR committed
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
}

.g-0,
.gx-0 {
  --bs-gutter-x: 0;
}

.g-0,
.gy-0 {
  --bs-gutter-y: 0;
}

.g-1,
.gx-1 {
  --bs-gutter-x: 0.25rem;
}

.g-1,
.gy-1 {
  --bs-gutter-y: 0.25rem;
}

.g-2,
.gx-2 {
  --bs-gutter-x: 0.5rem;
}

.g-2,
.gy-2 {
  --bs-gutter-y: 0.5rem;
}

.g-3,
.gx-3 {
  --bs-gutter-x: 1rem;
}

.g-3,
.gy-3 {
  --bs-gutter-y: 1rem;
}

.g-4,
.gx-4 {
  --bs-gutter-x: 1.5rem;
}

.g-4,
.gy-4 {
  --bs-gutter-y: 1.5rem;
XhmikosR's avatar
XhmikosR committed
261
262
263
}

.g-5,
XhmikosR's avatar
XhmikosR committed
264
265
.gx-5 {
  --bs-gutter-x: 3rem;
XhmikosR's avatar
XhmikosR committed
266
267
}

XhmikosR's avatar
XhmikosR committed
268
269
270
.g-5,
.gy-5 {
  --bs-gutter-y: 3rem;
XhmikosR's avatar
XhmikosR committed
271
272
273
}

@media (min-width: 576px) {
XhmikosR's avatar
XhmikosR committed
274
275
  .col-sm {
    flex: 1 0 0%;
XhmikosR's avatar
XhmikosR committed
276
  }
XhmikosR's avatar
XhmikosR committed
277

XhmikosR's avatar
XhmikosR committed
278
279
280
  .row-cols-sm-auto > * {
    flex: 0 0 auto;
    width: auto;
XhmikosR's avatar
XhmikosR committed
281
  }
XhmikosR's avatar
XhmikosR committed
282

XhmikosR's avatar
XhmikosR committed
283
284
285
  .row-cols-sm-1 > * {
    flex: 0 0 auto;
    width: 100%;
XhmikosR's avatar
XhmikosR committed
286
  }
XhmikosR's avatar
XhmikosR committed
287

XhmikosR's avatar
XhmikosR committed
288
289
290
  .row-cols-sm-2 > * {
    flex: 0 0 auto;
    width: 50%;
XhmikosR's avatar
XhmikosR committed
291
  }
XhmikosR's avatar
XhmikosR committed
292

XhmikosR's avatar
XhmikosR committed
293
294
  .row-cols-sm-3 > * {
    flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
295
    width: 33.3333333333%;
XhmikosR's avatar
XhmikosR committed
296
  }
XhmikosR's avatar
XhmikosR committed
297

XhmikosR's avatar
XhmikosR committed
298
299
300
  .row-cols-sm-4 > * {
    flex: 0 0 auto;
    width: 25%;
XhmikosR's avatar
XhmikosR committed
301
  }
XhmikosR's avatar
XhmikosR committed
302

XhmikosR's avatar
XhmikosR committed
303
304
305
  .row-cols-sm-5 > * {
    flex: 0 0 auto;
    width: 20%;
XhmikosR's avatar
XhmikosR committed
306
  }
XhmikosR's avatar
XhmikosR committed
307

XhmikosR's avatar
XhmikosR committed
308
309
  .row-cols-sm-6 > * {
    flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
310
    width: 16.6666666667%;
XhmikosR's avatar
XhmikosR committed
311
  }
XhmikosR's avatar
XhmikosR committed
312

XhmikosR's avatar
XhmikosR committed
313
314
315
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
XhmikosR's avatar
XhmikosR committed
316
  }
XhmikosR's avatar
XhmikosR committed
317

XhmikosR's avatar
XhmikosR committed
318
319
  .col-sm-1 {
    flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
320
    width: 8.3333333333%;
XhmikosR's avatar
XhmikosR committed
321
  }
XhmikosR's avatar
XhmikosR committed
322

XhmikosR's avatar
XhmikosR committed
323
324
  .col-sm-2 {
    flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
325
    width: 16.6666666667%;
XhmikosR's avatar
XhmikosR committed
326
  }
XhmikosR's avatar
XhmikosR committed
327

XhmikosR's avatar
XhmikosR committed
328
329
330
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
XhmikosR's avatar
XhmikosR committed
331
  }
XhmikosR's avatar
XhmikosR committed
332

XhmikosR's avatar
XhmikosR committed
333
334
  .col-sm-4 {
    flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
335
    width: 33.3333333333%;
XhmikosR's avatar
XhmikosR committed
336
  }
XhmikosR's avatar
XhmikosR committed
337

XhmikosR's avatar
XhmikosR committed
338
339
  .col-sm-5 {
    flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
340
    width: 41.6666666667%;
XhmikosR's avatar
XhmikosR committed
341
  }
XhmikosR's avatar
XhmikosR committed
342

XhmikosR's avatar
XhmikosR committed
343
344
345
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
XhmikosR's avatar
XhmikosR committed
346
  }
XhmikosR's avatar
XhmikosR committed
347

XhmikosR's avatar
XhmikosR committed
348
349
  .col-sm-7 {
    flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
350
    width: 58.3333333333%;
XhmikosR's avatar
XhmikosR committed
351
  }
XhmikosR's avatar
XhmikosR committed
352

XhmikosR's avatar
XhmikosR committed
353
354
  .col-sm-8 {
    flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
355
    width: 66.6666666667%;
XhmikosR's avatar
XhmikosR committed
356
  }
XhmikosR's avatar
XhmikosR committed
357

XhmikosR's avatar
XhmikosR committed
358
359
360
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
XhmikosR's avatar
XhmikosR committed
361
  }
XhmikosR's avatar
XhmikosR committed
362

XhmikosR's avatar
XhmikosR committed
363
364
  .col-sm-10 {
    flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
365
    width: 83.3333333333%;
XhmikosR's avatar
XhmikosR committed
366
  }
XhmikosR's avatar
XhmikosR committed
367

XhmikosR's avatar
XhmikosR committed
368
369
  .col-sm-11 {
    flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
370
    width: 91.6666666667%;
XhmikosR's avatar
XhmikosR committed
371
  }
XhmikosR's avatar
XhmikosR committed
372

XhmikosR's avatar
XhmikosR committed
373
374
375
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
XhmikosR's avatar
XhmikosR committed
376
  }
XhmikosR's avatar
XhmikosR committed
377

XhmikosR's avatar
XhmikosR committed
378
  .offset-sm-0 {
XhmikosR's avatar
XhmikosR committed
379
380
    margin-left: 0;
  }
XhmikosR's avatar
XhmikosR committed
381

XhmikosR's avatar
XhmikosR committed
382
  .offset-sm-1 {
XhmikosR's avatar
XhmikosR committed
383
    margin-left: 8.3333333333%;
XhmikosR's avatar
XhmikosR committed
384
  }
XhmikosR's avatar
XhmikosR committed
385

XhmikosR's avatar
XhmikosR committed
386
  .offset-sm-2 {
XhmikosR's avatar
XhmikosR committed
387
    margin-left: 16.6666666667%;
XhmikosR's avatar
XhmikosR committed
388
  }
XhmikosR's avatar
XhmikosR committed
389

XhmikosR's avatar
XhmikosR committed
390
391
  .offset-sm-3 {
    margin-left: 25%;
XhmikosR's avatar
XhmikosR committed
392
  }
XhmikosR's avatar
XhmikosR committed
393

XhmikosR's avatar
XhmikosR committed
394
  .offset-sm-4 {
XhmikosR's avatar
XhmikosR committed
395
    margin-left: 33.3333333333%;
XhmikosR's avatar
XhmikosR committed
396
  }
XhmikosR's avatar
XhmikosR committed
397

XhmikosR's avatar
XhmikosR committed
398
  .offset-sm-5 {
XhmikosR's avatar
XhmikosR committed
399
    margin-left: 41.6666666667%;
XhmikosR's avatar
XhmikosR committed
400
  }
XhmikosR's avatar
XhmikosR committed
401

XhmikosR's avatar
XhmikosR committed
402
403
  .offset-sm-6 {
    margin-left: 50%;
XhmikosR's avatar
XhmikosR committed
404
  }
XhmikosR's avatar
XhmikosR committed
405

XhmikosR's avatar
XhmikosR committed
406
  .offset-sm-7 {
XhmikosR's avatar
XhmikosR committed
407
    margin-left: 58.3333333333%;
XhmikosR's avatar
XhmikosR committed
408
  }
XhmikosR's avatar
XhmikosR committed
409

XhmikosR's avatar
XhmikosR committed
410
  .offset-sm-8 {
XhmikosR's avatar
XhmikosR committed
411
    margin-left: 66.6666666667%;
XhmikosR's avatar
XhmikosR committed
412
  }
XhmikosR's avatar
XhmikosR committed
413

XhmikosR's avatar
XhmikosR committed
414
415
  .offset-sm-9 {
    margin-left: 75%;
XhmikosR's avatar
XhmikosR committed
416
  }
XhmikosR's avatar
XhmikosR committed
417

XhmikosR's avatar
XhmikosR committed
418
  .offset-sm-10 {
XhmikosR's avatar
XhmikosR committed
419
    margin-left: 83.3333333333%;
XhmikosR's avatar
XhmikosR committed
420
  }
XhmikosR's avatar
XhmikosR committed
421

XhmikosR's avatar
XhmikosR committed
422
  .offset-sm-11 {
XhmikosR's avatar
XhmikosR committed
423
    margin-left: 91.6666666667%;
XhmikosR's avatar
XhmikosR committed
424
  }
XhmikosR's avatar
XhmikosR committed
425

XhmikosR's avatar
XhmikosR committed
426
  .g-sm-0,
XhmikosR's avatar
XhmikosR committed
427
.gx-sm-0 {
XhmikosR's avatar
XhmikosR committed
428
    --bs-gutter-x: 0;
XhmikosR's avatar
XhmikosR committed
429
  }
XhmikosR's avatar
XhmikosR committed
430

XhmikosR's avatar
XhmikosR committed
431
  .g-sm-0,
XhmikosR's avatar
XhmikosR committed
432
.gy-sm-0 {
XhmikosR's avatar
XhmikosR committed
433
    --bs-gutter-y: 0;
XhmikosR's avatar
XhmikosR committed
434
  }
XhmikosR's avatar
XhmikosR committed
435

XhmikosR's avatar
XhmikosR committed
436
  .g-sm-1,
XhmikosR's avatar
XhmikosR committed
437
.gx-sm-1 {
XhmikosR's avatar
XhmikosR committed
438
    --bs-gutter-x: 0.25rem;
XhmikosR's avatar
XhmikosR committed
439
  }
XhmikosR's avatar
XhmikosR committed
440

XhmikosR's avatar
XhmikosR committed
441
  .g-sm-1,
XhmikosR's avatar
XhmikosR committed
442
.gy-sm-1 {
XhmikosR's avatar
XhmikosR committed
443
    --bs-gutter-y: 0.25rem;
XhmikosR's avatar
XhmikosR committed
444
  }
XhmikosR's avatar
XhmikosR committed
445

XhmikosR's avatar
XhmikosR committed
446
  .g-sm-2,
XhmikosR's avatar
XhmikosR committed
447
.gx-sm-2 {
XhmikosR's avatar
XhmikosR committed
448
    --bs-gutter-x: 0.5rem;
XhmikosR's avatar
XhmikosR committed
449
  }
XhmikosR's avatar
XhmikosR committed
450

XhmikosR's avatar
XhmikosR committed
451
  .g-sm-2,
XhmikosR's avatar
XhmikosR committed
452
.gy-sm-2 {
XhmikosR's avatar
XhmikosR committed
453
    --bs-gutter-y: 0.5rem;
XhmikosR's avatar
XhmikosR committed
454
  }
XhmikosR's avatar
XhmikosR committed
455

XhmikosR's avatar
XhmikosR committed
456
  .g-sm-3,
XhmikosR's avatar
XhmikosR committed
457
.gx-sm-3 {
XhmikosR's avatar
XhmikosR committed
458
    --bs-gutter-x: 1rem;
XhmikosR's avatar
XhmikosR committed
459
  }
XhmikosR's avatar
XhmikosR committed
460

XhmikosR's avatar
XhmikosR committed
461
  .g-sm-3,
XhmikosR's avatar
XhmikosR committed
462
.gy-sm-3 {
XhmikosR's avatar
XhmikosR committed
463
    --bs-gutter-y: 1rem;
XhmikosR's avatar
XhmikosR committed
464
  }
XhmikosR's avatar
XhmikosR committed
465

XhmikosR's avatar
XhmikosR committed
466
  .g-sm-4,
XhmikosR's avatar
XhmikosR committed
467
.gx-sm-4 {
XhmikosR's avatar
XhmikosR committed
468
    --bs-gutter-x: 1.5rem;
XhmikosR's avatar
XhmikosR committed
469
  }
XhmikosR's avatar
XhmikosR committed
470

XhmikosR's avatar
XhmikosR committed
471
  .g-sm-4,
XhmikosR's avatar
XhmikosR committed
472
.gy-sm-4 {
XhmikosR's avatar
XhmikosR committed
473
    --bs-gutter-y: 1.5rem;
XhmikosR's avatar
XhmikosR committed
474
  }
XhmikosR's avatar
XhmikosR committed
475

XhmikosR's avatar
XhmikosR committed
476
  .g-sm-5,
XhmikosR's avatar
XhmikosR committed
477
.gx-sm-5 {
XhmikosR's avatar
XhmikosR committed
478
    --bs-gutter-x: 3rem;
XhmikosR's avatar
XhmikosR committed
479
  }
XhmikosR's avatar
XhmikosR committed
480

XhmikosR's avatar
XhmikosR committed
481
  .g-sm-5,
XhmikosR's avatar
XhmikosR committed
482
.gy-sm-5 {
XhmikosR's avatar
XhmikosR committed
483
    --bs-gutter-y: 3rem;
XhmikosR's avatar
XhmikosR committed
484
485
  }
}
XhmikosR's avatar
XhmikosR committed
486
487
488
@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0%;
XhmikosR's avatar
XhmikosR committed
489
  }
XhmikosR's avatar
XhmikosR committed
490

XhmikosR's avatar
XhmikosR committed
491
492
493
  .row-cols-md-auto > * {
    flex: 0 0 auto;
    width: auto;
XhmikosR's avatar
XhmikosR committed
494
  }
XhmikosR's avatar
XhmikosR committed
495

XhmikosR's avatar
XhmikosR committed
496
497
498
  .row-cols-md-1 > * {
    flex: 0 0 auto;
    width: 100%;
XhmikosR's avatar
XhmikosR committed
499
  }
XhmikosR's avatar
XhmikosR committed
500

XhmikosR's avatar
XhmikosR committed
501
502
503
  .row-cols-md-2 > * {
    flex: 0 0 auto;
    width: 50%;
XhmikosR's avatar
XhmikosR committed
504
  }
XhmikosR's avatar
XhmikosR committed
505

XhmikosR's avatar
XhmikosR committed
506
507
  .row-cols-md-3 > * {
    flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
508
    width: 33.3333333333%;
XhmikosR's avatar
XhmikosR committed
509
  }
XhmikosR's avatar
XhmikosR committed
510

XhmikosR's avatar
XhmikosR committed
511
512
513
  .row-cols-md-4 > * {
    flex: 0 0 auto;
    width: 25%;
XhmikosR's avatar
XhmikosR committed
514
  }
XhmikosR's avatar
XhmikosR committed
515

XhmikosR's avatar
XhmikosR committed
516
517
518
  .row-cols-md-5 > * {
    flex: 0 0 auto;
    width: 20%;
XhmikosR's avatar
XhmikosR committed
519
  }
XhmikosR's avatar
XhmikosR committed
520

XhmikosR's avatar
XhmikosR committed
521
522
  .row-cols-md-6 > * {
    flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
523
    width: 16.6666666667%;
XhmikosR's avatar
XhmikosR committed
524
  }
XhmikosR's avatar
XhmikosR committed
525

XhmikosR's avatar
XhmikosR committed
526
527
528
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
XhmikosR's avatar
XhmikosR committed
529
  }
XhmikosR's avatar
XhmikosR committed
530

XhmikosR's avatar
XhmikosR committed
531
532
  .col-md-1 {
    flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
533
    width: 8.3333333333%;
XhmikosR's avatar
XhmikosR committed
534
  }
XhmikosR's avatar
XhmikosR committed
535

XhmikosR's avatar
XhmikosR committed
536
537
  .col-md-2 {
    flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
538
    width: 16.6666666667%;
XhmikosR's avatar
XhmikosR committed
539
  }
XhmikosR's avatar
XhmikosR committed
540

XhmikosR's avatar
XhmikosR committed
541
542
543
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
XhmikosR's avatar
XhmikosR committed
544
  }
XhmikosR's avatar
XhmikosR committed
545

XhmikosR's avatar
XhmikosR committed
546
547
  .col-md-4 {
    flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
548
    width: 33.3333333333%;
XhmikosR's avatar
XhmikosR committed
549
  }
XhmikosR's avatar
XhmikosR committed
550

XhmikosR's avatar
XhmikosR committed
551
552
  .col-md-5 {
    flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
553
    width: 41.6666666667%;
XhmikosR's avatar
XhmikosR committed
554
  }
XhmikosR's avatar
XhmikosR committed
555

XhmikosR's avatar
XhmikosR committed
556
557
558
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
XhmikosR's avatar
XhmikosR committed
559
  }
XhmikosR's avatar
XhmikosR committed
560

XhmikosR's avatar
XhmikosR committed
561
562
  .col-md-7 {
    flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
563
    width: 58.3333333333%;
XhmikosR's avatar
XhmikosR committed
564
  }
XhmikosR's avatar
XhmikosR committed
565

XhmikosR's avatar
XhmikosR committed
566
567
  .col-md-8 {
    flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
568
    width: 66.6666666667%;
XhmikosR's avatar
XhmikosR committed
569
  }
XhmikosR's avatar
XhmikosR committed
570

XhmikosR's avatar
XhmikosR committed
571
572
573
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
XhmikosR's avatar
XhmikosR committed
574
  }
XhmikosR's avatar
XhmikosR committed
575

XhmikosR's avatar
XhmikosR committed
576
577
  .col-md-10 {
    flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
578
    width: 83.3333333333%;
XhmikosR's avatar
XhmikosR committed
579
  }
XhmikosR's avatar
XhmikosR committed
580

XhmikosR's avatar
XhmikosR committed
581
582
  .col-md-11 {
    flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
583
    width: 91.6666666667%;
XhmikosR's avatar
XhmikosR committed
584
  }
XhmikosR's avatar
XhmikosR committed
585

XhmikosR's avatar
XhmikosR committed
586
587
588
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
XhmikosR's avatar
XhmikosR committed
589
  }
XhmikosR's avatar
XhmikosR committed
590

XhmikosR's avatar
XhmikosR committed
591
  .offset-md-0 {
XhmikosR's avatar
XhmikosR committed
592
593
    margin-left: 0;
  }
XhmikosR's avatar
XhmikosR committed
594

XhmikosR's avatar
XhmikosR committed
595
  .offset-md-1 {
XhmikosR's avatar
XhmikosR committed
596
    margin-left: 8.3333333333%;
XhmikosR's avatar
XhmikosR committed
597
  }
XhmikosR's avatar
XhmikosR committed
598

XhmikosR's avatar
XhmikosR committed
599
  .offset-md-2 {
XhmikosR's avatar
XhmikosR committed
600
    margin-left: 16.6666666667%;
XhmikosR's avatar
XhmikosR committed
601
  }
XhmikosR's avatar
XhmikosR committed
602

XhmikosR's avatar
XhmikosR committed
603
604
  .offset-md-3 {
    margin-left: 25%;
XhmikosR's avatar
XhmikosR committed
605
  }
XhmikosR's avatar
XhmikosR committed
606

XhmikosR's avatar
XhmikosR committed
607
  .offset-md-4 {
XhmikosR's avatar
XhmikosR committed
608
    margin-left: 33.3333333333%;
XhmikosR's avatar
XhmikosR committed
609
  }
XhmikosR's avatar
XhmikosR committed
610

XhmikosR's avatar
XhmikosR committed
611
  .offset-md-5 {
XhmikosR's avatar
XhmikosR committed
612
    margin-left: 41.6666666667%;
XhmikosR's avatar
XhmikosR committed
613
  }
XhmikosR's avatar
XhmikosR committed
614

XhmikosR's avatar
XhmikosR committed
615
616
  .offset-md-6 {
    margin-left: 50%;
XhmikosR's avatar
XhmikosR committed
617
  }
XhmikosR's avatar
XhmikosR committed
618

XhmikosR's avatar
XhmikosR committed
619
  .offset-md-7 {
XhmikosR's avatar
XhmikosR committed
620
    margin-left: 58.3333333333%;
XhmikosR's avatar
XhmikosR committed
621
  }
XhmikosR's avatar
XhmikosR committed
622

XhmikosR's avatar
XhmikosR committed
623
  .offset-md-8 {
XhmikosR's avatar
XhmikosR committed
624
    margin-left: 66.6666666667%;
XhmikosR's avatar
XhmikosR committed
625
  }
XhmikosR's avatar
XhmikosR committed
626

XhmikosR's avatar
XhmikosR committed
627
628
  .offset-md-9 {
    margin-left: 75%;
XhmikosR's avatar
XhmikosR committed
629
  }
XhmikosR's avatar
XhmikosR committed
630

XhmikosR's avatar
XhmikosR committed
631
  .offset-md-10 {
XhmikosR's avatar
XhmikosR committed
632
    margin-left: 83.3333333333%;
XhmikosR's avatar
XhmikosR committed
633
  }
XhmikosR's avatar
XhmikosR committed
634

XhmikosR's avatar
XhmikosR committed
635
  .offset-md-11 {
XhmikosR's avatar
XhmikosR committed
636
    margin-left: 91.6666666667%;
XhmikosR's avatar
XhmikosR committed
637
  }
XhmikosR's avatar
XhmikosR committed
638

XhmikosR's avatar
XhmikosR committed
639
  .g-md-0,
XhmikosR's avatar
XhmikosR committed
640
.gx-md-0 {
XhmikosR's avatar
XhmikosR committed
641
    --bs-gutter-x: 0;
XhmikosR's avatar
XhmikosR committed
642
  }
XhmikosR's avatar
XhmikosR committed
643

XhmikosR's avatar
XhmikosR committed
644
  .g-md-0,
XhmikosR's avatar
XhmikosR committed
645
.gy-md-0 {
XhmikosR's avatar
XhmikosR committed
646
    --bs-gutter-y: 0;
XhmikosR's avatar
XhmikosR committed
647
  }
XhmikosR's avatar
XhmikosR committed
648

XhmikosR's avatar
XhmikosR committed
649
  .g-md-1,
XhmikosR's avatar
XhmikosR committed
650
.gx-md-1 {
XhmikosR's avatar
XhmikosR committed
651
    --bs-gutter-x: 0.25rem;
XhmikosR's avatar
XhmikosR committed
652
  }
XhmikosR's avatar
XhmikosR committed
653

XhmikosR's avatar
XhmikosR committed
654
  .g-md-1,
XhmikosR's avatar
XhmikosR committed
655
.gy-md-1 {
XhmikosR's avatar
XhmikosR committed
656
    --bs-gutter-y: 0.25rem;
XhmikosR's avatar
XhmikosR committed
657
  }
XhmikosR's avatar
XhmikosR committed
658

XhmikosR's avatar
XhmikosR committed
659
  .g-md-2,
XhmikosR's avatar
XhmikosR committed
660
.gx-md-2 {
XhmikosR's avatar
XhmikosR committed
661
    --bs-gutter-x: 0.5rem;
XhmikosR's avatar
XhmikosR committed
662
  }
XhmikosR's avatar
XhmikosR committed
663

XhmikosR's avatar
XhmikosR committed
664
  .g-md-2,
XhmikosR's avatar
XhmikosR committed
665
.gy-md-2 {
XhmikosR's avatar
XhmikosR committed
666
    --bs-gutter-y: 0.5rem;
XhmikosR's avatar
XhmikosR committed
667
  }
XhmikosR's avatar
XhmikosR committed
668

XhmikosR's avatar
XhmikosR committed
669
  .g-md-3,
XhmikosR's avatar
XhmikosR committed
670
.gx-md-3 {
XhmikosR's avatar
XhmikosR committed
671
    --bs-gutter-x: 1rem;
XhmikosR's avatar
XhmikosR committed
672
  }
XhmikosR's avatar
XhmikosR committed
673

XhmikosR's avatar
XhmikosR committed
674
  .g-md-3,
XhmikosR's avatar
XhmikosR committed
675
.gy-md-3 {
XhmikosR's avatar
XhmikosR committed
676
    --bs-gutter-y: 1rem;
XhmikosR's avatar
XhmikosR committed
677
  }
XhmikosR's avatar
XhmikosR committed
678

XhmikosR's avatar
XhmikosR committed
679
  .g-md-4,
XhmikosR's avatar
XhmikosR committed
680
.gx-md-4 {
XhmikosR's avatar
XhmikosR committed
681
    --bs-gutter-x: 1.5rem;
XhmikosR's avatar
XhmikosR committed
682
  }
XhmikosR's avatar
XhmikosR committed
683

XhmikosR's avatar
XhmikosR committed
684
  .g-md-4,
XhmikosR's avatar
XhmikosR committed
685
.gy-md-4 {
XhmikosR's avatar
XhmikosR committed
686
    --bs-gutter-y: 1.5rem;
XhmikosR's avatar
XhmikosR committed
687
  }
XhmikosR's avatar
XhmikosR committed
688

XhmikosR's avatar
XhmikosR committed
689
  .g-md-5,
XhmikosR's avatar
XhmikosR committed
690
.gx-md-5 {
XhmikosR's avatar
XhmikosR committed
691
    --bs-gutter-x: 3rem;
XhmikosR's avatar
XhmikosR committed
692
  }
XhmikosR's avatar
XhmikosR committed
693

XhmikosR's avatar
XhmikosR committed
694
  .g-md-5,
XhmikosR's avatar
XhmikosR committed
695
.gy-md-5 {
XhmikosR's avatar
XhmikosR committed
696
    --bs-gutter-y: 3rem;
XhmikosR's avatar
XhmikosR committed
697
  }
698
}
XhmikosR's avatar
XhmikosR committed
699
700
@media (min-width: 992px) {
  .col-lg {
XhmikosR's avatar
XhmikosR committed
701
702
    flex: 1 0 0%;
  }
XhmikosR's avatar
XhmikosR committed
703

XhmikosR's avatar
XhmikosR committed
704
  .row-cols-lg-auto > * {
XhmikosR's avatar
XhmikosR committed
705
706
    flex: 0 0 auto;
    width: auto;
Mark Otto's avatar
grunt    
Mark Otto committed
707
  }
XhmikosR's avatar
XhmikosR committed
708

XhmikosR's avatar
XhmikosR committed
709
  .row-cols-lg-1 > * {
XhmikosR's avatar
XhmikosR committed
710
711
    flex: 0 0 auto;
    width: 100%;
XhmikosR's avatar
XhmikosR committed
712
  }
XhmikosR's avatar
XhmikosR committed
713

XhmikosR's avatar
XhmikosR committed
714
  .row-cols-lg-2 > * {
XhmikosR's avatar
XhmikosR committed
715
716
    flex: 0 0 auto;
    width: 50%;
XhmikosR's avatar
XhmikosR committed
717
  }
XhmikosR's avatar
XhmikosR committed
718

XhmikosR's avatar
XhmikosR committed
719
  .row-cols-lg-3 > * {
XhmikosR's avatar
XhmikosR committed
720
    flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
721
    width: 33.3333333333%;
XhmikosR's avatar
XhmikosR committed
722
  }
XhmikosR's avatar
XhmikosR committed
723

XhmikosR's avatar
XhmikosR committed
724
  .row-cols-lg-4 > * {
XhmikosR's avatar
XhmikosR committed
725
726
    flex: 0 0 auto;
    width: 25%;
XhmikosR's avatar
XhmikosR committed
727
  }
XhmikosR's avatar
XhmikosR committed
728

XhmikosR's avatar
XhmikosR committed
729
  .row-cols-lg-5 > * {
XhmikosR's avatar
XhmikosR committed
730
731
    flex: 0 0 auto;
    width: 20%;
XhmikosR's avatar
XhmikosR committed
732
  }
XhmikosR's avatar
XhmikosR committed
733

XhmikosR's avatar
XhmikosR committed
734
  .row-cols-lg-6 > * {
XhmikosR's avatar
XhmikosR committed
735
    flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
736
    width: 16.6666666667%;
XhmikosR's avatar
XhmikosR committed
737
  }
XhmikosR's avatar
XhmikosR committed
738

XhmikosR's avatar
XhmikosR committed
739
  .col-lg-auto {
Mark Otto's avatar
dist    
Mark Otto committed
740
    flex: 0 0 auto;
Mark Otto's avatar
grunt    
Mark Otto committed
741
742
    width: auto;
  }
XhmikosR's avatar
XhmikosR committed
743

XhmikosR's avatar
XhmikosR committed
744
  .col-lg-1 {
XhmikosR's avatar
XhmikosR committed
745
    flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
746
    width: 8.3333333333%;
747
  }
XhmikosR's avatar
XhmikosR committed
748

XhmikosR's avatar
XhmikosR committed
749
  .col-lg-2 {
XhmikosR's avatar
XhmikosR committed
750
    flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
751
    width: 16.6666666667%;
752
  }
XhmikosR's avatar
XhmikosR committed
753

XhmikosR's avatar
XhmikosR committed
754
  .col-lg-3 {
XhmikosR's avatar
XhmikosR committed
755
756
    flex: 0 0 auto;
    width: 25%;
757
  }
XhmikosR's avatar
XhmikosR committed
758

XhmikosR's avatar
XhmikosR committed
759
  .col-lg-4 {
XhmikosR's avatar
XhmikosR committed
760
    flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
761
    width: 33.3333333333%;
762
  }
XhmikosR's avatar
XhmikosR committed
763

XhmikosR's avatar
XhmikosR committed
764
  .col-lg-5 {
XhmikosR's avatar
XhmikosR committed
765
    flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
766
    width: 41.6666666667%;
767
  }
XhmikosR's avatar
XhmikosR committed
768

XhmikosR's avatar
XhmikosR committed
769
  .col-lg-6 {
XhmikosR's avatar
XhmikosR committed
770
771
    flex: 0 0 auto;
    width: 50%;
772
  }
XhmikosR's avatar
XhmikosR committed
773

XhmikosR's avatar
XhmikosR committed
774
  .col-lg-7 {
XhmikosR's avatar
XhmikosR committed
775
    flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
776
    width: 58.3333333333%;
777
  }
XhmikosR's avatar
XhmikosR committed
778

XhmikosR's avatar
XhmikosR committed
779
  .col-lg-8 {
XhmikosR's avatar
XhmikosR committed
780
    flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
781
    width: 66.6666666667%;
782
  }
XhmikosR's avatar
XhmikosR committed
783

XhmikosR's avatar
XhmikosR committed
784
  .col-lg-9 {
XhmikosR's avatar
XhmikosR committed
785
786
    flex: 0 0 auto;
    width: 75%;
787
  }
XhmikosR's avatar
XhmikosR committed
788

XhmikosR's avatar
XhmikosR committed
789
  .col-lg-10 {
XhmikosR's avatar
XhmikosR committed
790
    flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
791
    width: 83.3333333333%;
792
  }
XhmikosR's avatar
XhmikosR committed
793

XhmikosR's avatar
XhmikosR committed
794
  .col-lg-11 {
XhmikosR's avatar
XhmikosR committed
795
    flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
796
    width: 91.6666666667%;
797
  }
XhmikosR's avatar
XhmikosR committed
798

XhmikosR's avatar
XhmikosR committed
799
  .col-lg-12 {
XhmikosR's avatar
XhmikosR committed
800
801
    flex: 0 0 auto;
    width: 100%;
802
  }
XhmikosR's avatar
XhmikosR committed
803

XhmikosR's avatar
XhmikosR committed
804
  .offset-lg-0 {
Mark Otto's avatar
dist    
Mark Otto committed
805
    margin-left: 0;
Mark Otto's avatar
dist    
Mark Otto committed
806
  }
XhmikosR's avatar
XhmikosR committed
807

XhmikosR's avatar
XhmikosR committed
808
  .offset-lg-1 {
XhmikosR's avatar
XhmikosR committed
809
    margin-left: 8.3333333333%;
Mark Otto's avatar
dist    
Mark Otto committed
810
  }
XhmikosR's avatar
XhmikosR committed
811

XhmikosR's avatar
XhmikosR committed
812
  .offset-lg-2 {
XhmikosR's avatar
XhmikosR committed
813
    margin-left: 16.6666666667%;
Mark Otto's avatar
dist    
Mark Otto committed
814
  }
XhmikosR's avatar
XhmikosR committed
815

XhmikosR's avatar
XhmikosR committed
816
  .offset-lg-3 {
Mark Otto's avatar
dist    
Mark Otto committed
817
818
    margin-left: 25%;
  }
XhmikosR's avatar
XhmikosR committed
819

XhmikosR's avatar
XhmikosR committed
820
  .offset-lg-4 {
XhmikosR's avatar
XhmikosR committed
821
    margin-left: 33.3333333333%;
Mark Otto's avatar
dist    
Mark Otto committed
822
  }
XhmikosR's avatar
XhmikosR committed
823

XhmikosR's avatar
XhmikosR committed
824
  .offset-lg-5 {
XhmikosR's avatar
XhmikosR committed
825
    margin-left: 41.6666666667%;
Mark Otto's avatar
dist    
Mark Otto committed
826
  }
XhmikosR's avatar
XhmikosR committed
827

XhmikosR's avatar
XhmikosR committed
828
  .offset-lg-6 {
Mark Otto's avatar
dist    
Mark Otto committed
829
830
    margin-left: 50%;
  }
XhmikosR's avatar
XhmikosR committed
831

XhmikosR's avatar
XhmikosR committed
832
  .offset-lg-7 {
XhmikosR's avatar
XhmikosR committed
833
    margin-left: 58.3333333333%;
Mark Otto's avatar
dist    
Mark Otto committed
834
  }
XhmikosR's avatar
XhmikosR committed
835

XhmikosR's avatar
XhmikosR committed
836
  .offset-lg-8 {
XhmikosR's avatar
XhmikosR committed
837
    margin-left: 66.6666666667%;
Mark Otto's avatar
dist    
Mark Otto committed
838
  }
XhmikosR's avatar
XhmikosR committed
839

XhmikosR's avatar
XhmikosR committed
840
  .offset-lg-9 {
Mark Otto's avatar
dist    
Mark Otto committed
841
842
    margin-left: 75%;
  }
XhmikosR's avatar
XhmikosR committed
843

XhmikosR's avatar
XhmikosR committed
844
  .offset-lg-10 {
XhmikosR's avatar
XhmikosR committed
845
    margin-left: 83.3333333333%;
Mark Otto's avatar
dist    
Mark Otto committed
846
  }
XhmikosR's avatar
XhmikosR committed
847

XhmikosR's avatar
XhmikosR committed
848
  .offset-lg-11 {
XhmikosR's avatar
XhmikosR committed
849
    margin-left: 91.6666666667%;
Mark Otto's avatar
dist    
Mark Otto committed
850
  }
XhmikosR's avatar
XhmikosR committed
851

XhmikosR's avatar
XhmikosR committed
852
  .g-lg-0,
XhmikosR's avatar
XhmikosR committed
853
.gx-lg-0 {
XhmikosR's avatar
XhmikosR committed
854
    --bs-gutter-x: 0;
XhmikosR's avatar
XhmikosR committed
855
  }
XhmikosR's avatar
XhmikosR committed
856

XhmikosR's avatar
XhmikosR committed
857
  .g-lg-0,
XhmikosR's avatar
XhmikosR committed
858
.gy-lg-0 {
XhmikosR's avatar
XhmikosR committed
859
    --bs-gutter-y: 0;
Mark Otto's avatar
grunt    
Mark Otto committed
860
  }
XhmikosR's avatar
XhmikosR committed
861

XhmikosR's avatar
XhmikosR committed
862
  .g-lg-1,
XhmikosR's avatar
XhmikosR committed
863
.gx-lg-1 {
XhmikosR's avatar
XhmikosR committed
864
    --bs-gutter-x: 0.25rem;
XhmikosR's avatar
XhmikosR committed
865
  }
XhmikosR's avatar
XhmikosR committed
866

XhmikosR's avatar
XhmikosR committed
867
  .g-lg-1,
XhmikosR's avatar
XhmikosR committed
868
.gy-lg-1 {
XhmikosR's avatar
XhmikosR committed
869
    --bs-gutter-y: 0.25rem;
XhmikosR's avatar
XhmikosR committed
870
  }
XhmikosR's avatar
XhmikosR committed
871

XhmikosR's avatar
XhmikosR committed
872
  .g-lg-2,
XhmikosR's avatar
XhmikosR committed
873
.gx-lg-2 {
XhmikosR's avatar
XhmikosR committed
874
    --bs-gutter-x: 0.5rem;
XhmikosR's avatar
XhmikosR committed
875
  }
XhmikosR's avatar
XhmikosR committed
876

XhmikosR's avatar
XhmikosR committed
877
  .g-lg-2,
XhmikosR's avatar
XhmikosR committed
878
.gy-lg-2 {
XhmikosR's avatar
XhmikosR committed
879
    --bs-gutter-y: 0.5rem;
XhmikosR's avatar
XhmikosR committed
880
  }
XhmikosR's avatar
XhmikosR committed
881

XhmikosR's avatar
XhmikosR committed
882
  .g-lg-3,
XhmikosR's avatar
XhmikosR committed
883
.gx-lg-3 {
XhmikosR's avatar
XhmikosR committed
884
    --bs-gutter-x: 1rem;
XhmikosR's avatar
XhmikosR committed
885
  }
XhmikosR's avatar
XhmikosR committed
886

XhmikosR's avatar
XhmikosR committed
887
  .g-lg-3,
XhmikosR's avatar
XhmikosR committed
888
.gy-lg-3 {
XhmikosR's avatar
XhmikosR committed
889
    --bs-gutter-y: 1rem;
Mark Otto's avatar
dist    
Mark Otto committed
890
  }
XhmikosR's avatar
XhmikosR committed
891

XhmikosR's avatar
XhmikosR committed
892
  .g-lg-4,
XhmikosR's avatar
XhmikosR committed
893
.gx-lg-4 {
XhmikosR's avatar
XhmikosR committed
894
    --bs-gutter-x: 1.5rem;
Mark Otto's avatar
dist    
Mark Otto committed
895
  }
XhmikosR's avatar
XhmikosR committed
896

XhmikosR's avatar
XhmikosR committed
897
  .g-lg-4,
XhmikosR's avatar
XhmikosR committed
898
.gy-lg-4 {
XhmikosR's avatar
XhmikosR committed
899
    --bs-gutter-y: 1.5rem;
Mark Otto's avatar
dist    
Mark Otto committed
900
  }
XhmikosR's avatar
XhmikosR committed
901

XhmikosR's avatar
XhmikosR committed
902
  .g-lg-5,
XhmikosR's avatar
XhmikosR committed
903
.gx-lg-5 {
XhmikosR's avatar
XhmikosR committed
904
    --bs-gutter-x: 3rem;
Mark Otto's avatar
dist    
Mark Otto committed
905
  }
XhmikosR's avatar
XhmikosR committed
906

XhmikosR's avatar
XhmikosR committed
907
  .g-lg-5,
XhmikosR's avatar
XhmikosR committed
908
.gy-lg-5 {
XhmikosR's avatar
XhmikosR committed
909
    --bs-gutter-y: 3rem;
Mark Otto's avatar
dist    
Mark Otto committed
910
  }
911
}
XhmikosR's avatar
XhmikosR committed
912
913
@media (min-width: 1200px) {
  .col-xl {
XhmikosR's avatar
XhmikosR committed
914
915
    flex: 1 0 0%;
  }
XhmikosR's avatar
XhmikosR committed
916

XhmikosR's avatar
XhmikosR committed
917
  .row-cols-xl-auto > * {
XhmikosR's avatar
XhmikosR committed
918
919
    flex: 0 0 auto;
    width: auto;
Mark Otto's avatar
grunt    
Mark Otto committed
920
  }
XhmikosR's avatar
XhmikosR committed
921

XhmikosR's avatar
XhmikosR committed
922
  .row-cols-xl-1 > * {
XhmikosR's avatar
XhmikosR committed
923
924
    flex: 0 0 auto;
    width: 100%;
XhmikosR's avatar
XhmikosR committed
925
  }
XhmikosR's avatar
XhmikosR committed
926

XhmikosR's avatar
XhmikosR committed
927
  .row-cols-xl-2 > * {
XhmikosR's avatar
XhmikosR committed
928
929
    flex: 0 0 auto;
    width: 50%;
XhmikosR's avatar
XhmikosR committed
930
  }
XhmikosR's avatar
XhmikosR committed
931

XhmikosR's avatar
XhmikosR committed
932
  .row-cols-xl-3 > * {
XhmikosR's avatar
XhmikosR committed
933
    flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
934
    width: 33.3333333333%;
XhmikosR's avatar
XhmikosR committed
935
  }
XhmikosR's avatar
XhmikosR committed
936

XhmikosR's avatar
XhmikosR committed
937
  .row-cols-xl-4 > * {
XhmikosR's avatar
XhmikosR committed
938
939
    flex: 0 0 auto;
    width: 25%;
XhmikosR's avatar
XhmikosR committed
940
  }
XhmikosR's avatar
XhmikosR committed
941

XhmikosR's avatar
XhmikosR committed
942
  .row-cols-xl-5 > * {
XhmikosR's avatar
XhmikosR committed
943
944
    flex: 0 0 auto;
    width: 20%;
XhmikosR's avatar
XhmikosR committed
945
  }
XhmikosR's avatar
XhmikosR committed
946

XhmikosR's avatar
XhmikosR committed
947
  .row-cols-xl-6 > * {
XhmikosR's avatar
XhmikosR committed
948
    flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
949
    width: 16.6666666667%;
XhmikosR's avatar
XhmikosR committed
950
  }
XhmikosR's avatar
XhmikosR committed
951

XhmikosR's avatar
XhmikosR committed
952
  .col-xl-auto {
Mark Otto's avatar
dist    
Mark Otto committed
953
    flex: 0 0 auto;
Mark Otto's avatar
grunt    
Mark Otto committed
954
955
    width: auto;
  }
XhmikosR's avatar
XhmikosR committed
956

XhmikosR's avatar
XhmikosR committed
957
  .col-xl-1 {
XhmikosR's avatar
XhmikosR committed
958
    flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
959
    width: 8.3333333333%;
960
  }
XhmikosR's avatar
XhmikosR committed
961

XhmikosR's avatar
XhmikosR committed
962
  .col-xl-2 {
XhmikosR's avatar
XhmikosR committed
963
    flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
964
    width: 16.6666666667%;
965
  }
XhmikosR's avatar
XhmikosR committed
966

XhmikosR's avatar
XhmikosR committed
967
  .col-xl-3 {
XhmikosR's avatar
XhmikosR committed
968
969
    flex: 0 0 auto;
    width: 25%;
970
  }
XhmikosR's avatar
XhmikosR committed
971

XhmikosR's avatar
XhmikosR committed
972
  .col-xl-4 {
XhmikosR's avatar
XhmikosR committed
973
    flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
974
    width: 33.3333333333%;
975
  }
XhmikosR's avatar
XhmikosR committed
976

XhmikosR's avatar
XhmikosR committed
977
  .col-xl-5 {
XhmikosR's avatar
XhmikosR committed
978
    flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
979
    width: 41.6666666667%;
980
  }
XhmikosR's avatar
XhmikosR committed
981

XhmikosR's avatar
XhmikosR committed
982
  .col-xl-6 {
XhmikosR's avatar
XhmikosR committed
983
984
    flex: 0 0 auto;
    width: 50%;
985
  }
XhmikosR's avatar
XhmikosR committed
986

XhmikosR's avatar
XhmikosR committed
987
  .col-xl-7 {
XhmikosR's avatar
XhmikosR committed
988
    flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
989
    width: 58.3333333333%;
990
  }
XhmikosR's avatar
XhmikosR committed
991

XhmikosR's avatar
XhmikosR committed
992
  .col-xl-8 {
XhmikosR's avatar
XhmikosR committed
993
    flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
994
    width: 66.6666666667%;
995
  }
XhmikosR's avatar
XhmikosR committed
996

XhmikosR's avatar
XhmikosR committed
997
  .col-xl-9 {
XhmikosR's avatar
XhmikosR committed
998
999
    flex: 0 0 auto;
    width: 75%;
1000
  }
For faster browsing, not all history is shown. View entire blame