mere-blog-theme 0.4 → 0.5
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.
- checksums.yaml +4 -4
- data/README.md +4 -0
- data/node_modules/.package-lock.json +13 -0
- data/node_modules/bulma/CHANGELOG.md +514 -434
- data/node_modules/bulma/README.md +6 -3
- data/node_modules/bulma/bulma.sass +1 -1
- data/node_modules/bulma/css/bulma-rtl.css +621 -247
- data/node_modules/bulma/css/bulma-rtl.css.map +1 -1
- data/node_modules/bulma/css/bulma-rtl.min.css +1 -1
- data/node_modules/bulma/css/bulma.css +464 -90
- data/node_modules/bulma/css/bulma.css.map +1 -1
- data/node_modules/bulma/css/bulma.min.css +1 -1
- data/node_modules/bulma/package.json +28 -54
- data/node_modules/bulma/sass/base/_all.sass +4 -2
- data/node_modules/bulma/sass/base/animations.sass +5 -0
- data/node_modules/bulma/sass/base/generic.sass +3 -0
- data/node_modules/bulma/sass/components/_all.sass +13 -12
- data/node_modules/bulma/sass/components/breadcrumb.sass +2 -0
- data/node_modules/bulma/sass/components/card.sass +23 -0
- data/node_modules/bulma/sass/components/dropdown.sass +2 -0
- data/node_modules/bulma/sass/components/level.sass +2 -0
- data/node_modules/bulma/sass/components/media.sass +16 -9
- data/node_modules/bulma/sass/components/menu.sass +2 -0
- data/node_modules/bulma/sass/components/message.sass +2 -0
- data/node_modules/bulma/sass/components/modal.sass +5 -1
- data/node_modules/bulma/sass/components/navbar.sass +5 -1
- data/node_modules/bulma/sass/components/pagination.sass +11 -3
- data/node_modules/bulma/sass/components/panel.sass +2 -0
- data/node_modules/bulma/sass/components/tabs.sass +2 -0
- data/node_modules/bulma/sass/elements/_all.sass +13 -12
- data/node_modules/bulma/sass/elements/box.sass +2 -0
- data/node_modules/bulma/sass/elements/button.sass +24 -2
- data/node_modules/bulma/sass/elements/container.sass +12 -7
- data/node_modules/bulma/sass/elements/content.sass +2 -0
- data/node_modules/bulma/sass/elements/icon.sass +19 -0
- data/node_modules/bulma/sass/elements/image.sass +2 -0
- data/node_modules/bulma/sass/elements/notification.sass +5 -1
- data/node_modules/bulma/sass/elements/other.sass +2 -0
- data/node_modules/bulma/sass/elements/progress.sass +7 -1
- data/node_modules/bulma/sass/elements/table.sass +5 -1
- data/node_modules/bulma/sass/elements/tag.sass +5 -1
- data/node_modules/bulma/sass/elements/title.sass +2 -0
- data/node_modules/bulma/sass/form/_all.sass +7 -6
- data/node_modules/bulma/sass/form/checkbox-radio.sass +2 -1
- data/node_modules/bulma/sass/form/file.sass +3 -1
- data/node_modules/bulma/sass/form/input-textarea.sass +3 -1
- data/node_modules/bulma/sass/form/select.sass +3 -1
- data/node_modules/bulma/sass/form/shared.sass +5 -0
- data/node_modules/bulma/sass/form/tools.sass +3 -1
- data/node_modules/bulma/sass/grid/_all.sass +3 -2
- data/node_modules/bulma/sass/grid/columns.sass +86 -77
- data/node_modules/bulma/sass/grid/tiles.sass +2 -0
- data/node_modules/bulma/sass/helpers/_all.sass +10 -8
- data/node_modules/bulma/sass/helpers/color.sass +2 -0
- data/node_modules/bulma/sass/helpers/flexbox.sass +35 -0
- data/node_modules/bulma/sass/helpers/float.sass +2 -0
- data/node_modules/bulma/sass/helpers/other.sass +6 -0
- data/node_modules/bulma/sass/helpers/position.sass +2 -0
- data/node_modules/bulma/sass/helpers/spacing.sass +3 -0
- data/node_modules/bulma/sass/helpers/typography.sass +2 -0
- data/node_modules/bulma/sass/helpers/visibility.sass +1 -1
- data/node_modules/bulma/sass/layout/_all.sass +4 -3
- data/node_modules/bulma/sass/layout/footer.sass +2 -0
- data/node_modules/bulma/sass/layout/hero.sass +5 -1
- data/node_modules/bulma/sass/layout/section.sass +2 -0
- data/node_modules/bulma/sass/utilities/_all.sass +7 -6
- data/node_modules/bulma/sass/utilities/animations.sass +1 -5
- data/node_modules/bulma/sass/utilities/controls.sass +2 -3
- data/node_modules/bulma/sass/utilities/derived-variables.sass +110 -0
- data/node_modules/bulma/sass/utilities/extends.sass +22 -0
- data/node_modules/bulma/sass/utilities/mixins.sass +2 -19
- data/package-lock.json +19 -4
- metadata +18 -28
- data/node_modules/bulma/sass/utilities/derived-variables.scss +0 -132
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Bulma is a **modern CSS framework** based on [Flexbox](https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Flexible_Box_Layout/Using_CSS_flexible_boxes).
|
|
4
4
|
|
|
5
|
+

|
|
5
6
|
[][npm-link]
|
|
6
7
|
[][npm-link]
|
|
7
8
|
[](https://www.jsdelivr.com/package/npm/bulma)
|
|
@@ -39,7 +40,7 @@ bower install bulma
|
|
|
39
40
|
After installation, you can import the CSS file into your project using this snippet:
|
|
40
41
|
|
|
41
42
|
```sh
|
|
42
|
-
import 'bulma/css/bulma.css'
|
|
43
|
+
@import 'bulma/css/bulma.css'
|
|
43
44
|
```
|
|
44
45
|
|
|
45
46
|
### CDN
|
|
@@ -120,10 +121,12 @@ Browse the [online documentation here.](https://bulma.io/documentation/overview/
|
|
|
120
121
|
| [Bulmil](https://github.com/gomah/bulmil) | An agnostic UI components library based on Web Components, made with Bulma & Stencil. |
|
|
121
122
|
| [Svelte Bulma Components](https://github.com/elcobvg/svelte-bulma-components) | Library of UI components to be used in [Svelte.js](https://svelte.technology/) or standalone. |
|
|
122
123
|
| [Bulma Nunjucks Starterkit](https://github.com/benninkcorien/nunjucks-starter-kit) | Starterkit for Nunjucks with Bulma. |
|
|
124
|
+
| [Bulma-Social](https://github.com/aldi/bulma-social) | Social Buttons and Colors for Bulma |
|
|
125
|
+
| [Divjoy](https://divjoy.com/?kit=bulma) | React codebase generator with Bulma templates |
|
|
123
126
|
|
|
124
|
-
## Copyright and license
|
|
127
|
+
## Copyright and license 
|
|
125
128
|
|
|
126
|
-
Code copyright
|
|
129
|
+
Code copyright 2021 Jeremy Thomas. Code released under [the MIT license](https://github.com/jgthms/bulma/blob/master/LICENSE).
|
|
127
130
|
|
|
128
131
|
[npm-link]: https://www.npmjs.com/package/bulma
|
|
129
132
|
[awesome-link]: https://github.com/awesome-css-group/awesome-css
|
|
@@ -1,22 +1,69 @@
|
|
|
1
|
-
/*! bulma.io v0.9.
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
1
|
+
/*! bulma.io v0.9.2 | MIT License | github.com/jgthms/bulma */
|
|
2
|
+
/* Bulma Utilities */
|
|
3
|
+
.button, .input, .textarea, .select select, .file-cta,
|
|
4
|
+
.file-name, .pagination-previous,
|
|
5
|
+
.pagination-next,
|
|
6
|
+
.pagination-link,
|
|
7
|
+
.pagination-ellipsis {
|
|
8
|
+
-moz-appearance: none;
|
|
9
|
+
-webkit-appearance: none;
|
|
10
|
+
align-items: center;
|
|
11
|
+
border: 1px solid transparent;
|
|
12
|
+
border-radius: 4px;
|
|
13
|
+
box-shadow: none;
|
|
14
|
+
display: inline-flex;
|
|
15
|
+
font-size: 1rem;
|
|
16
|
+
height: 2.5em;
|
|
17
|
+
justify-content: flex-start;
|
|
18
|
+
line-height: 1.5;
|
|
19
|
+
padding-bottom: calc(0.5em - 1px);
|
|
20
|
+
padding-left: calc(0.75em - 1px);
|
|
21
|
+
padding-right: calc(0.75em - 1px);
|
|
22
|
+
padding-top: calc(0.5em - 1px);
|
|
23
|
+
position: relative;
|
|
24
|
+
vertical-align: top;
|
|
9
25
|
}
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
26
|
+
|
|
27
|
+
.button:focus, .input:focus, .textarea:focus, .select select:focus, .file-cta:focus,
|
|
28
|
+
.file-name:focus, .pagination-previous:focus,
|
|
29
|
+
.pagination-next:focus,
|
|
30
|
+
.pagination-link:focus,
|
|
31
|
+
.pagination-ellipsis:focus, .is-focused.button, .is-focused.input, .is-focused.textarea, .select select.is-focused, .is-focused.file-cta,
|
|
32
|
+
.is-focused.file-name, .is-focused.pagination-previous,
|
|
33
|
+
.is-focused.pagination-next,
|
|
34
|
+
.is-focused.pagination-link,
|
|
35
|
+
.is-focused.pagination-ellipsis, .button:active, .input:active, .textarea:active, .select select:active, .file-cta:active,
|
|
36
|
+
.file-name:active, .pagination-previous:active,
|
|
37
|
+
.pagination-next:active,
|
|
38
|
+
.pagination-link:active,
|
|
39
|
+
.pagination-ellipsis:active, .is-active.button, .is-active.input, .is-active.textarea, .select select.is-active, .is-active.file-cta,
|
|
40
|
+
.is-active.file-name, .is-active.pagination-previous,
|
|
41
|
+
.is-active.pagination-next,
|
|
42
|
+
.is-active.pagination-link,
|
|
43
|
+
.is-active.pagination-ellipsis {
|
|
44
|
+
outline: none;
|
|
17
45
|
}
|
|
18
46
|
|
|
19
|
-
.
|
|
47
|
+
.button[disabled], .input[disabled], .textarea[disabled], .select select[disabled], .file-cta[disabled],
|
|
48
|
+
.file-name[disabled], .pagination-previous[disabled],
|
|
49
|
+
.pagination-next[disabled],
|
|
50
|
+
.pagination-link[disabled],
|
|
51
|
+
.pagination-ellipsis[disabled],
|
|
52
|
+
fieldset[disabled] .button,
|
|
53
|
+
fieldset[disabled] .input,
|
|
54
|
+
fieldset[disabled] .textarea,
|
|
55
|
+
fieldset[disabled] .select select,
|
|
56
|
+
.select fieldset[disabled] select,
|
|
57
|
+
fieldset[disabled] .file-cta,
|
|
58
|
+
fieldset[disabled] .file-name,
|
|
59
|
+
fieldset[disabled] .pagination-previous,
|
|
60
|
+
fieldset[disabled] .pagination-next,
|
|
61
|
+
fieldset[disabled] .pagination-link,
|
|
62
|
+
fieldset[disabled] .pagination-ellipsis {
|
|
63
|
+
cursor: not-allowed;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.button, .file, .breadcrumb, .pagination-previous,
|
|
20
67
|
.pagination-next,
|
|
21
68
|
.pagination-link,
|
|
22
69
|
.pagination-ellipsis, .tabs, .is-unselectable {
|
|
@@ -50,6 +97,11 @@
|
|
|
50
97
|
}
|
|
51
98
|
|
|
52
99
|
.delete, .modal-close {
|
|
100
|
+
-webkit-touch-callout: none;
|
|
101
|
+
-webkit-user-select: none;
|
|
102
|
+
-moz-user-select: none;
|
|
103
|
+
-ms-user-select: none;
|
|
104
|
+
user-select: none;
|
|
53
105
|
-moz-appearance: none;
|
|
54
106
|
-webkit-appearance: none;
|
|
55
107
|
background-color: rgba(10, 10, 10, 0.2);
|
|
@@ -166,69 +218,7 @@
|
|
|
166
218
|
top: 0;
|
|
167
219
|
}
|
|
168
220
|
|
|
169
|
-
|
|
170
|
-
.file-name, .pagination-previous,
|
|
171
|
-
.pagination-next,
|
|
172
|
-
.pagination-link,
|
|
173
|
-
.pagination-ellipsis {
|
|
174
|
-
-moz-appearance: none;
|
|
175
|
-
-webkit-appearance: none;
|
|
176
|
-
align-items: center;
|
|
177
|
-
border: 1px solid transparent;
|
|
178
|
-
border-radius: 4px;
|
|
179
|
-
box-shadow: none;
|
|
180
|
-
display: inline-flex;
|
|
181
|
-
font-size: 1rem;
|
|
182
|
-
height: 2.5em;
|
|
183
|
-
justify-content: flex-start;
|
|
184
|
-
line-height: 1.5;
|
|
185
|
-
padding-bottom: calc(0.5em - 1px);
|
|
186
|
-
padding-left: calc(0.75em - 1px);
|
|
187
|
-
padding-right: calc(0.75em - 1px);
|
|
188
|
-
padding-top: calc(0.5em - 1px);
|
|
189
|
-
position: relative;
|
|
190
|
-
vertical-align: top;
|
|
191
|
-
}
|
|
192
|
-
|
|
193
|
-
.button:focus, .input:focus, .textarea:focus, .select select:focus, .file-cta:focus,
|
|
194
|
-
.file-name:focus, .pagination-previous:focus,
|
|
195
|
-
.pagination-next:focus,
|
|
196
|
-
.pagination-link:focus,
|
|
197
|
-
.pagination-ellipsis:focus, .is-focused.button, .is-focused.input, .is-focused.textarea, .select select.is-focused, .is-focused.file-cta,
|
|
198
|
-
.is-focused.file-name, .is-focused.pagination-previous,
|
|
199
|
-
.is-focused.pagination-next,
|
|
200
|
-
.is-focused.pagination-link,
|
|
201
|
-
.is-focused.pagination-ellipsis, .button:active, .input:active, .textarea:active, .select select:active, .file-cta:active,
|
|
202
|
-
.file-name:active, .pagination-previous:active,
|
|
203
|
-
.pagination-next:active,
|
|
204
|
-
.pagination-link:active,
|
|
205
|
-
.pagination-ellipsis:active, .is-active.button, .is-active.input, .is-active.textarea, .select select.is-active, .is-active.file-cta,
|
|
206
|
-
.is-active.file-name, .is-active.pagination-previous,
|
|
207
|
-
.is-active.pagination-next,
|
|
208
|
-
.is-active.pagination-link,
|
|
209
|
-
.is-active.pagination-ellipsis {
|
|
210
|
-
outline: none;
|
|
211
|
-
}
|
|
212
|
-
|
|
213
|
-
.button[disabled], .input[disabled], .textarea[disabled], .select select[disabled], .file-cta[disabled],
|
|
214
|
-
.file-name[disabled], .pagination-previous[disabled],
|
|
215
|
-
.pagination-next[disabled],
|
|
216
|
-
.pagination-link[disabled],
|
|
217
|
-
.pagination-ellipsis[disabled],
|
|
218
|
-
fieldset[disabled] .button,
|
|
219
|
-
fieldset[disabled] .input,
|
|
220
|
-
fieldset[disabled] .textarea,
|
|
221
|
-
fieldset[disabled] .select select,
|
|
222
|
-
.select fieldset[disabled] select,
|
|
223
|
-
fieldset[disabled] .file-cta,
|
|
224
|
-
fieldset[disabled] .file-name,
|
|
225
|
-
fieldset[disabled] .pagination-previous,
|
|
226
|
-
fieldset[disabled] .pagination-next,
|
|
227
|
-
fieldset[disabled] .pagination-link,
|
|
228
|
-
fieldset[disabled] .pagination-ellipsis {
|
|
229
|
-
cursor: not-allowed;
|
|
230
|
-
}
|
|
231
|
-
|
|
221
|
+
/* Bulma Base */
|
|
232
222
|
/*! minireset.css v0.0.6 | MIT License | github.com/jgthms/minireset.css */
|
|
233
223
|
html,
|
|
234
224
|
body,
|
|
@@ -339,6 +329,7 @@ section {
|
|
|
339
329
|
body,
|
|
340
330
|
button,
|
|
341
331
|
input,
|
|
332
|
+
optgroup,
|
|
342
333
|
select,
|
|
343
334
|
textarea {
|
|
344
335
|
font-family: BlinkMacSystemFont, -apple-system, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
|
|
@@ -374,7 +365,7 @@ a:hover {
|
|
|
374
365
|
|
|
375
366
|
code {
|
|
376
367
|
background-color: whitesmoke;
|
|
377
|
-
color: #
|
|
368
|
+
color: #da1039;
|
|
378
369
|
font-size: 0.875em;
|
|
379
370
|
font-weight: normal;
|
|
380
371
|
padding: 0.25em 0.5em 0.25em;
|
|
@@ -448,6 +439,25 @@ table th {
|
|
|
448
439
|
color: #363636;
|
|
449
440
|
}
|
|
450
441
|
|
|
442
|
+
@-webkit-keyframes spinAround {
|
|
443
|
+
from {
|
|
444
|
+
transform: rotate(0deg);
|
|
445
|
+
}
|
|
446
|
+
to {
|
|
447
|
+
transform: rotate(359deg);
|
|
448
|
+
}
|
|
449
|
+
}
|
|
450
|
+
|
|
451
|
+
@keyframes spinAround {
|
|
452
|
+
from {
|
|
453
|
+
transform: rotate(0deg);
|
|
454
|
+
}
|
|
455
|
+
to {
|
|
456
|
+
transform: rotate(359deg);
|
|
457
|
+
}
|
|
458
|
+
}
|
|
459
|
+
|
|
460
|
+
/* Bulma Elements */
|
|
451
461
|
.box {
|
|
452
462
|
background-color: white;
|
|
453
463
|
border-radius: 6px;
|
|
@@ -547,6 +557,18 @@ fieldset[disabled] .button.is-text {
|
|
|
547
557
|
box-shadow: none;
|
|
548
558
|
}
|
|
549
559
|
|
|
560
|
+
.button.is-ghost {
|
|
561
|
+
background: none;
|
|
562
|
+
border-color: transparent;
|
|
563
|
+
color: #3273dc;
|
|
564
|
+
text-decoration: none;
|
|
565
|
+
}
|
|
566
|
+
|
|
567
|
+
.button.is-ghost:hover, .button.is-ghost.is-hovered {
|
|
568
|
+
color: #3273dc;
|
|
569
|
+
text-decoration: underline;
|
|
570
|
+
}
|
|
571
|
+
|
|
550
572
|
.button.is-white {
|
|
551
573
|
background-color: white;
|
|
552
574
|
border-color: transparent;
|
|
@@ -1710,10 +1732,13 @@ fieldset[disabled] .button.is-danger.is-inverted.is-outlined {
|
|
|
1710
1732
|
}
|
|
1711
1733
|
|
|
1712
1734
|
.button.is-small {
|
|
1713
|
-
border-radius: 2px;
|
|
1714
1735
|
font-size: 0.75rem;
|
|
1715
1736
|
}
|
|
1716
1737
|
|
|
1738
|
+
.button.is-small:not(.is-rounded) {
|
|
1739
|
+
border-radius: 2px;
|
|
1740
|
+
}
|
|
1741
|
+
|
|
1717
1742
|
.button.is-normal {
|
|
1718
1743
|
font-size: 1rem;
|
|
1719
1744
|
}
|
|
@@ -1789,10 +1814,13 @@ fieldset[disabled] .button {
|
|
|
1789
1814
|
}
|
|
1790
1815
|
|
|
1791
1816
|
.buttons.are-small .button:not(.is-normal):not(.is-medium):not(.is-large) {
|
|
1792
|
-
border-radius: 2px;
|
|
1793
1817
|
font-size: 0.75rem;
|
|
1794
1818
|
}
|
|
1795
1819
|
|
|
1820
|
+
.buttons.are-small .button:not(.is-normal):not(.is-medium):not(.is-large):not(.is-rounded) {
|
|
1821
|
+
border-radius: 2px;
|
|
1822
|
+
}
|
|
1823
|
+
|
|
1796
1824
|
.buttons.are-medium .button:not(.is-small):not(.is-normal):not(.is-large) {
|
|
1797
1825
|
font-size: 1.25rem;
|
|
1798
1826
|
}
|
|
@@ -1859,7 +1887,7 @@ fieldset[disabled] .button {
|
|
|
1859
1887
|
}
|
|
1860
1888
|
|
|
1861
1889
|
.container.is-fluid {
|
|
1862
|
-
max-width: none;
|
|
1890
|
+
max-width: none !important;
|
|
1863
1891
|
padding-left: 32px;
|
|
1864
1892
|
padding-right: 32px;
|
|
1865
1893
|
width: 100%;
|
|
@@ -1872,25 +1900,25 @@ fieldset[disabled] .button {
|
|
|
1872
1900
|
}
|
|
1873
1901
|
|
|
1874
1902
|
@media screen and (max-width: 1215px) {
|
|
1875
|
-
.container.is-widescreen {
|
|
1903
|
+
.container.is-widescreen:not(.is-max-desktop) {
|
|
1876
1904
|
max-width: 1152px;
|
|
1877
1905
|
}
|
|
1878
1906
|
}
|
|
1879
1907
|
|
|
1880
1908
|
@media screen and (max-width: 1407px) {
|
|
1881
|
-
.container.is-fullhd {
|
|
1909
|
+
.container.is-fullhd:not(.is-max-desktop):not(.is-max-widescreen) {
|
|
1882
1910
|
max-width: 1344px;
|
|
1883
1911
|
}
|
|
1884
1912
|
}
|
|
1885
1913
|
|
|
1886
1914
|
@media screen and (min-width: 1216px) {
|
|
1887
|
-
.container {
|
|
1915
|
+
.container:not(.is-max-desktop) {
|
|
1888
1916
|
max-width: 1152px;
|
|
1889
1917
|
}
|
|
1890
1918
|
}
|
|
1891
1919
|
|
|
1892
1920
|
@media screen and (min-width: 1408px) {
|
|
1893
|
-
.container {
|
|
1921
|
+
.container:not(.is-max-desktop):not(.is-max-widescreen) {
|
|
1894
1922
|
max-width: 1344px;
|
|
1895
1923
|
}
|
|
1896
1924
|
}
|
|
@@ -2124,6 +2152,32 @@ fieldset[disabled] .button {
|
|
|
2124
2152
|
width: 3rem;
|
|
2125
2153
|
}
|
|
2126
2154
|
|
|
2155
|
+
.icon-text {
|
|
2156
|
+
align-items: flex-start;
|
|
2157
|
+
color: inherit;
|
|
2158
|
+
display: inline-flex;
|
|
2159
|
+
flex-wrap: wrap;
|
|
2160
|
+
line-height: 1.5rem;
|
|
2161
|
+
vertical-align: top;
|
|
2162
|
+
}
|
|
2163
|
+
|
|
2164
|
+
.icon-text .icon {
|
|
2165
|
+
flex-grow: 0;
|
|
2166
|
+
flex-shrink: 0;
|
|
2167
|
+
}
|
|
2168
|
+
|
|
2169
|
+
.icon-text .icon:not(:last-child) {
|
|
2170
|
+
margin-right: 0.25em;
|
|
2171
|
+
}
|
|
2172
|
+
|
|
2173
|
+
.icon-text .icon:not(:first-child) {
|
|
2174
|
+
margin-left: 0.25em;
|
|
2175
|
+
}
|
|
2176
|
+
|
|
2177
|
+
div.icon-text {
|
|
2178
|
+
display: flex;
|
|
2179
|
+
}
|
|
2180
|
+
|
|
2127
2181
|
.image {
|
|
2128
2182
|
display: block;
|
|
2129
2183
|
position: relative;
|
|
@@ -2589,6 +2643,10 @@ fieldset[disabled] .button {
|
|
|
2589
2643
|
background-color: transparent;
|
|
2590
2644
|
}
|
|
2591
2645
|
|
|
2646
|
+
.progress:indeterminate::-ms-fill {
|
|
2647
|
+
animation-name: none;
|
|
2648
|
+
}
|
|
2649
|
+
|
|
2592
2650
|
.progress.is-small {
|
|
2593
2651
|
height: 0.75rem;
|
|
2594
2652
|
}
|
|
@@ -3213,6 +3271,7 @@ a.tag:hover {
|
|
|
3213
3271
|
vertical-align: top;
|
|
3214
3272
|
}
|
|
3215
3273
|
|
|
3274
|
+
/* Bulma Form */
|
|
3216
3275
|
.input, .textarea, .select select {
|
|
3217
3276
|
background-color: white;
|
|
3218
3277
|
border-color: #dbdbdb;
|
|
@@ -3453,7 +3512,9 @@ fieldset[disabled] .select select:-ms-input-placeholder,
|
|
|
3453
3512
|
|
|
3454
3513
|
.checkbox[disabled], .radio[disabled],
|
|
3455
3514
|
fieldset[disabled] .checkbox,
|
|
3456
|
-
fieldset[disabled] .radio
|
|
3515
|
+
fieldset[disabled] .radio,
|
|
3516
|
+
.checkbox input[disabled],
|
|
3517
|
+
.radio input[disabled] {
|
|
3457
3518
|
color: #7a7a7a;
|
|
3458
3519
|
cursor: not-allowed;
|
|
3459
3520
|
}
|
|
@@ -4495,6 +4556,7 @@ fieldset[disabled] .select select:hover {
|
|
|
4495
4556
|
font-size: 1.5rem;
|
|
4496
4557
|
}
|
|
4497
4558
|
|
|
4559
|
+
/* Bulma Components */
|
|
4498
4560
|
.breadcrumb {
|
|
4499
4561
|
font-size: 1rem;
|
|
4500
4562
|
white-space: nowrap;
|
|
@@ -4588,12 +4650,23 @@ fieldset[disabled] .select select:hover {
|
|
|
4588
4650
|
|
|
4589
4651
|
.card {
|
|
4590
4652
|
background-color: white;
|
|
4653
|
+
border-radius: 0.25rem;
|
|
4591
4654
|
box-shadow: 0 0.5em 1em -0.125em rgba(10, 10, 10, 0.1), 0 0px 0 1px rgba(10, 10, 10, 0.02);
|
|
4592
4655
|
color: #4a4a4a;
|
|
4593
4656
|
max-width: 100%;
|
|
4594
4657
|
position: relative;
|
|
4595
4658
|
}
|
|
4596
4659
|
|
|
4660
|
+
.card-header:first-child, .card-content:first-child, .card-footer:first-child {
|
|
4661
|
+
border-top-left-radius: 0.25rem;
|
|
4662
|
+
border-top-right-radius: 0.25rem;
|
|
4663
|
+
}
|
|
4664
|
+
|
|
4665
|
+
.card-header:last-child, .card-content:last-child, .card-footer:last-child {
|
|
4666
|
+
border-bottom-left-radius: 0.25rem;
|
|
4667
|
+
border-bottom-right-radius: 0.25rem;
|
|
4668
|
+
}
|
|
4669
|
+
|
|
4597
4670
|
.card-header {
|
|
4598
4671
|
background-color: transparent;
|
|
4599
4672
|
align-items: stretch;
|
|
@@ -4627,6 +4700,16 @@ fieldset[disabled] .select select:hover {
|
|
|
4627
4700
|
position: relative;
|
|
4628
4701
|
}
|
|
4629
4702
|
|
|
4703
|
+
.card-image:first-child img {
|
|
4704
|
+
border-top-left-radius: 0.25rem;
|
|
4705
|
+
border-top-right-radius: 0.25rem;
|
|
4706
|
+
}
|
|
4707
|
+
|
|
4708
|
+
.card-image:last-child img {
|
|
4709
|
+
border-bottom-left-radius: 0.25rem;
|
|
4710
|
+
border-bottom-right-radius: 0.25rem;
|
|
4711
|
+
}
|
|
4712
|
+
|
|
4630
4713
|
.card-content {
|
|
4631
4714
|
background-color: transparent;
|
|
4632
4715
|
padding: 1.5rem;
|
|
@@ -5205,7 +5288,7 @@ button.dropdown-item.is-active {
|
|
|
5205
5288
|
width: 100%;
|
|
5206
5289
|
}
|
|
5207
5290
|
|
|
5208
|
-
@media screen and (min-width: 769px)
|
|
5291
|
+
@media screen and (min-width: 769px) {
|
|
5209
5292
|
.modal-content,
|
|
5210
5293
|
.modal-card {
|
|
5211
5294
|
margin: 0 auto;
|
|
@@ -6459,6 +6542,10 @@ a.navbar-item:focus, a.navbar-item:focus-within, a.navbar-item:hover, a.navbar-i
|
|
|
6459
6542
|
flex-wrap: wrap;
|
|
6460
6543
|
}
|
|
6461
6544
|
|
|
6545
|
+
.pagination-list li {
|
|
6546
|
+
list-style: none;
|
|
6547
|
+
}
|
|
6548
|
+
|
|
6462
6549
|
@media screen and (max-width: 768px) {
|
|
6463
6550
|
.pagination {
|
|
6464
6551
|
flex-wrap: wrap;
|
|
@@ -6921,6 +7008,7 @@ label.panel-block:hover {
|
|
|
6921
7008
|
font-size: 1.5rem;
|
|
6922
7009
|
}
|
|
6923
7010
|
|
|
7011
|
+
/* Bulma Grid */
|
|
6924
7012
|
.column {
|
|
6925
7013
|
display: block;
|
|
6926
7014
|
flex-basis: 0;
|
|
@@ -6931,6 +7019,7 @@ label.panel-block:hover {
|
|
|
6931
7019
|
|
|
6932
7020
|
.columns.is-mobile > .column.is-narrow {
|
|
6933
7021
|
flex: none;
|
|
7022
|
+
width: unset;
|
|
6934
7023
|
}
|
|
6935
7024
|
|
|
6936
7025
|
.columns.is-mobile > .column.is-full {
|
|
@@ -6984,39 +7073,39 @@ label.panel-block:hover {
|
|
|
6984
7073
|
}
|
|
6985
7074
|
|
|
6986
7075
|
.columns.is-mobile > .column.is-offset-three-quarters {
|
|
6987
|
-
margin-
|
|
7076
|
+
margin-right: 75%;
|
|
6988
7077
|
}
|
|
6989
7078
|
|
|
6990
7079
|
.columns.is-mobile > .column.is-offset-two-thirds {
|
|
6991
|
-
margin-
|
|
7080
|
+
margin-right: 66.6666%;
|
|
6992
7081
|
}
|
|
6993
7082
|
|
|
6994
7083
|
.columns.is-mobile > .column.is-offset-half {
|
|
6995
|
-
margin-
|
|
7084
|
+
margin-right: 50%;
|
|
6996
7085
|
}
|
|
6997
7086
|
|
|
6998
7087
|
.columns.is-mobile > .column.is-offset-one-third {
|
|
6999
|
-
margin-
|
|
7088
|
+
margin-right: 33.3333%;
|
|
7000
7089
|
}
|
|
7001
7090
|
|
|
7002
7091
|
.columns.is-mobile > .column.is-offset-one-quarter {
|
|
7003
|
-
margin-
|
|
7092
|
+
margin-right: 25%;
|
|
7004
7093
|
}
|
|
7005
7094
|
|
|
7006
7095
|
.columns.is-mobile > .column.is-offset-one-fifth {
|
|
7007
|
-
margin-
|
|
7096
|
+
margin-right: 20%;
|
|
7008
7097
|
}
|
|
7009
7098
|
|
|
7010
7099
|
.columns.is-mobile > .column.is-offset-two-fifths {
|
|
7011
|
-
margin-
|
|
7100
|
+
margin-right: 40%;
|
|
7012
7101
|
}
|
|
7013
7102
|
|
|
7014
7103
|
.columns.is-mobile > .column.is-offset-three-fifths {
|
|
7015
|
-
margin-
|
|
7104
|
+
margin-right: 60%;
|
|
7016
7105
|
}
|
|
7017
7106
|
|
|
7018
7107
|
.columns.is-mobile > .column.is-offset-four-fifths {
|
|
7019
|
-
margin-
|
|
7108
|
+
margin-right: 80%;
|
|
7020
7109
|
}
|
|
7021
7110
|
|
|
7022
7111
|
.columns.is-mobile > .column.is-0 {
|
|
@@ -7025,7 +7114,7 @@ label.panel-block:hover {
|
|
|
7025
7114
|
}
|
|
7026
7115
|
|
|
7027
7116
|
.columns.is-mobile > .column.is-offset-0 {
|
|
7028
|
-
margin-
|
|
7117
|
+
margin-right: 0%;
|
|
7029
7118
|
}
|
|
7030
7119
|
|
|
7031
7120
|
.columns.is-mobile > .column.is-1 {
|
|
@@ -7034,7 +7123,7 @@ label.panel-block:hover {
|
|
|
7034
7123
|
}
|
|
7035
7124
|
|
|
7036
7125
|
.columns.is-mobile > .column.is-offset-1 {
|
|
7037
|
-
margin-
|
|
7126
|
+
margin-right: 8.33333%;
|
|
7038
7127
|
}
|
|
7039
7128
|
|
|
7040
7129
|
.columns.is-mobile > .column.is-2 {
|
|
@@ -7043,7 +7132,7 @@ label.panel-block:hover {
|
|
|
7043
7132
|
}
|
|
7044
7133
|
|
|
7045
7134
|
.columns.is-mobile > .column.is-offset-2 {
|
|
7046
|
-
margin-
|
|
7135
|
+
margin-right: 16.66667%;
|
|
7047
7136
|
}
|
|
7048
7137
|
|
|
7049
7138
|
.columns.is-mobile > .column.is-3 {
|
|
@@ -7052,7 +7141,7 @@ label.panel-block:hover {
|
|
|
7052
7141
|
}
|
|
7053
7142
|
|
|
7054
7143
|
.columns.is-mobile > .column.is-offset-3 {
|
|
7055
|
-
margin-
|
|
7144
|
+
margin-right: 25%;
|
|
7056
7145
|
}
|
|
7057
7146
|
|
|
7058
7147
|
.columns.is-mobile > .column.is-4 {
|
|
@@ -7061,7 +7150,7 @@ label.panel-block:hover {
|
|
|
7061
7150
|
}
|
|
7062
7151
|
|
|
7063
7152
|
.columns.is-mobile > .column.is-offset-4 {
|
|
7064
|
-
margin-
|
|
7153
|
+
margin-right: 33.33333%;
|
|
7065
7154
|
}
|
|
7066
7155
|
|
|
7067
7156
|
.columns.is-mobile > .column.is-5 {
|
|
@@ -7070,7 +7159,7 @@ label.panel-block:hover {
|
|
|
7070
7159
|
}
|
|
7071
7160
|
|
|
7072
7161
|
.columns.is-mobile > .column.is-offset-5 {
|
|
7073
|
-
margin-
|
|
7162
|
+
margin-right: 41.66667%;
|
|
7074
7163
|
}
|
|
7075
7164
|
|
|
7076
7165
|
.columns.is-mobile > .column.is-6 {
|
|
@@ -7079,7 +7168,7 @@ label.panel-block:hover {
|
|
|
7079
7168
|
}
|
|
7080
7169
|
|
|
7081
7170
|
.columns.is-mobile > .column.is-offset-6 {
|
|
7082
|
-
margin-
|
|
7171
|
+
margin-right: 50%;
|
|
7083
7172
|
}
|
|
7084
7173
|
|
|
7085
7174
|
.columns.is-mobile > .column.is-7 {
|
|
@@ -7088,7 +7177,7 @@ label.panel-block:hover {
|
|
|
7088
7177
|
}
|
|
7089
7178
|
|
|
7090
7179
|
.columns.is-mobile > .column.is-offset-7 {
|
|
7091
|
-
margin-
|
|
7180
|
+
margin-right: 58.33333%;
|
|
7092
7181
|
}
|
|
7093
7182
|
|
|
7094
7183
|
.columns.is-mobile > .column.is-8 {
|
|
@@ -7097,7 +7186,7 @@ label.panel-block:hover {
|
|
|
7097
7186
|
}
|
|
7098
7187
|
|
|
7099
7188
|
.columns.is-mobile > .column.is-offset-8 {
|
|
7100
|
-
margin-
|
|
7189
|
+
margin-right: 66.66667%;
|
|
7101
7190
|
}
|
|
7102
7191
|
|
|
7103
7192
|
.columns.is-mobile > .column.is-9 {
|
|
@@ -7106,7 +7195,7 @@ label.panel-block:hover {
|
|
|
7106
7195
|
}
|
|
7107
7196
|
|
|
7108
7197
|
.columns.is-mobile > .column.is-offset-9 {
|
|
7109
|
-
margin-
|
|
7198
|
+
margin-right: 75%;
|
|
7110
7199
|
}
|
|
7111
7200
|
|
|
7112
7201
|
.columns.is-mobile > .column.is-10 {
|
|
@@ -7115,7 +7204,7 @@ label.panel-block:hover {
|
|
|
7115
7204
|
}
|
|
7116
7205
|
|
|
7117
7206
|
.columns.is-mobile > .column.is-offset-10 {
|
|
7118
|
-
margin-
|
|
7207
|
+
margin-right: 83.33333%;
|
|
7119
7208
|
}
|
|
7120
7209
|
|
|
7121
7210
|
.columns.is-mobile > .column.is-11 {
|
|
@@ -7124,7 +7213,7 @@ label.panel-block:hover {
|
|
|
7124
7213
|
}
|
|
7125
7214
|
|
|
7126
7215
|
.columns.is-mobile > .column.is-offset-11 {
|
|
7127
|
-
margin-
|
|
7216
|
+
margin-right: 91.66667%;
|
|
7128
7217
|
}
|
|
7129
7218
|
|
|
7130
7219
|
.columns.is-mobile > .column.is-12 {
|
|
@@ -7133,12 +7222,13 @@ label.panel-block:hover {
|
|
|
7133
7222
|
}
|
|
7134
7223
|
|
|
7135
7224
|
.columns.is-mobile > .column.is-offset-12 {
|
|
7136
|
-
margin-
|
|
7225
|
+
margin-right: 100%;
|
|
7137
7226
|
}
|
|
7138
7227
|
|
|
7139
7228
|
@media screen and (max-width: 768px) {
|
|
7140
7229
|
.column.is-narrow-mobile {
|
|
7141
7230
|
flex: none;
|
|
7231
|
+
width: unset;
|
|
7142
7232
|
}
|
|
7143
7233
|
.column.is-full-mobile {
|
|
7144
7234
|
flex: none;
|
|
@@ -7181,128 +7271,129 @@ label.panel-block:hover {
|
|
|
7181
7271
|
width: 80%;
|
|
7182
7272
|
}
|
|
7183
7273
|
.column.is-offset-three-quarters-mobile {
|
|
7184
|
-
margin-
|
|
7274
|
+
margin-right: 75%;
|
|
7185
7275
|
}
|
|
7186
7276
|
.column.is-offset-two-thirds-mobile {
|
|
7187
|
-
margin-
|
|
7277
|
+
margin-right: 66.6666%;
|
|
7188
7278
|
}
|
|
7189
7279
|
.column.is-offset-half-mobile {
|
|
7190
|
-
margin-
|
|
7280
|
+
margin-right: 50%;
|
|
7191
7281
|
}
|
|
7192
7282
|
.column.is-offset-one-third-mobile {
|
|
7193
|
-
margin-
|
|
7283
|
+
margin-right: 33.3333%;
|
|
7194
7284
|
}
|
|
7195
7285
|
.column.is-offset-one-quarter-mobile {
|
|
7196
|
-
margin-
|
|
7286
|
+
margin-right: 25%;
|
|
7197
7287
|
}
|
|
7198
7288
|
.column.is-offset-one-fifth-mobile {
|
|
7199
|
-
margin-
|
|
7289
|
+
margin-right: 20%;
|
|
7200
7290
|
}
|
|
7201
7291
|
.column.is-offset-two-fifths-mobile {
|
|
7202
|
-
margin-
|
|
7292
|
+
margin-right: 40%;
|
|
7203
7293
|
}
|
|
7204
7294
|
.column.is-offset-three-fifths-mobile {
|
|
7205
|
-
margin-
|
|
7295
|
+
margin-right: 60%;
|
|
7206
7296
|
}
|
|
7207
7297
|
.column.is-offset-four-fifths-mobile {
|
|
7208
|
-
margin-
|
|
7298
|
+
margin-right: 80%;
|
|
7209
7299
|
}
|
|
7210
7300
|
.column.is-0-mobile {
|
|
7211
7301
|
flex: none;
|
|
7212
7302
|
width: 0%;
|
|
7213
7303
|
}
|
|
7214
7304
|
.column.is-offset-0-mobile {
|
|
7215
|
-
margin-
|
|
7305
|
+
margin-right: 0%;
|
|
7216
7306
|
}
|
|
7217
7307
|
.column.is-1-mobile {
|
|
7218
7308
|
flex: none;
|
|
7219
7309
|
width: 8.33333%;
|
|
7220
7310
|
}
|
|
7221
7311
|
.column.is-offset-1-mobile {
|
|
7222
|
-
margin-
|
|
7312
|
+
margin-right: 8.33333%;
|
|
7223
7313
|
}
|
|
7224
7314
|
.column.is-2-mobile {
|
|
7225
7315
|
flex: none;
|
|
7226
7316
|
width: 16.66667%;
|
|
7227
7317
|
}
|
|
7228
7318
|
.column.is-offset-2-mobile {
|
|
7229
|
-
margin-
|
|
7319
|
+
margin-right: 16.66667%;
|
|
7230
7320
|
}
|
|
7231
7321
|
.column.is-3-mobile {
|
|
7232
7322
|
flex: none;
|
|
7233
7323
|
width: 25%;
|
|
7234
7324
|
}
|
|
7235
7325
|
.column.is-offset-3-mobile {
|
|
7236
|
-
margin-
|
|
7326
|
+
margin-right: 25%;
|
|
7237
7327
|
}
|
|
7238
7328
|
.column.is-4-mobile {
|
|
7239
7329
|
flex: none;
|
|
7240
7330
|
width: 33.33333%;
|
|
7241
7331
|
}
|
|
7242
7332
|
.column.is-offset-4-mobile {
|
|
7243
|
-
margin-
|
|
7333
|
+
margin-right: 33.33333%;
|
|
7244
7334
|
}
|
|
7245
7335
|
.column.is-5-mobile {
|
|
7246
7336
|
flex: none;
|
|
7247
7337
|
width: 41.66667%;
|
|
7248
7338
|
}
|
|
7249
7339
|
.column.is-offset-5-mobile {
|
|
7250
|
-
margin-
|
|
7340
|
+
margin-right: 41.66667%;
|
|
7251
7341
|
}
|
|
7252
7342
|
.column.is-6-mobile {
|
|
7253
7343
|
flex: none;
|
|
7254
7344
|
width: 50%;
|
|
7255
7345
|
}
|
|
7256
7346
|
.column.is-offset-6-mobile {
|
|
7257
|
-
margin-
|
|
7347
|
+
margin-right: 50%;
|
|
7258
7348
|
}
|
|
7259
7349
|
.column.is-7-mobile {
|
|
7260
7350
|
flex: none;
|
|
7261
7351
|
width: 58.33333%;
|
|
7262
7352
|
}
|
|
7263
7353
|
.column.is-offset-7-mobile {
|
|
7264
|
-
margin-
|
|
7354
|
+
margin-right: 58.33333%;
|
|
7265
7355
|
}
|
|
7266
7356
|
.column.is-8-mobile {
|
|
7267
7357
|
flex: none;
|
|
7268
7358
|
width: 66.66667%;
|
|
7269
7359
|
}
|
|
7270
7360
|
.column.is-offset-8-mobile {
|
|
7271
|
-
margin-
|
|
7361
|
+
margin-right: 66.66667%;
|
|
7272
7362
|
}
|
|
7273
7363
|
.column.is-9-mobile {
|
|
7274
7364
|
flex: none;
|
|
7275
7365
|
width: 75%;
|
|
7276
7366
|
}
|
|
7277
7367
|
.column.is-offset-9-mobile {
|
|
7278
|
-
margin-
|
|
7368
|
+
margin-right: 75%;
|
|
7279
7369
|
}
|
|
7280
7370
|
.column.is-10-mobile {
|
|
7281
7371
|
flex: none;
|
|
7282
7372
|
width: 83.33333%;
|
|
7283
7373
|
}
|
|
7284
7374
|
.column.is-offset-10-mobile {
|
|
7285
|
-
margin-
|
|
7375
|
+
margin-right: 83.33333%;
|
|
7286
7376
|
}
|
|
7287
7377
|
.column.is-11-mobile {
|
|
7288
7378
|
flex: none;
|
|
7289
7379
|
width: 91.66667%;
|
|
7290
7380
|
}
|
|
7291
7381
|
.column.is-offset-11-mobile {
|
|
7292
|
-
margin-
|
|
7382
|
+
margin-right: 91.66667%;
|
|
7293
7383
|
}
|
|
7294
7384
|
.column.is-12-mobile {
|
|
7295
7385
|
flex: none;
|
|
7296
7386
|
width: 100%;
|
|
7297
7387
|
}
|
|
7298
7388
|
.column.is-offset-12-mobile {
|
|
7299
|
-
margin-
|
|
7389
|
+
margin-right: 100%;
|
|
7300
7390
|
}
|
|
7301
7391
|
}
|
|
7302
7392
|
|
|
7303
7393
|
@media screen and (min-width: 769px), print {
|
|
7304
7394
|
.column.is-narrow, .column.is-narrow-tablet {
|
|
7305
7395
|
flex: none;
|
|
7396
|
+
width: unset;
|
|
7306
7397
|
}
|
|
7307
7398
|
.column.is-full, .column.is-full-tablet {
|
|
7308
7399
|
flex: none;
|
|
@@ -7345,128 +7436,129 @@ label.panel-block:hover {
|
|
|
7345
7436
|
width: 80%;
|
|
7346
7437
|
}
|
|
7347
7438
|
.column.is-offset-three-quarters, .column.is-offset-three-quarters-tablet {
|
|
7348
|
-
margin-
|
|
7439
|
+
margin-right: 75%;
|
|
7349
7440
|
}
|
|
7350
7441
|
.column.is-offset-two-thirds, .column.is-offset-two-thirds-tablet {
|
|
7351
|
-
margin-
|
|
7442
|
+
margin-right: 66.6666%;
|
|
7352
7443
|
}
|
|
7353
7444
|
.column.is-offset-half, .column.is-offset-half-tablet {
|
|
7354
|
-
margin-
|
|
7445
|
+
margin-right: 50%;
|
|
7355
7446
|
}
|
|
7356
7447
|
.column.is-offset-one-third, .column.is-offset-one-third-tablet {
|
|
7357
|
-
margin-
|
|
7448
|
+
margin-right: 33.3333%;
|
|
7358
7449
|
}
|
|
7359
7450
|
.column.is-offset-one-quarter, .column.is-offset-one-quarter-tablet {
|
|
7360
|
-
margin-
|
|
7451
|
+
margin-right: 25%;
|
|
7361
7452
|
}
|
|
7362
7453
|
.column.is-offset-one-fifth, .column.is-offset-one-fifth-tablet {
|
|
7363
|
-
margin-
|
|
7454
|
+
margin-right: 20%;
|
|
7364
7455
|
}
|
|
7365
7456
|
.column.is-offset-two-fifths, .column.is-offset-two-fifths-tablet {
|
|
7366
|
-
margin-
|
|
7457
|
+
margin-right: 40%;
|
|
7367
7458
|
}
|
|
7368
7459
|
.column.is-offset-three-fifths, .column.is-offset-three-fifths-tablet {
|
|
7369
|
-
margin-
|
|
7460
|
+
margin-right: 60%;
|
|
7370
7461
|
}
|
|
7371
7462
|
.column.is-offset-four-fifths, .column.is-offset-four-fifths-tablet {
|
|
7372
|
-
margin-
|
|
7463
|
+
margin-right: 80%;
|
|
7373
7464
|
}
|
|
7374
7465
|
.column.is-0, .column.is-0-tablet {
|
|
7375
7466
|
flex: none;
|
|
7376
7467
|
width: 0%;
|
|
7377
7468
|
}
|
|
7378
7469
|
.column.is-offset-0, .column.is-offset-0-tablet {
|
|
7379
|
-
margin-
|
|
7470
|
+
margin-right: 0%;
|
|
7380
7471
|
}
|
|
7381
7472
|
.column.is-1, .column.is-1-tablet {
|
|
7382
7473
|
flex: none;
|
|
7383
7474
|
width: 8.33333%;
|
|
7384
7475
|
}
|
|
7385
7476
|
.column.is-offset-1, .column.is-offset-1-tablet {
|
|
7386
|
-
margin-
|
|
7477
|
+
margin-right: 8.33333%;
|
|
7387
7478
|
}
|
|
7388
7479
|
.column.is-2, .column.is-2-tablet {
|
|
7389
7480
|
flex: none;
|
|
7390
7481
|
width: 16.66667%;
|
|
7391
7482
|
}
|
|
7392
7483
|
.column.is-offset-2, .column.is-offset-2-tablet {
|
|
7393
|
-
margin-
|
|
7484
|
+
margin-right: 16.66667%;
|
|
7394
7485
|
}
|
|
7395
7486
|
.column.is-3, .column.is-3-tablet {
|
|
7396
7487
|
flex: none;
|
|
7397
7488
|
width: 25%;
|
|
7398
7489
|
}
|
|
7399
7490
|
.column.is-offset-3, .column.is-offset-3-tablet {
|
|
7400
|
-
margin-
|
|
7491
|
+
margin-right: 25%;
|
|
7401
7492
|
}
|
|
7402
7493
|
.column.is-4, .column.is-4-tablet {
|
|
7403
7494
|
flex: none;
|
|
7404
7495
|
width: 33.33333%;
|
|
7405
7496
|
}
|
|
7406
7497
|
.column.is-offset-4, .column.is-offset-4-tablet {
|
|
7407
|
-
margin-
|
|
7498
|
+
margin-right: 33.33333%;
|
|
7408
7499
|
}
|
|
7409
7500
|
.column.is-5, .column.is-5-tablet {
|
|
7410
7501
|
flex: none;
|
|
7411
7502
|
width: 41.66667%;
|
|
7412
7503
|
}
|
|
7413
7504
|
.column.is-offset-5, .column.is-offset-5-tablet {
|
|
7414
|
-
margin-
|
|
7505
|
+
margin-right: 41.66667%;
|
|
7415
7506
|
}
|
|
7416
7507
|
.column.is-6, .column.is-6-tablet {
|
|
7417
7508
|
flex: none;
|
|
7418
7509
|
width: 50%;
|
|
7419
7510
|
}
|
|
7420
7511
|
.column.is-offset-6, .column.is-offset-6-tablet {
|
|
7421
|
-
margin-
|
|
7512
|
+
margin-right: 50%;
|
|
7422
7513
|
}
|
|
7423
7514
|
.column.is-7, .column.is-7-tablet {
|
|
7424
7515
|
flex: none;
|
|
7425
7516
|
width: 58.33333%;
|
|
7426
7517
|
}
|
|
7427
7518
|
.column.is-offset-7, .column.is-offset-7-tablet {
|
|
7428
|
-
margin-
|
|
7519
|
+
margin-right: 58.33333%;
|
|
7429
7520
|
}
|
|
7430
7521
|
.column.is-8, .column.is-8-tablet {
|
|
7431
7522
|
flex: none;
|
|
7432
7523
|
width: 66.66667%;
|
|
7433
7524
|
}
|
|
7434
7525
|
.column.is-offset-8, .column.is-offset-8-tablet {
|
|
7435
|
-
margin-
|
|
7526
|
+
margin-right: 66.66667%;
|
|
7436
7527
|
}
|
|
7437
7528
|
.column.is-9, .column.is-9-tablet {
|
|
7438
7529
|
flex: none;
|
|
7439
7530
|
width: 75%;
|
|
7440
7531
|
}
|
|
7441
7532
|
.column.is-offset-9, .column.is-offset-9-tablet {
|
|
7442
|
-
margin-
|
|
7533
|
+
margin-right: 75%;
|
|
7443
7534
|
}
|
|
7444
7535
|
.column.is-10, .column.is-10-tablet {
|
|
7445
7536
|
flex: none;
|
|
7446
7537
|
width: 83.33333%;
|
|
7447
7538
|
}
|
|
7448
7539
|
.column.is-offset-10, .column.is-offset-10-tablet {
|
|
7449
|
-
margin-
|
|
7540
|
+
margin-right: 83.33333%;
|
|
7450
7541
|
}
|
|
7451
7542
|
.column.is-11, .column.is-11-tablet {
|
|
7452
7543
|
flex: none;
|
|
7453
7544
|
width: 91.66667%;
|
|
7454
7545
|
}
|
|
7455
7546
|
.column.is-offset-11, .column.is-offset-11-tablet {
|
|
7456
|
-
margin-
|
|
7547
|
+
margin-right: 91.66667%;
|
|
7457
7548
|
}
|
|
7458
7549
|
.column.is-12, .column.is-12-tablet {
|
|
7459
7550
|
flex: none;
|
|
7460
7551
|
width: 100%;
|
|
7461
7552
|
}
|
|
7462
7553
|
.column.is-offset-12, .column.is-offset-12-tablet {
|
|
7463
|
-
margin-
|
|
7554
|
+
margin-right: 100%;
|
|
7464
7555
|
}
|
|
7465
7556
|
}
|
|
7466
7557
|
|
|
7467
7558
|
@media screen and (max-width: 1023px) {
|
|
7468
7559
|
.column.is-narrow-touch {
|
|
7469
7560
|
flex: none;
|
|
7561
|
+
width: unset;
|
|
7470
7562
|
}
|
|
7471
7563
|
.column.is-full-touch {
|
|
7472
7564
|
flex: none;
|
|
@@ -7509,128 +7601,129 @@ label.panel-block:hover {
|
|
|
7509
7601
|
width: 80%;
|
|
7510
7602
|
}
|
|
7511
7603
|
.column.is-offset-three-quarters-touch {
|
|
7512
|
-
margin-
|
|
7604
|
+
margin-right: 75%;
|
|
7513
7605
|
}
|
|
7514
7606
|
.column.is-offset-two-thirds-touch {
|
|
7515
|
-
margin-
|
|
7607
|
+
margin-right: 66.6666%;
|
|
7516
7608
|
}
|
|
7517
7609
|
.column.is-offset-half-touch {
|
|
7518
|
-
margin-
|
|
7610
|
+
margin-right: 50%;
|
|
7519
7611
|
}
|
|
7520
7612
|
.column.is-offset-one-third-touch {
|
|
7521
|
-
margin-
|
|
7613
|
+
margin-right: 33.3333%;
|
|
7522
7614
|
}
|
|
7523
7615
|
.column.is-offset-one-quarter-touch {
|
|
7524
|
-
margin-
|
|
7616
|
+
margin-right: 25%;
|
|
7525
7617
|
}
|
|
7526
7618
|
.column.is-offset-one-fifth-touch {
|
|
7527
|
-
margin-
|
|
7619
|
+
margin-right: 20%;
|
|
7528
7620
|
}
|
|
7529
7621
|
.column.is-offset-two-fifths-touch {
|
|
7530
|
-
margin-
|
|
7622
|
+
margin-right: 40%;
|
|
7531
7623
|
}
|
|
7532
7624
|
.column.is-offset-three-fifths-touch {
|
|
7533
|
-
margin-
|
|
7625
|
+
margin-right: 60%;
|
|
7534
7626
|
}
|
|
7535
7627
|
.column.is-offset-four-fifths-touch {
|
|
7536
|
-
margin-
|
|
7628
|
+
margin-right: 80%;
|
|
7537
7629
|
}
|
|
7538
7630
|
.column.is-0-touch {
|
|
7539
7631
|
flex: none;
|
|
7540
7632
|
width: 0%;
|
|
7541
7633
|
}
|
|
7542
7634
|
.column.is-offset-0-touch {
|
|
7543
|
-
margin-
|
|
7635
|
+
margin-right: 0%;
|
|
7544
7636
|
}
|
|
7545
7637
|
.column.is-1-touch {
|
|
7546
7638
|
flex: none;
|
|
7547
7639
|
width: 8.33333%;
|
|
7548
7640
|
}
|
|
7549
7641
|
.column.is-offset-1-touch {
|
|
7550
|
-
margin-
|
|
7642
|
+
margin-right: 8.33333%;
|
|
7551
7643
|
}
|
|
7552
7644
|
.column.is-2-touch {
|
|
7553
7645
|
flex: none;
|
|
7554
7646
|
width: 16.66667%;
|
|
7555
7647
|
}
|
|
7556
7648
|
.column.is-offset-2-touch {
|
|
7557
|
-
margin-
|
|
7649
|
+
margin-right: 16.66667%;
|
|
7558
7650
|
}
|
|
7559
7651
|
.column.is-3-touch {
|
|
7560
7652
|
flex: none;
|
|
7561
7653
|
width: 25%;
|
|
7562
7654
|
}
|
|
7563
7655
|
.column.is-offset-3-touch {
|
|
7564
|
-
margin-
|
|
7656
|
+
margin-right: 25%;
|
|
7565
7657
|
}
|
|
7566
7658
|
.column.is-4-touch {
|
|
7567
7659
|
flex: none;
|
|
7568
7660
|
width: 33.33333%;
|
|
7569
7661
|
}
|
|
7570
7662
|
.column.is-offset-4-touch {
|
|
7571
|
-
margin-
|
|
7663
|
+
margin-right: 33.33333%;
|
|
7572
7664
|
}
|
|
7573
7665
|
.column.is-5-touch {
|
|
7574
7666
|
flex: none;
|
|
7575
7667
|
width: 41.66667%;
|
|
7576
7668
|
}
|
|
7577
7669
|
.column.is-offset-5-touch {
|
|
7578
|
-
margin-
|
|
7670
|
+
margin-right: 41.66667%;
|
|
7579
7671
|
}
|
|
7580
7672
|
.column.is-6-touch {
|
|
7581
7673
|
flex: none;
|
|
7582
7674
|
width: 50%;
|
|
7583
7675
|
}
|
|
7584
7676
|
.column.is-offset-6-touch {
|
|
7585
|
-
margin-
|
|
7677
|
+
margin-right: 50%;
|
|
7586
7678
|
}
|
|
7587
7679
|
.column.is-7-touch {
|
|
7588
7680
|
flex: none;
|
|
7589
7681
|
width: 58.33333%;
|
|
7590
7682
|
}
|
|
7591
7683
|
.column.is-offset-7-touch {
|
|
7592
|
-
margin-
|
|
7684
|
+
margin-right: 58.33333%;
|
|
7593
7685
|
}
|
|
7594
7686
|
.column.is-8-touch {
|
|
7595
7687
|
flex: none;
|
|
7596
7688
|
width: 66.66667%;
|
|
7597
7689
|
}
|
|
7598
7690
|
.column.is-offset-8-touch {
|
|
7599
|
-
margin-
|
|
7691
|
+
margin-right: 66.66667%;
|
|
7600
7692
|
}
|
|
7601
7693
|
.column.is-9-touch {
|
|
7602
7694
|
flex: none;
|
|
7603
7695
|
width: 75%;
|
|
7604
7696
|
}
|
|
7605
7697
|
.column.is-offset-9-touch {
|
|
7606
|
-
margin-
|
|
7698
|
+
margin-right: 75%;
|
|
7607
7699
|
}
|
|
7608
7700
|
.column.is-10-touch {
|
|
7609
7701
|
flex: none;
|
|
7610
7702
|
width: 83.33333%;
|
|
7611
7703
|
}
|
|
7612
7704
|
.column.is-offset-10-touch {
|
|
7613
|
-
margin-
|
|
7705
|
+
margin-right: 83.33333%;
|
|
7614
7706
|
}
|
|
7615
7707
|
.column.is-11-touch {
|
|
7616
7708
|
flex: none;
|
|
7617
7709
|
width: 91.66667%;
|
|
7618
7710
|
}
|
|
7619
7711
|
.column.is-offset-11-touch {
|
|
7620
|
-
margin-
|
|
7712
|
+
margin-right: 91.66667%;
|
|
7621
7713
|
}
|
|
7622
7714
|
.column.is-12-touch {
|
|
7623
7715
|
flex: none;
|
|
7624
7716
|
width: 100%;
|
|
7625
7717
|
}
|
|
7626
7718
|
.column.is-offset-12-touch {
|
|
7627
|
-
margin-
|
|
7719
|
+
margin-right: 100%;
|
|
7628
7720
|
}
|
|
7629
7721
|
}
|
|
7630
7722
|
|
|
7631
7723
|
@media screen and (min-width: 1024px) {
|
|
7632
7724
|
.column.is-narrow-desktop {
|
|
7633
7725
|
flex: none;
|
|
7726
|
+
width: unset;
|
|
7634
7727
|
}
|
|
7635
7728
|
.column.is-full-desktop {
|
|
7636
7729
|
flex: none;
|
|
@@ -7673,128 +7766,129 @@ label.panel-block:hover {
|
|
|
7673
7766
|
width: 80%;
|
|
7674
7767
|
}
|
|
7675
7768
|
.column.is-offset-three-quarters-desktop {
|
|
7676
|
-
margin-
|
|
7769
|
+
margin-right: 75%;
|
|
7677
7770
|
}
|
|
7678
7771
|
.column.is-offset-two-thirds-desktop {
|
|
7679
|
-
margin-
|
|
7772
|
+
margin-right: 66.6666%;
|
|
7680
7773
|
}
|
|
7681
7774
|
.column.is-offset-half-desktop {
|
|
7682
|
-
margin-
|
|
7775
|
+
margin-right: 50%;
|
|
7683
7776
|
}
|
|
7684
7777
|
.column.is-offset-one-third-desktop {
|
|
7685
|
-
margin-
|
|
7778
|
+
margin-right: 33.3333%;
|
|
7686
7779
|
}
|
|
7687
7780
|
.column.is-offset-one-quarter-desktop {
|
|
7688
|
-
margin-
|
|
7781
|
+
margin-right: 25%;
|
|
7689
7782
|
}
|
|
7690
7783
|
.column.is-offset-one-fifth-desktop {
|
|
7691
|
-
margin-
|
|
7784
|
+
margin-right: 20%;
|
|
7692
7785
|
}
|
|
7693
7786
|
.column.is-offset-two-fifths-desktop {
|
|
7694
|
-
margin-
|
|
7787
|
+
margin-right: 40%;
|
|
7695
7788
|
}
|
|
7696
7789
|
.column.is-offset-three-fifths-desktop {
|
|
7697
|
-
margin-
|
|
7790
|
+
margin-right: 60%;
|
|
7698
7791
|
}
|
|
7699
7792
|
.column.is-offset-four-fifths-desktop {
|
|
7700
|
-
margin-
|
|
7793
|
+
margin-right: 80%;
|
|
7701
7794
|
}
|
|
7702
7795
|
.column.is-0-desktop {
|
|
7703
7796
|
flex: none;
|
|
7704
7797
|
width: 0%;
|
|
7705
7798
|
}
|
|
7706
7799
|
.column.is-offset-0-desktop {
|
|
7707
|
-
margin-
|
|
7800
|
+
margin-right: 0%;
|
|
7708
7801
|
}
|
|
7709
7802
|
.column.is-1-desktop {
|
|
7710
7803
|
flex: none;
|
|
7711
7804
|
width: 8.33333%;
|
|
7712
7805
|
}
|
|
7713
7806
|
.column.is-offset-1-desktop {
|
|
7714
|
-
margin-
|
|
7807
|
+
margin-right: 8.33333%;
|
|
7715
7808
|
}
|
|
7716
7809
|
.column.is-2-desktop {
|
|
7717
7810
|
flex: none;
|
|
7718
7811
|
width: 16.66667%;
|
|
7719
7812
|
}
|
|
7720
7813
|
.column.is-offset-2-desktop {
|
|
7721
|
-
margin-
|
|
7814
|
+
margin-right: 16.66667%;
|
|
7722
7815
|
}
|
|
7723
7816
|
.column.is-3-desktop {
|
|
7724
7817
|
flex: none;
|
|
7725
7818
|
width: 25%;
|
|
7726
7819
|
}
|
|
7727
7820
|
.column.is-offset-3-desktop {
|
|
7728
|
-
margin-
|
|
7821
|
+
margin-right: 25%;
|
|
7729
7822
|
}
|
|
7730
7823
|
.column.is-4-desktop {
|
|
7731
7824
|
flex: none;
|
|
7732
7825
|
width: 33.33333%;
|
|
7733
7826
|
}
|
|
7734
7827
|
.column.is-offset-4-desktop {
|
|
7735
|
-
margin-
|
|
7828
|
+
margin-right: 33.33333%;
|
|
7736
7829
|
}
|
|
7737
7830
|
.column.is-5-desktop {
|
|
7738
7831
|
flex: none;
|
|
7739
7832
|
width: 41.66667%;
|
|
7740
7833
|
}
|
|
7741
7834
|
.column.is-offset-5-desktop {
|
|
7742
|
-
margin-
|
|
7835
|
+
margin-right: 41.66667%;
|
|
7743
7836
|
}
|
|
7744
7837
|
.column.is-6-desktop {
|
|
7745
7838
|
flex: none;
|
|
7746
7839
|
width: 50%;
|
|
7747
7840
|
}
|
|
7748
7841
|
.column.is-offset-6-desktop {
|
|
7749
|
-
margin-
|
|
7842
|
+
margin-right: 50%;
|
|
7750
7843
|
}
|
|
7751
7844
|
.column.is-7-desktop {
|
|
7752
7845
|
flex: none;
|
|
7753
7846
|
width: 58.33333%;
|
|
7754
7847
|
}
|
|
7755
7848
|
.column.is-offset-7-desktop {
|
|
7756
|
-
margin-
|
|
7849
|
+
margin-right: 58.33333%;
|
|
7757
7850
|
}
|
|
7758
7851
|
.column.is-8-desktop {
|
|
7759
7852
|
flex: none;
|
|
7760
7853
|
width: 66.66667%;
|
|
7761
7854
|
}
|
|
7762
7855
|
.column.is-offset-8-desktop {
|
|
7763
|
-
margin-
|
|
7856
|
+
margin-right: 66.66667%;
|
|
7764
7857
|
}
|
|
7765
7858
|
.column.is-9-desktop {
|
|
7766
7859
|
flex: none;
|
|
7767
7860
|
width: 75%;
|
|
7768
7861
|
}
|
|
7769
7862
|
.column.is-offset-9-desktop {
|
|
7770
|
-
margin-
|
|
7863
|
+
margin-right: 75%;
|
|
7771
7864
|
}
|
|
7772
7865
|
.column.is-10-desktop {
|
|
7773
7866
|
flex: none;
|
|
7774
7867
|
width: 83.33333%;
|
|
7775
7868
|
}
|
|
7776
7869
|
.column.is-offset-10-desktop {
|
|
7777
|
-
margin-
|
|
7870
|
+
margin-right: 83.33333%;
|
|
7778
7871
|
}
|
|
7779
7872
|
.column.is-11-desktop {
|
|
7780
7873
|
flex: none;
|
|
7781
7874
|
width: 91.66667%;
|
|
7782
7875
|
}
|
|
7783
7876
|
.column.is-offset-11-desktop {
|
|
7784
|
-
margin-
|
|
7877
|
+
margin-right: 91.66667%;
|
|
7785
7878
|
}
|
|
7786
7879
|
.column.is-12-desktop {
|
|
7787
7880
|
flex: none;
|
|
7788
7881
|
width: 100%;
|
|
7789
7882
|
}
|
|
7790
7883
|
.column.is-offset-12-desktop {
|
|
7791
|
-
margin-
|
|
7884
|
+
margin-right: 100%;
|
|
7792
7885
|
}
|
|
7793
7886
|
}
|
|
7794
7887
|
|
|
7795
7888
|
@media screen and (min-width: 1216px) {
|
|
7796
7889
|
.column.is-narrow-widescreen {
|
|
7797
7890
|
flex: none;
|
|
7891
|
+
width: unset;
|
|
7798
7892
|
}
|
|
7799
7893
|
.column.is-full-widescreen {
|
|
7800
7894
|
flex: none;
|
|
@@ -7837,128 +7931,129 @@ label.panel-block:hover {
|
|
|
7837
7931
|
width: 80%;
|
|
7838
7932
|
}
|
|
7839
7933
|
.column.is-offset-three-quarters-widescreen {
|
|
7840
|
-
margin-
|
|
7934
|
+
margin-right: 75%;
|
|
7841
7935
|
}
|
|
7842
7936
|
.column.is-offset-two-thirds-widescreen {
|
|
7843
|
-
margin-
|
|
7937
|
+
margin-right: 66.6666%;
|
|
7844
7938
|
}
|
|
7845
7939
|
.column.is-offset-half-widescreen {
|
|
7846
|
-
margin-
|
|
7940
|
+
margin-right: 50%;
|
|
7847
7941
|
}
|
|
7848
7942
|
.column.is-offset-one-third-widescreen {
|
|
7849
|
-
margin-
|
|
7943
|
+
margin-right: 33.3333%;
|
|
7850
7944
|
}
|
|
7851
7945
|
.column.is-offset-one-quarter-widescreen {
|
|
7852
|
-
margin-
|
|
7946
|
+
margin-right: 25%;
|
|
7853
7947
|
}
|
|
7854
7948
|
.column.is-offset-one-fifth-widescreen {
|
|
7855
|
-
margin-
|
|
7949
|
+
margin-right: 20%;
|
|
7856
7950
|
}
|
|
7857
7951
|
.column.is-offset-two-fifths-widescreen {
|
|
7858
|
-
margin-
|
|
7952
|
+
margin-right: 40%;
|
|
7859
7953
|
}
|
|
7860
7954
|
.column.is-offset-three-fifths-widescreen {
|
|
7861
|
-
margin-
|
|
7955
|
+
margin-right: 60%;
|
|
7862
7956
|
}
|
|
7863
7957
|
.column.is-offset-four-fifths-widescreen {
|
|
7864
|
-
margin-
|
|
7958
|
+
margin-right: 80%;
|
|
7865
7959
|
}
|
|
7866
7960
|
.column.is-0-widescreen {
|
|
7867
7961
|
flex: none;
|
|
7868
7962
|
width: 0%;
|
|
7869
7963
|
}
|
|
7870
7964
|
.column.is-offset-0-widescreen {
|
|
7871
|
-
margin-
|
|
7965
|
+
margin-right: 0%;
|
|
7872
7966
|
}
|
|
7873
7967
|
.column.is-1-widescreen {
|
|
7874
7968
|
flex: none;
|
|
7875
7969
|
width: 8.33333%;
|
|
7876
7970
|
}
|
|
7877
7971
|
.column.is-offset-1-widescreen {
|
|
7878
|
-
margin-
|
|
7972
|
+
margin-right: 8.33333%;
|
|
7879
7973
|
}
|
|
7880
7974
|
.column.is-2-widescreen {
|
|
7881
7975
|
flex: none;
|
|
7882
7976
|
width: 16.66667%;
|
|
7883
7977
|
}
|
|
7884
7978
|
.column.is-offset-2-widescreen {
|
|
7885
|
-
margin-
|
|
7979
|
+
margin-right: 16.66667%;
|
|
7886
7980
|
}
|
|
7887
7981
|
.column.is-3-widescreen {
|
|
7888
7982
|
flex: none;
|
|
7889
7983
|
width: 25%;
|
|
7890
7984
|
}
|
|
7891
7985
|
.column.is-offset-3-widescreen {
|
|
7892
|
-
margin-
|
|
7986
|
+
margin-right: 25%;
|
|
7893
7987
|
}
|
|
7894
7988
|
.column.is-4-widescreen {
|
|
7895
7989
|
flex: none;
|
|
7896
7990
|
width: 33.33333%;
|
|
7897
7991
|
}
|
|
7898
7992
|
.column.is-offset-4-widescreen {
|
|
7899
|
-
margin-
|
|
7993
|
+
margin-right: 33.33333%;
|
|
7900
7994
|
}
|
|
7901
7995
|
.column.is-5-widescreen {
|
|
7902
7996
|
flex: none;
|
|
7903
7997
|
width: 41.66667%;
|
|
7904
7998
|
}
|
|
7905
7999
|
.column.is-offset-5-widescreen {
|
|
7906
|
-
margin-
|
|
8000
|
+
margin-right: 41.66667%;
|
|
7907
8001
|
}
|
|
7908
8002
|
.column.is-6-widescreen {
|
|
7909
8003
|
flex: none;
|
|
7910
8004
|
width: 50%;
|
|
7911
8005
|
}
|
|
7912
8006
|
.column.is-offset-6-widescreen {
|
|
7913
|
-
margin-
|
|
8007
|
+
margin-right: 50%;
|
|
7914
8008
|
}
|
|
7915
8009
|
.column.is-7-widescreen {
|
|
7916
8010
|
flex: none;
|
|
7917
8011
|
width: 58.33333%;
|
|
7918
8012
|
}
|
|
7919
8013
|
.column.is-offset-7-widescreen {
|
|
7920
|
-
margin-
|
|
8014
|
+
margin-right: 58.33333%;
|
|
7921
8015
|
}
|
|
7922
8016
|
.column.is-8-widescreen {
|
|
7923
8017
|
flex: none;
|
|
7924
8018
|
width: 66.66667%;
|
|
7925
8019
|
}
|
|
7926
8020
|
.column.is-offset-8-widescreen {
|
|
7927
|
-
margin-
|
|
8021
|
+
margin-right: 66.66667%;
|
|
7928
8022
|
}
|
|
7929
8023
|
.column.is-9-widescreen {
|
|
7930
8024
|
flex: none;
|
|
7931
8025
|
width: 75%;
|
|
7932
8026
|
}
|
|
7933
8027
|
.column.is-offset-9-widescreen {
|
|
7934
|
-
margin-
|
|
8028
|
+
margin-right: 75%;
|
|
7935
8029
|
}
|
|
7936
8030
|
.column.is-10-widescreen {
|
|
7937
8031
|
flex: none;
|
|
7938
8032
|
width: 83.33333%;
|
|
7939
8033
|
}
|
|
7940
8034
|
.column.is-offset-10-widescreen {
|
|
7941
|
-
margin-
|
|
8035
|
+
margin-right: 83.33333%;
|
|
7942
8036
|
}
|
|
7943
8037
|
.column.is-11-widescreen {
|
|
7944
8038
|
flex: none;
|
|
7945
8039
|
width: 91.66667%;
|
|
7946
8040
|
}
|
|
7947
8041
|
.column.is-offset-11-widescreen {
|
|
7948
|
-
margin-
|
|
8042
|
+
margin-right: 91.66667%;
|
|
7949
8043
|
}
|
|
7950
8044
|
.column.is-12-widescreen {
|
|
7951
8045
|
flex: none;
|
|
7952
8046
|
width: 100%;
|
|
7953
8047
|
}
|
|
7954
8048
|
.column.is-offset-12-widescreen {
|
|
7955
|
-
margin-
|
|
8049
|
+
margin-right: 100%;
|
|
7956
8050
|
}
|
|
7957
8051
|
}
|
|
7958
8052
|
|
|
7959
8053
|
@media screen and (min-width: 1408px) {
|
|
7960
8054
|
.column.is-narrow-fullhd {
|
|
7961
8055
|
flex: none;
|
|
8056
|
+
width: unset;
|
|
7962
8057
|
}
|
|
7963
8058
|
.column.is-full-fullhd {
|
|
7964
8059
|
flex: none;
|
|
@@ -8001,128 +8096,128 @@ label.panel-block:hover {
|
|
|
8001
8096
|
width: 80%;
|
|
8002
8097
|
}
|
|
8003
8098
|
.column.is-offset-three-quarters-fullhd {
|
|
8004
|
-
margin-
|
|
8099
|
+
margin-right: 75%;
|
|
8005
8100
|
}
|
|
8006
8101
|
.column.is-offset-two-thirds-fullhd {
|
|
8007
|
-
margin-
|
|
8102
|
+
margin-right: 66.6666%;
|
|
8008
8103
|
}
|
|
8009
8104
|
.column.is-offset-half-fullhd {
|
|
8010
|
-
margin-
|
|
8105
|
+
margin-right: 50%;
|
|
8011
8106
|
}
|
|
8012
8107
|
.column.is-offset-one-third-fullhd {
|
|
8013
|
-
margin-
|
|
8108
|
+
margin-right: 33.3333%;
|
|
8014
8109
|
}
|
|
8015
8110
|
.column.is-offset-one-quarter-fullhd {
|
|
8016
|
-
margin-
|
|
8111
|
+
margin-right: 25%;
|
|
8017
8112
|
}
|
|
8018
8113
|
.column.is-offset-one-fifth-fullhd {
|
|
8019
|
-
margin-
|
|
8114
|
+
margin-right: 20%;
|
|
8020
8115
|
}
|
|
8021
8116
|
.column.is-offset-two-fifths-fullhd {
|
|
8022
|
-
margin-
|
|
8117
|
+
margin-right: 40%;
|
|
8023
8118
|
}
|
|
8024
8119
|
.column.is-offset-three-fifths-fullhd {
|
|
8025
|
-
margin-
|
|
8120
|
+
margin-right: 60%;
|
|
8026
8121
|
}
|
|
8027
8122
|
.column.is-offset-four-fifths-fullhd {
|
|
8028
|
-
margin-
|
|
8123
|
+
margin-right: 80%;
|
|
8029
8124
|
}
|
|
8030
8125
|
.column.is-0-fullhd {
|
|
8031
8126
|
flex: none;
|
|
8032
8127
|
width: 0%;
|
|
8033
8128
|
}
|
|
8034
8129
|
.column.is-offset-0-fullhd {
|
|
8035
|
-
margin-
|
|
8130
|
+
margin-right: 0%;
|
|
8036
8131
|
}
|
|
8037
8132
|
.column.is-1-fullhd {
|
|
8038
8133
|
flex: none;
|
|
8039
8134
|
width: 8.33333%;
|
|
8040
8135
|
}
|
|
8041
8136
|
.column.is-offset-1-fullhd {
|
|
8042
|
-
margin-
|
|
8137
|
+
margin-right: 8.33333%;
|
|
8043
8138
|
}
|
|
8044
8139
|
.column.is-2-fullhd {
|
|
8045
8140
|
flex: none;
|
|
8046
8141
|
width: 16.66667%;
|
|
8047
8142
|
}
|
|
8048
8143
|
.column.is-offset-2-fullhd {
|
|
8049
|
-
margin-
|
|
8144
|
+
margin-right: 16.66667%;
|
|
8050
8145
|
}
|
|
8051
8146
|
.column.is-3-fullhd {
|
|
8052
8147
|
flex: none;
|
|
8053
8148
|
width: 25%;
|
|
8054
8149
|
}
|
|
8055
8150
|
.column.is-offset-3-fullhd {
|
|
8056
|
-
margin-
|
|
8151
|
+
margin-right: 25%;
|
|
8057
8152
|
}
|
|
8058
8153
|
.column.is-4-fullhd {
|
|
8059
8154
|
flex: none;
|
|
8060
8155
|
width: 33.33333%;
|
|
8061
8156
|
}
|
|
8062
8157
|
.column.is-offset-4-fullhd {
|
|
8063
|
-
margin-
|
|
8158
|
+
margin-right: 33.33333%;
|
|
8064
8159
|
}
|
|
8065
8160
|
.column.is-5-fullhd {
|
|
8066
8161
|
flex: none;
|
|
8067
8162
|
width: 41.66667%;
|
|
8068
8163
|
}
|
|
8069
8164
|
.column.is-offset-5-fullhd {
|
|
8070
|
-
margin-
|
|
8165
|
+
margin-right: 41.66667%;
|
|
8071
8166
|
}
|
|
8072
8167
|
.column.is-6-fullhd {
|
|
8073
8168
|
flex: none;
|
|
8074
8169
|
width: 50%;
|
|
8075
8170
|
}
|
|
8076
8171
|
.column.is-offset-6-fullhd {
|
|
8077
|
-
margin-
|
|
8172
|
+
margin-right: 50%;
|
|
8078
8173
|
}
|
|
8079
8174
|
.column.is-7-fullhd {
|
|
8080
8175
|
flex: none;
|
|
8081
8176
|
width: 58.33333%;
|
|
8082
8177
|
}
|
|
8083
8178
|
.column.is-offset-7-fullhd {
|
|
8084
|
-
margin-
|
|
8179
|
+
margin-right: 58.33333%;
|
|
8085
8180
|
}
|
|
8086
8181
|
.column.is-8-fullhd {
|
|
8087
8182
|
flex: none;
|
|
8088
8183
|
width: 66.66667%;
|
|
8089
8184
|
}
|
|
8090
8185
|
.column.is-offset-8-fullhd {
|
|
8091
|
-
margin-
|
|
8186
|
+
margin-right: 66.66667%;
|
|
8092
8187
|
}
|
|
8093
8188
|
.column.is-9-fullhd {
|
|
8094
8189
|
flex: none;
|
|
8095
8190
|
width: 75%;
|
|
8096
8191
|
}
|
|
8097
8192
|
.column.is-offset-9-fullhd {
|
|
8098
|
-
margin-
|
|
8193
|
+
margin-right: 75%;
|
|
8099
8194
|
}
|
|
8100
8195
|
.column.is-10-fullhd {
|
|
8101
8196
|
flex: none;
|
|
8102
8197
|
width: 83.33333%;
|
|
8103
8198
|
}
|
|
8104
8199
|
.column.is-offset-10-fullhd {
|
|
8105
|
-
margin-
|
|
8200
|
+
margin-right: 83.33333%;
|
|
8106
8201
|
}
|
|
8107
8202
|
.column.is-11-fullhd {
|
|
8108
8203
|
flex: none;
|
|
8109
8204
|
width: 91.66667%;
|
|
8110
8205
|
}
|
|
8111
8206
|
.column.is-offset-11-fullhd {
|
|
8112
|
-
margin-
|
|
8207
|
+
margin-right: 91.66667%;
|
|
8113
8208
|
}
|
|
8114
8209
|
.column.is-12-fullhd {
|
|
8115
8210
|
flex: none;
|
|
8116
8211
|
width: 100%;
|
|
8117
8212
|
}
|
|
8118
8213
|
.column.is-offset-12-fullhd {
|
|
8119
|
-
margin-
|
|
8214
|
+
margin-right: 100%;
|
|
8120
8215
|
}
|
|
8121
8216
|
}
|
|
8122
8217
|
|
|
8123
8218
|
.columns {
|
|
8124
|
-
margin-left: -0.75rem;
|
|
8125
8219
|
margin-right: -0.75rem;
|
|
8220
|
+
margin-left: -0.75rem;
|
|
8126
8221
|
margin-top: -0.75rem;
|
|
8127
8222
|
}
|
|
8128
8223
|
|
|
@@ -8139,8 +8234,8 @@ label.panel-block:hover {
|
|
|
8139
8234
|
}
|
|
8140
8235
|
|
|
8141
8236
|
.columns.is-gapless {
|
|
8142
|
-
margin-left: 0;
|
|
8143
8237
|
margin-right: 0;
|
|
8238
|
+
margin-left: 0;
|
|
8144
8239
|
margin-top: 0;
|
|
8145
8240
|
}
|
|
8146
8241
|
|
|
@@ -8183,11 +8278,11 @@ label.panel-block:hover {
|
|
|
8183
8278
|
|
|
8184
8279
|
.columns.is-variable {
|
|
8185
8280
|
--columnGap: 0.75rem;
|
|
8186
|
-
margin-left: calc(-1 * var(--columnGap));
|
|
8187
8281
|
margin-right: calc(-1 * var(--columnGap));
|
|
8282
|
+
margin-left: calc(-1 * var(--columnGap));
|
|
8188
8283
|
}
|
|
8189
8284
|
|
|
8190
|
-
.columns.is-variable .column {
|
|
8285
|
+
.columns.is-variable > .column {
|
|
8191
8286
|
padding-left: var(--columnGap);
|
|
8192
8287
|
padding-right: var(--columnGap);
|
|
8193
8288
|
}
|
|
@@ -8809,6 +8904,7 @@ label.panel-block:hover {
|
|
|
8809
8904
|
}
|
|
8810
8905
|
}
|
|
8811
8906
|
|
|
8907
|
+
/* Bulma Helpers */
|
|
8812
8908
|
.has-text-white {
|
|
8813
8909
|
color: white !important;
|
|
8814
8910
|
}
|
|
@@ -9145,6 +9241,222 @@ a.has-text-danger-dark:hover, a.has-text-danger-dark:focus {
|
|
|
9145
9241
|
background-color: #fafafa !important;
|
|
9146
9242
|
}
|
|
9147
9243
|
|
|
9244
|
+
.is-flex-direction-row {
|
|
9245
|
+
flex-direction: row !important;
|
|
9246
|
+
}
|
|
9247
|
+
|
|
9248
|
+
.is-flex-direction-row-reverse {
|
|
9249
|
+
flex-direction: row-reverse !important;
|
|
9250
|
+
}
|
|
9251
|
+
|
|
9252
|
+
.is-flex-direction-column {
|
|
9253
|
+
flex-direction: column !important;
|
|
9254
|
+
}
|
|
9255
|
+
|
|
9256
|
+
.is-flex-direction-column-reverse {
|
|
9257
|
+
flex-direction: column-reverse !important;
|
|
9258
|
+
}
|
|
9259
|
+
|
|
9260
|
+
.is-flex-wrap-nowrap {
|
|
9261
|
+
flex-wrap: nowrap !important;
|
|
9262
|
+
}
|
|
9263
|
+
|
|
9264
|
+
.is-flex-wrap-wrap {
|
|
9265
|
+
flex-wrap: wrap !important;
|
|
9266
|
+
}
|
|
9267
|
+
|
|
9268
|
+
.is-flex-wrap-wrap-reverse {
|
|
9269
|
+
flex-wrap: wrap-reverse !important;
|
|
9270
|
+
}
|
|
9271
|
+
|
|
9272
|
+
.is-justify-content-flex-start {
|
|
9273
|
+
justify-content: flex-start !important;
|
|
9274
|
+
}
|
|
9275
|
+
|
|
9276
|
+
.is-justify-content-flex-end {
|
|
9277
|
+
justify-content: flex-end !important;
|
|
9278
|
+
}
|
|
9279
|
+
|
|
9280
|
+
.is-justify-content-center {
|
|
9281
|
+
justify-content: center !important;
|
|
9282
|
+
}
|
|
9283
|
+
|
|
9284
|
+
.is-justify-content-space-between {
|
|
9285
|
+
justify-content: space-between !important;
|
|
9286
|
+
}
|
|
9287
|
+
|
|
9288
|
+
.is-justify-content-space-around {
|
|
9289
|
+
justify-content: space-around !important;
|
|
9290
|
+
}
|
|
9291
|
+
|
|
9292
|
+
.is-justify-content-space-evenly {
|
|
9293
|
+
justify-content: space-evenly !important;
|
|
9294
|
+
}
|
|
9295
|
+
|
|
9296
|
+
.is-justify-content-start {
|
|
9297
|
+
justify-content: start !important;
|
|
9298
|
+
}
|
|
9299
|
+
|
|
9300
|
+
.is-justify-content-end {
|
|
9301
|
+
justify-content: end !important;
|
|
9302
|
+
}
|
|
9303
|
+
|
|
9304
|
+
.is-justify-content-left {
|
|
9305
|
+
justify-content: left !important;
|
|
9306
|
+
}
|
|
9307
|
+
|
|
9308
|
+
.is-justify-content-right {
|
|
9309
|
+
justify-content: right !important;
|
|
9310
|
+
}
|
|
9311
|
+
|
|
9312
|
+
.is-align-content-flex-start {
|
|
9313
|
+
align-content: flex-start !important;
|
|
9314
|
+
}
|
|
9315
|
+
|
|
9316
|
+
.is-align-content-flex-end {
|
|
9317
|
+
align-content: flex-end !important;
|
|
9318
|
+
}
|
|
9319
|
+
|
|
9320
|
+
.is-align-content-center {
|
|
9321
|
+
align-content: center !important;
|
|
9322
|
+
}
|
|
9323
|
+
|
|
9324
|
+
.is-align-content-space-between {
|
|
9325
|
+
align-content: space-between !important;
|
|
9326
|
+
}
|
|
9327
|
+
|
|
9328
|
+
.is-align-content-space-around {
|
|
9329
|
+
align-content: space-around !important;
|
|
9330
|
+
}
|
|
9331
|
+
|
|
9332
|
+
.is-align-content-space-evenly {
|
|
9333
|
+
align-content: space-evenly !important;
|
|
9334
|
+
}
|
|
9335
|
+
|
|
9336
|
+
.is-align-content-stretch {
|
|
9337
|
+
align-content: stretch !important;
|
|
9338
|
+
}
|
|
9339
|
+
|
|
9340
|
+
.is-align-content-start {
|
|
9341
|
+
align-content: start !important;
|
|
9342
|
+
}
|
|
9343
|
+
|
|
9344
|
+
.is-align-content-end {
|
|
9345
|
+
align-content: end !important;
|
|
9346
|
+
}
|
|
9347
|
+
|
|
9348
|
+
.is-align-content-baseline {
|
|
9349
|
+
align-content: baseline !important;
|
|
9350
|
+
}
|
|
9351
|
+
|
|
9352
|
+
.is-align-items-stretch {
|
|
9353
|
+
align-items: stretch !important;
|
|
9354
|
+
}
|
|
9355
|
+
|
|
9356
|
+
.is-align-items-flex-start {
|
|
9357
|
+
align-items: flex-start !important;
|
|
9358
|
+
}
|
|
9359
|
+
|
|
9360
|
+
.is-align-items-flex-end {
|
|
9361
|
+
align-items: flex-end !important;
|
|
9362
|
+
}
|
|
9363
|
+
|
|
9364
|
+
.is-align-items-center {
|
|
9365
|
+
align-items: center !important;
|
|
9366
|
+
}
|
|
9367
|
+
|
|
9368
|
+
.is-align-items-baseline {
|
|
9369
|
+
align-items: baseline !important;
|
|
9370
|
+
}
|
|
9371
|
+
|
|
9372
|
+
.is-align-items-start {
|
|
9373
|
+
align-items: start !important;
|
|
9374
|
+
}
|
|
9375
|
+
|
|
9376
|
+
.is-align-items-end {
|
|
9377
|
+
align-items: end !important;
|
|
9378
|
+
}
|
|
9379
|
+
|
|
9380
|
+
.is-align-items-self-start {
|
|
9381
|
+
align-items: self-start !important;
|
|
9382
|
+
}
|
|
9383
|
+
|
|
9384
|
+
.is-align-items-self-end {
|
|
9385
|
+
align-items: self-end !important;
|
|
9386
|
+
}
|
|
9387
|
+
|
|
9388
|
+
.is-align-self-auto {
|
|
9389
|
+
align-self: auto !important;
|
|
9390
|
+
}
|
|
9391
|
+
|
|
9392
|
+
.is-align-self-flex-start {
|
|
9393
|
+
align-self: flex-start !important;
|
|
9394
|
+
}
|
|
9395
|
+
|
|
9396
|
+
.is-align-self-flex-end {
|
|
9397
|
+
align-self: flex-end !important;
|
|
9398
|
+
}
|
|
9399
|
+
|
|
9400
|
+
.is-align-self-center {
|
|
9401
|
+
align-self: center !important;
|
|
9402
|
+
}
|
|
9403
|
+
|
|
9404
|
+
.is-align-self-baseline {
|
|
9405
|
+
align-self: baseline !important;
|
|
9406
|
+
}
|
|
9407
|
+
|
|
9408
|
+
.is-align-self-stretch {
|
|
9409
|
+
align-self: stretch !important;
|
|
9410
|
+
}
|
|
9411
|
+
|
|
9412
|
+
.is-flex-grow-0 {
|
|
9413
|
+
flex-grow: 0 !important;
|
|
9414
|
+
}
|
|
9415
|
+
|
|
9416
|
+
.is-flex-grow-1 {
|
|
9417
|
+
flex-grow: 1 !important;
|
|
9418
|
+
}
|
|
9419
|
+
|
|
9420
|
+
.is-flex-grow-2 {
|
|
9421
|
+
flex-grow: 2 !important;
|
|
9422
|
+
}
|
|
9423
|
+
|
|
9424
|
+
.is-flex-grow-3 {
|
|
9425
|
+
flex-grow: 3 !important;
|
|
9426
|
+
}
|
|
9427
|
+
|
|
9428
|
+
.is-flex-grow-4 {
|
|
9429
|
+
flex-grow: 4 !important;
|
|
9430
|
+
}
|
|
9431
|
+
|
|
9432
|
+
.is-flex-grow-5 {
|
|
9433
|
+
flex-grow: 5 !important;
|
|
9434
|
+
}
|
|
9435
|
+
|
|
9436
|
+
.is-flex-shrink-0 {
|
|
9437
|
+
flex-shrink: 0 !important;
|
|
9438
|
+
}
|
|
9439
|
+
|
|
9440
|
+
.is-flex-shrink-1 {
|
|
9441
|
+
flex-shrink: 1 !important;
|
|
9442
|
+
}
|
|
9443
|
+
|
|
9444
|
+
.is-flex-shrink-2 {
|
|
9445
|
+
flex-shrink: 2 !important;
|
|
9446
|
+
}
|
|
9447
|
+
|
|
9448
|
+
.is-flex-shrink-3 {
|
|
9449
|
+
flex-shrink: 3 !important;
|
|
9450
|
+
}
|
|
9451
|
+
|
|
9452
|
+
.is-flex-shrink-4 {
|
|
9453
|
+
flex-shrink: 4 !important;
|
|
9454
|
+
}
|
|
9455
|
+
|
|
9456
|
+
.is-flex-shrink-5 {
|
|
9457
|
+
flex-shrink: 5 !important;
|
|
9458
|
+
}
|
|
9459
|
+
|
|
9148
9460
|
.is-clearfix::after {
|
|
9149
9461
|
clear: both;
|
|
9150
9462
|
content: " ";
|
|
@@ -9167,6 +9479,11 @@ a.has-text-danger-dark:hover, a.has-text-danger-dark:focus {
|
|
|
9167
9479
|
box-shadow: none !important;
|
|
9168
9480
|
}
|
|
9169
9481
|
|
|
9482
|
+
.is-clickable {
|
|
9483
|
+
cursor: pointer !important;
|
|
9484
|
+
pointer-events: all !important;
|
|
9485
|
+
}
|
|
9486
|
+
|
|
9170
9487
|
.is-clipped {
|
|
9171
9488
|
overflow: hidden !important;
|
|
9172
9489
|
}
|
|
@@ -9183,6 +9500,10 @@ a.has-text-danger-dark:hover, a.has-text-danger-dark:focus {
|
|
|
9183
9500
|
padding: 0 !important;
|
|
9184
9501
|
}
|
|
9185
9502
|
|
|
9503
|
+
.m-0 {
|
|
9504
|
+
margin: 0 !important;
|
|
9505
|
+
}
|
|
9506
|
+
|
|
9186
9507
|
.mt-0 {
|
|
9187
9508
|
margin-top: 0 !important;
|
|
9188
9509
|
}
|
|
@@ -9209,6 +9530,10 @@ a.has-text-danger-dark:hover, a.has-text-danger-dark:focus {
|
|
|
9209
9530
|
margin-bottom: 0 !important;
|
|
9210
9531
|
}
|
|
9211
9532
|
|
|
9533
|
+
.m-1 {
|
|
9534
|
+
margin: 0.25rem !important;
|
|
9535
|
+
}
|
|
9536
|
+
|
|
9212
9537
|
.mt-1 {
|
|
9213
9538
|
margin-top: 0.25rem !important;
|
|
9214
9539
|
}
|
|
@@ -9235,6 +9560,10 @@ a.has-text-danger-dark:hover, a.has-text-danger-dark:focus {
|
|
|
9235
9560
|
margin-bottom: 0.25rem !important;
|
|
9236
9561
|
}
|
|
9237
9562
|
|
|
9563
|
+
.m-2 {
|
|
9564
|
+
margin: 0.5rem !important;
|
|
9565
|
+
}
|
|
9566
|
+
|
|
9238
9567
|
.mt-2 {
|
|
9239
9568
|
margin-top: 0.5rem !important;
|
|
9240
9569
|
}
|
|
@@ -9261,6 +9590,10 @@ a.has-text-danger-dark:hover, a.has-text-danger-dark:focus {
|
|
|
9261
9590
|
margin-bottom: 0.5rem !important;
|
|
9262
9591
|
}
|
|
9263
9592
|
|
|
9593
|
+
.m-3 {
|
|
9594
|
+
margin: 0.75rem !important;
|
|
9595
|
+
}
|
|
9596
|
+
|
|
9264
9597
|
.mt-3 {
|
|
9265
9598
|
margin-top: 0.75rem !important;
|
|
9266
9599
|
}
|
|
@@ -9287,6 +9620,10 @@ a.has-text-danger-dark:hover, a.has-text-danger-dark:focus {
|
|
|
9287
9620
|
margin-bottom: 0.75rem !important;
|
|
9288
9621
|
}
|
|
9289
9622
|
|
|
9623
|
+
.m-4 {
|
|
9624
|
+
margin: 1rem !important;
|
|
9625
|
+
}
|
|
9626
|
+
|
|
9290
9627
|
.mt-4 {
|
|
9291
9628
|
margin-top: 1rem !important;
|
|
9292
9629
|
}
|
|
@@ -9313,6 +9650,10 @@ a.has-text-danger-dark:hover, a.has-text-danger-dark:focus {
|
|
|
9313
9650
|
margin-bottom: 1rem !important;
|
|
9314
9651
|
}
|
|
9315
9652
|
|
|
9653
|
+
.m-5 {
|
|
9654
|
+
margin: 1.5rem !important;
|
|
9655
|
+
}
|
|
9656
|
+
|
|
9316
9657
|
.mt-5 {
|
|
9317
9658
|
margin-top: 1.5rem !important;
|
|
9318
9659
|
}
|
|
@@ -9339,6 +9680,10 @@ a.has-text-danger-dark:hover, a.has-text-danger-dark:focus {
|
|
|
9339
9680
|
margin-bottom: 1.5rem !important;
|
|
9340
9681
|
}
|
|
9341
9682
|
|
|
9683
|
+
.m-6 {
|
|
9684
|
+
margin: 3rem !important;
|
|
9685
|
+
}
|
|
9686
|
+
|
|
9342
9687
|
.mt-6 {
|
|
9343
9688
|
margin-top: 3rem !important;
|
|
9344
9689
|
}
|
|
@@ -9365,6 +9710,10 @@ a.has-text-danger-dark:hover, a.has-text-danger-dark:focus {
|
|
|
9365
9710
|
margin-bottom: 3rem !important;
|
|
9366
9711
|
}
|
|
9367
9712
|
|
|
9713
|
+
.p-0 {
|
|
9714
|
+
padding: 0 !important;
|
|
9715
|
+
}
|
|
9716
|
+
|
|
9368
9717
|
.pt-0 {
|
|
9369
9718
|
padding-top: 0 !important;
|
|
9370
9719
|
}
|
|
@@ -9391,6 +9740,10 @@ a.has-text-danger-dark:hover, a.has-text-danger-dark:focus {
|
|
|
9391
9740
|
padding-bottom: 0 !important;
|
|
9392
9741
|
}
|
|
9393
9742
|
|
|
9743
|
+
.p-1 {
|
|
9744
|
+
padding: 0.25rem !important;
|
|
9745
|
+
}
|
|
9746
|
+
|
|
9394
9747
|
.pt-1 {
|
|
9395
9748
|
padding-top: 0.25rem !important;
|
|
9396
9749
|
}
|
|
@@ -9417,6 +9770,10 @@ a.has-text-danger-dark:hover, a.has-text-danger-dark:focus {
|
|
|
9417
9770
|
padding-bottom: 0.25rem !important;
|
|
9418
9771
|
}
|
|
9419
9772
|
|
|
9773
|
+
.p-2 {
|
|
9774
|
+
padding: 0.5rem !important;
|
|
9775
|
+
}
|
|
9776
|
+
|
|
9420
9777
|
.pt-2 {
|
|
9421
9778
|
padding-top: 0.5rem !important;
|
|
9422
9779
|
}
|
|
@@ -9443,6 +9800,10 @@ a.has-text-danger-dark:hover, a.has-text-danger-dark:focus {
|
|
|
9443
9800
|
padding-bottom: 0.5rem !important;
|
|
9444
9801
|
}
|
|
9445
9802
|
|
|
9803
|
+
.p-3 {
|
|
9804
|
+
padding: 0.75rem !important;
|
|
9805
|
+
}
|
|
9806
|
+
|
|
9446
9807
|
.pt-3 {
|
|
9447
9808
|
padding-top: 0.75rem !important;
|
|
9448
9809
|
}
|
|
@@ -9469,6 +9830,10 @@ a.has-text-danger-dark:hover, a.has-text-danger-dark:focus {
|
|
|
9469
9830
|
padding-bottom: 0.75rem !important;
|
|
9470
9831
|
}
|
|
9471
9832
|
|
|
9833
|
+
.p-4 {
|
|
9834
|
+
padding: 1rem !important;
|
|
9835
|
+
}
|
|
9836
|
+
|
|
9472
9837
|
.pt-4 {
|
|
9473
9838
|
padding-top: 1rem !important;
|
|
9474
9839
|
}
|
|
@@ -9495,6 +9860,10 @@ a.has-text-danger-dark:hover, a.has-text-danger-dark:focus {
|
|
|
9495
9860
|
padding-bottom: 1rem !important;
|
|
9496
9861
|
}
|
|
9497
9862
|
|
|
9863
|
+
.p-5 {
|
|
9864
|
+
padding: 1.5rem !important;
|
|
9865
|
+
}
|
|
9866
|
+
|
|
9498
9867
|
.pt-5 {
|
|
9499
9868
|
padding-top: 1.5rem !important;
|
|
9500
9869
|
}
|
|
@@ -9521,6 +9890,10 @@ a.has-text-danger-dark:hover, a.has-text-danger-dark:focus {
|
|
|
9521
9890
|
padding-bottom: 1.5rem !important;
|
|
9522
9891
|
}
|
|
9523
9892
|
|
|
9893
|
+
.p-6 {
|
|
9894
|
+
padding: 3rem !important;
|
|
9895
|
+
}
|
|
9896
|
+
|
|
9524
9897
|
.pt-6 {
|
|
9525
9898
|
padding-top: 3rem !important;
|
|
9526
9899
|
}
|
|
@@ -10424,6 +10797,7 @@ a.has-text-danger-dark:hover, a.has-text-danger-dark:focus {
|
|
|
10424
10797
|
}
|
|
10425
10798
|
}
|
|
10426
10799
|
|
|
10800
|
+
/* Bulma Layout */
|
|
10427
10801
|
.hero {
|
|
10428
10802
|
align-items: stretch;
|
|
10429
10803
|
display: flex;
|