accrete 0.0.21__py3-none-any.whl → 0.0.23__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (32) hide show
  1. accrete/contrib/sequence/forms.py +2 -2
  2. accrete/contrib/sequence/queries.py +3 -4
  3. accrete/contrib/ui/__init__.py +10 -5
  4. accrete/contrib/ui/components.py +49 -0
  5. accrete/contrib/ui/context.py +284 -0
  6. accrete/contrib/ui/filter.py +16 -17
  7. accrete/contrib/ui/querystring.py +93 -0
  8. accrete/contrib/ui/static/css/accrete.css +225 -162
  9. accrete/contrib/ui/static/css/accrete.css.map +1 -1
  10. accrete/contrib/ui/static/css/accrete.scss +90 -21
  11. accrete/contrib/ui/static/js/filter.js +18 -11
  12. accrete/contrib/ui/templates/ui/detail.html +1 -3
  13. accrete/contrib/ui/templates/ui/layout.html +3 -3
  14. accrete/contrib/ui/templates/ui/list.html +3 -3
  15. accrete/contrib/ui/templates/ui/partials/filter.html +1 -0
  16. accrete/contrib/ui/templates/ui/partials/header.html +1 -1
  17. accrete/contrib/ui/templates/ui/partials/pagination_detail.html +2 -2
  18. accrete/contrib/ui/templates/ui/partials/pagination_list.html +5 -5
  19. accrete/contrib/ui/templates/ui/partials/table_field.html +15 -0
  20. accrete/contrib/ui/templates/ui/partials/table_field_float.html +1 -0
  21. accrete/contrib/ui/templates/ui/partials/table_field_monetary.html +4 -0
  22. accrete/contrib/ui/templates/ui/partials/table_field_string.html +1 -0
  23. accrete/contrib/ui/templates/ui/table.html +13 -4
  24. accrete/contrib/user/templates/user/user_detail.html +9 -9
  25. accrete/contrib/user/templates/user/user_form.html +2 -0
  26. accrete/contrib/user/views.py +2 -2
  27. accrete/queries.py +5 -1
  28. {accrete-0.0.21.dist-info → accrete-0.0.23.dist-info}/METADATA +1 -1
  29. {accrete-0.0.21.dist-info → accrete-0.0.23.dist-info}/RECORD +31 -25
  30. accrete/contrib/ui/helper.py +0 -432
  31. {accrete-0.0.21.dist-info → accrete-0.0.23.dist-info}/WHEEL +0 -0
  32. {accrete-0.0.21.dist-info → accrete-0.0.23.dist-info}/licenses/LICENSE +0 -0
@@ -1,21 +1,9 @@
1
1
  @charset "UTF-8";
2
- .columns {
3
- margin: 0 !important;
4
- }
5
-
6
- .columns:last-child {
7
- margin-bottom: 0;
8
- }
9
-
10
- .main-columns {
2
+ #main {
11
3
  padding-top: 3rem;
12
4
  height: 100vh;
13
5
  }
14
6
 
15
- .column {
16
- padding: 0 !important;
17
- }
18
-
19
7
  td > a {
20
8
  display: block;
21
9
  width: 100%;
@@ -25,6 +13,18 @@ td, th {
25
13
  font-size: 0.9em;
26
14
  }
27
15
 
16
+ td {
17
+ vertical-align: middle !important;
18
+ }
19
+
20
+ .side-panel {
21
+ min-width: 320px;
22
+ max-width: 320px;
23
+ position: sticky;
24
+ top: 0;
25
+ height: 100%;
26
+ }
27
+
28
28
  .side-panel * .panel-block:not(:last-child) {
29
29
  border-bottom: none !important;
30
30
  }
@@ -131,7 +131,7 @@ select:focus {
131
131
  flex-direction: column;
132
132
  justify-content: end;
133
133
  font-weight: 300;
134
- word-break: break-all;
134
+ word-break: break-word;
135
135
  padding: 12px 12px 12px 0;
136
136
  }
137
137
 
@@ -139,14 +139,77 @@ select:focus {
139
139
  font-weight: 700;
140
140
  }
141
141
 
142
+ .label.is-detail {
143
+ font-weight: 400;
144
+ display: flex;
145
+ flex-direction: column;
146
+ justify-content: space-between;
147
+ }
148
+
149
+ .label.is-detail > div {
150
+ border-bottom: 1px #ccc solid;
151
+ font-weight: 300;
152
+ }
153
+
154
+ .label.is-detail:hover > div {
155
+ border-bottom: 1px #1e1f22 solid;
156
+ font-weight: 300;
157
+ }
158
+
159
+ .label.is-detail * p {
160
+ display: flex;
161
+ flex-direction: column;
162
+ justify-content: center;
163
+ padding-left: 0.5em;
164
+ min-height: 2.5em;
165
+ }
166
+
167
+ .label.is-detail * a.button {
168
+ border: transparent;
169
+ }
170
+
171
+ .label.is-detail * a.button:first-child {
172
+ padding-left: 0;
173
+ padding-right: 0;
174
+ }
175
+
176
+ .responsive-heading {
177
+ display: none;
178
+ }
179
+
180
+ .htmx-settling progress {
181
+ opacity: 0;
182
+ }
183
+
184
+ progress {
185
+ transition: opacity 300ms ease-in;
186
+ }
187
+
142
188
  @media screen and (max-width: 768px) {
143
189
  .label.has-field {
144
190
  padding: 12px 0 12px 0;
145
191
  }
146
- }
147
- @media screen and (max-width: 1407px) {
148
- td, th {
192
+ table.hax-box * td {
193
+ width: 100%;
194
+ float: left;
195
+ text-align: left !important;
196
+ border: transparent !important;
149
197
  font-size: 1em;
198
+ padding-left: 1rem !important;
199
+ }
200
+ table.hax-box * tr {
201
+ margin-bottom: 10px;
202
+ display: inline-block;
203
+ width: 100%;
204
+ border: 1px #ccc solid;
205
+ border-radius: 6px;
206
+ }
207
+ table.hax-box > thead {
208
+ display: none;
209
+ }
210
+ table.hax-box * td.responsive-heading {
211
+ display: block;
212
+ padding-left: 0.5rem !important;
150
213
  }
151
214
  }
152
215
  /*! bulma.io v0.9.4 | MIT License | github.com/jgthms/bulma */
@@ -681,16 +744,16 @@ a.box:active {
681
744
  .button.is-white {
682
745
  background-color: hsl(0, 0%, 100%);
683
746
  border-color: transparent;
684
- color: #0a0a0a;
747
+ color: hsl(0, 0%, 4%);
685
748
  }
686
749
  .button.is-white:hover, .button.is-white.is-hovered {
687
750
  background-color: #f9f9f9;
688
751
  border-color: transparent;
689
- color: #0a0a0a;
752
+ color: hsl(0, 0%, 4%);
690
753
  }
691
754
  .button.is-white:focus, .button.is-white.is-focused {
692
755
  border-color: transparent;
693
- color: #0a0a0a;
756
+ color: hsl(0, 0%, 4%);
694
757
  }
695
758
  .button.is-white:focus:not(:active), .button.is-white.is-focused:not(:active) {
696
759
  box-shadow: 0 0 0 0.125em rgba(255, 255, 255, 0.25);
@@ -698,7 +761,7 @@ a.box:active {
698
761
  .button.is-white:active, .button.is-white.is-active {
699
762
  background-color: #f2f2f2;
700
763
  border-color: transparent;
701
- color: #0a0a0a;
764
+ color: hsl(0, 0%, 4%);
702
765
  }
703
766
  .button.is-white[disabled], fieldset[disabled] .button.is-white {
704
767
  background-color: hsl(0, 0%, 100%);
@@ -706,20 +769,20 @@ a.box:active {
706
769
  box-shadow: none;
707
770
  }
708
771
  .button.is-white.is-inverted {
709
- background-color: #0a0a0a;
772
+ background-color: hsl(0, 0%, 4%);
710
773
  color: hsl(0, 0%, 100%);
711
774
  }
712
775
  .button.is-white.is-inverted:hover, .button.is-white.is-inverted.is-hovered {
713
776
  background-color: black;
714
777
  }
715
778
  .button.is-white.is-inverted[disabled], fieldset[disabled] .button.is-white.is-inverted {
716
- background-color: #0a0a0a;
779
+ background-color: hsl(0, 0%, 4%);
717
780
  border-color: transparent;
718
781
  box-shadow: none;
719
782
  color: hsl(0, 0%, 100%);
720
783
  }
721
784
  .button.is-white.is-loading::after {
722
- border-color: transparent transparent #0a0a0a #0a0a0a !important;
785
+ border-color: transparent transparent hsl(0, 0%, 4%) hsl(0, 0%, 4%) !important;
723
786
  }
724
787
  .button.is-white.is-outlined {
725
788
  background-color: transparent;
@@ -729,13 +792,13 @@ a.box:active {
729
792
  .button.is-white.is-outlined:hover, .button.is-white.is-outlined.is-hovered, .button.is-white.is-outlined:focus, .button.is-white.is-outlined.is-focused {
730
793
  background-color: hsl(0, 0%, 100%);
731
794
  border-color: hsl(0, 0%, 100%);
732
- color: #0a0a0a;
795
+ color: hsl(0, 0%, 4%);
733
796
  }
734
797
  .button.is-white.is-outlined.is-loading::after {
735
798
  border-color: transparent transparent hsl(0, 0%, 100%) hsl(0, 0%, 100%) !important;
736
799
  }
737
800
  .button.is-white.is-outlined.is-loading:hover::after, .button.is-white.is-outlined.is-loading.is-hovered::after, .button.is-white.is-outlined.is-loading:focus::after, .button.is-white.is-outlined.is-loading.is-focused::after {
738
- border-color: transparent transparent #0a0a0a #0a0a0a !important;
801
+ border-color: transparent transparent hsl(0, 0%, 4%) hsl(0, 0%, 4%) !important;
739
802
  }
740
803
  .button.is-white.is-outlined[disabled], fieldset[disabled] .button.is-white.is-outlined {
741
804
  background-color: transparent;
@@ -745,11 +808,11 @@ a.box:active {
745
808
  }
746
809
  .button.is-white.is-inverted.is-outlined {
747
810
  background-color: transparent;
748
- border-color: #0a0a0a;
749
- color: #0a0a0a;
811
+ border-color: hsl(0, 0%, 4%);
812
+ color: hsl(0, 0%, 4%);
750
813
  }
751
814
  .button.is-white.is-inverted.is-outlined:hover, .button.is-white.is-inverted.is-outlined.is-hovered, .button.is-white.is-inverted.is-outlined:focus, .button.is-white.is-inverted.is-outlined.is-focused {
752
- background-color: #0a0a0a;
815
+ background-color: hsl(0, 0%, 4%);
753
816
  color: hsl(0, 0%, 100%);
754
817
  }
755
818
  .button.is-white.is-inverted.is-outlined.is-loading:hover::after, .button.is-white.is-inverted.is-outlined.is-loading.is-hovered::after, .button.is-white.is-inverted.is-outlined.is-loading:focus::after, .button.is-white.is-inverted.is-outlined.is-loading.is-focused::after {
@@ -757,12 +820,12 @@ a.box:active {
757
820
  }
758
821
  .button.is-white.is-inverted.is-outlined[disabled], fieldset[disabled] .button.is-white.is-inverted.is-outlined {
759
822
  background-color: transparent;
760
- border-color: #0a0a0a;
823
+ border-color: hsl(0, 0%, 4%);
761
824
  box-shadow: none;
762
- color: #0a0a0a;
825
+ color: hsl(0, 0%, 4%);
763
826
  }
764
827
  .button.is-black {
765
- background-color: #0a0a0a;
828
+ background-color: hsl(0, 0%, 4%);
766
829
  border-color: transparent;
767
830
  color: hsl(0, 0%, 100%);
768
831
  }
@@ -784,13 +847,13 @@ a.box:active {
784
847
  color: hsl(0, 0%, 100%);
785
848
  }
786
849
  .button.is-black[disabled], fieldset[disabled] .button.is-black {
787
- background-color: #0a0a0a;
788
- border-color: #0a0a0a;
850
+ background-color: hsl(0, 0%, 4%);
851
+ border-color: hsl(0, 0%, 4%);
789
852
  box-shadow: none;
790
853
  }
791
854
  .button.is-black.is-inverted {
792
855
  background-color: hsl(0, 0%, 100%);
793
- color: #0a0a0a;
856
+ color: hsl(0, 0%, 4%);
794
857
  }
795
858
  .button.is-black.is-inverted:hover, .button.is-black.is-inverted.is-hovered {
796
859
  background-color: #f2f2f2;
@@ -799,32 +862,32 @@ a.box:active {
799
862
  background-color: hsl(0, 0%, 100%);
800
863
  border-color: transparent;
801
864
  box-shadow: none;
802
- color: #0a0a0a;
865
+ color: hsl(0, 0%, 4%);
803
866
  }
804
867
  .button.is-black.is-loading::after {
805
868
  border-color: transparent transparent hsl(0, 0%, 100%) hsl(0, 0%, 100%) !important;
806
869
  }
807
870
  .button.is-black.is-outlined {
808
871
  background-color: transparent;
809
- border-color: #0a0a0a;
810
- color: #0a0a0a;
872
+ border-color: hsl(0, 0%, 4%);
873
+ color: hsl(0, 0%, 4%);
811
874
  }
812
875
  .button.is-black.is-outlined:hover, .button.is-black.is-outlined.is-hovered, .button.is-black.is-outlined:focus, .button.is-black.is-outlined.is-focused {
813
- background-color: #0a0a0a;
814
- border-color: #0a0a0a;
876
+ background-color: hsl(0, 0%, 4%);
877
+ border-color: hsl(0, 0%, 4%);
815
878
  color: hsl(0, 0%, 100%);
816
879
  }
817
880
  .button.is-black.is-outlined.is-loading::after {
818
- border-color: transparent transparent #0a0a0a #0a0a0a !important;
881
+ border-color: transparent transparent hsl(0, 0%, 4%) hsl(0, 0%, 4%) !important;
819
882
  }
820
883
  .button.is-black.is-outlined.is-loading:hover::after, .button.is-black.is-outlined.is-loading.is-hovered::after, .button.is-black.is-outlined.is-loading:focus::after, .button.is-black.is-outlined.is-loading.is-focused::after {
821
884
  border-color: transparent transparent hsl(0, 0%, 100%) hsl(0, 0%, 100%) !important;
822
885
  }
823
886
  .button.is-black.is-outlined[disabled], fieldset[disabled] .button.is-black.is-outlined {
824
887
  background-color: transparent;
825
- border-color: #0a0a0a;
888
+ border-color: hsl(0, 0%, 4%);
826
889
  box-shadow: none;
827
- color: #0a0a0a;
890
+ color: hsl(0, 0%, 4%);
828
891
  }
829
892
  .button.is-black.is-inverted.is-outlined {
830
893
  background-color: transparent;
@@ -833,10 +896,10 @@ a.box:active {
833
896
  }
834
897
  .button.is-black.is-inverted.is-outlined:hover, .button.is-black.is-inverted.is-outlined.is-hovered, .button.is-black.is-inverted.is-outlined:focus, .button.is-black.is-inverted.is-outlined.is-focused {
835
898
  background-color: hsl(0, 0%, 100%);
836
- color: #0a0a0a;
899
+ color: hsl(0, 0%, 4%);
837
900
  }
838
901
  .button.is-black.is-inverted.is-outlined.is-loading:hover::after, .button.is-black.is-inverted.is-outlined.is-loading.is-hovered::after, .button.is-black.is-inverted.is-outlined.is-loading:focus::after, .button.is-black.is-inverted.is-outlined.is-loading.is-focused::after {
839
- border-color: transparent transparent #0a0a0a #0a0a0a !important;
902
+ border-color: transparent transparent hsl(0, 0%, 4%) hsl(0, 0%, 4%) !important;
840
903
  }
841
904
  .button.is-black.is-inverted.is-outlined[disabled], fieldset[disabled] .button.is-black.is-inverted.is-outlined {
842
905
  background-color: transparent;
@@ -1302,12 +1365,12 @@ a.box:active {
1302
1365
  color: #296fa8;
1303
1366
  }
1304
1367
  .button.is-success {
1305
- background-color: #48c78e;
1368
+ background-color: hsl(153, 53%, 53%);
1306
1369
  border-color: transparent;
1307
1370
  color: #fff;
1308
1371
  }
1309
1372
  .button.is-success:hover, .button.is-success.is-hovered {
1310
- background-color: #3ec488;
1373
+ background-color: #3ec487;
1311
1374
  border-color: transparent;
1312
1375
  color: #fff;
1313
1376
  }
@@ -1319,18 +1382,18 @@ a.box:active {
1319
1382
  box-shadow: 0 0 0 0.125em rgba(72, 199, 142, 0.25);
1320
1383
  }
1321
1384
  .button.is-success:active, .button.is-success.is-active {
1322
- background-color: #3abc81;
1385
+ background-color: #3abb81;
1323
1386
  border-color: transparent;
1324
1387
  color: #fff;
1325
1388
  }
1326
1389
  .button.is-success[disabled], fieldset[disabled] .button.is-success {
1327
- background-color: #48c78e;
1328
- border-color: #48c78e;
1390
+ background-color: hsl(153, 53%, 53%);
1391
+ border-color: hsl(153, 53%, 53%);
1329
1392
  box-shadow: none;
1330
1393
  }
1331
1394
  .button.is-success.is-inverted {
1332
1395
  background-color: #fff;
1333
- color: #48c78e;
1396
+ color: hsl(153, 53%, 53%);
1334
1397
  }
1335
1398
  .button.is-success.is-inverted:hover, .button.is-success.is-inverted.is-hovered {
1336
1399
  background-color: #f2f2f2;
@@ -1339,32 +1402,32 @@ a.box:active {
1339
1402
  background-color: #fff;
1340
1403
  border-color: transparent;
1341
1404
  box-shadow: none;
1342
- color: #48c78e;
1405
+ color: hsl(153, 53%, 53%);
1343
1406
  }
1344
1407
  .button.is-success.is-loading::after {
1345
1408
  border-color: transparent transparent #fff #fff !important;
1346
1409
  }
1347
1410
  .button.is-success.is-outlined {
1348
1411
  background-color: transparent;
1349
- border-color: #48c78e;
1350
- color: #48c78e;
1412
+ border-color: hsl(153, 53%, 53%);
1413
+ color: hsl(153, 53%, 53%);
1351
1414
  }
1352
1415
  .button.is-success.is-outlined:hover, .button.is-success.is-outlined.is-hovered, .button.is-success.is-outlined:focus, .button.is-success.is-outlined.is-focused {
1353
- background-color: #48c78e;
1354
- border-color: #48c78e;
1416
+ background-color: hsl(153, 53%, 53%);
1417
+ border-color: hsl(153, 53%, 53%);
1355
1418
  color: #fff;
1356
1419
  }
1357
1420
  .button.is-success.is-outlined.is-loading::after {
1358
- border-color: transparent transparent #48c78e #48c78e !important;
1421
+ border-color: transparent transparent hsl(153, 53%, 53%) hsl(153, 53%, 53%) !important;
1359
1422
  }
1360
1423
  .button.is-success.is-outlined.is-loading:hover::after, .button.is-success.is-outlined.is-loading.is-hovered::after, .button.is-success.is-outlined.is-loading:focus::after, .button.is-success.is-outlined.is-loading.is-focused::after {
1361
1424
  border-color: transparent transparent #fff #fff !important;
1362
1425
  }
1363
1426
  .button.is-success.is-outlined[disabled], fieldset[disabled] .button.is-success.is-outlined {
1364
1427
  background-color: transparent;
1365
- border-color: #48c78e;
1428
+ border-color: hsl(153, 53%, 53%);
1366
1429
  box-shadow: none;
1367
- color: #48c78e;
1430
+ color: hsl(153, 53%, 53%);
1368
1431
  }
1369
1432
  .button.is-success.is-inverted.is-outlined {
1370
1433
  background-color: transparent;
@@ -1373,10 +1436,10 @@ a.box:active {
1373
1436
  }
1374
1437
  .button.is-success.is-inverted.is-outlined:hover, .button.is-success.is-inverted.is-outlined.is-hovered, .button.is-success.is-inverted.is-outlined:focus, .button.is-success.is-inverted.is-outlined.is-focused {
1375
1438
  background-color: #fff;
1376
- color: #48c78e;
1439
+ color: hsl(153, 53%, 53%);
1377
1440
  }
1378
1441
  .button.is-success.is-inverted.is-outlined.is-loading:hover::after, .button.is-success.is-inverted.is-outlined.is-loading.is-hovered::after, .button.is-success.is-inverted.is-outlined.is-loading:focus::after, .button.is-success.is-inverted.is-outlined.is-loading.is-focused::after {
1379
- border-color: transparent transparent #48c78e #48c78e !important;
1442
+ border-color: transparent transparent hsl(153, 53%, 53%) hsl(153, 53%, 53%) !important;
1380
1443
  }
1381
1444
  .button.is-success.is-inverted.is-outlined[disabled], fieldset[disabled] .button.is-success.is-inverted.is-outlined {
1382
1445
  background-color: transparent;
@@ -2131,10 +2194,10 @@ div.icon-text {
2131
2194
  }
2132
2195
  .notification.is-white {
2133
2196
  background-color: hsl(0, 0%, 100%);
2134
- color: #0a0a0a;
2197
+ color: hsl(0, 0%, 4%);
2135
2198
  }
2136
2199
  .notification.is-black {
2137
- background-color: #0a0a0a;
2200
+ background-color: hsl(0, 0%, 4%);
2138
2201
  color: hsl(0, 0%, 100%);
2139
2202
  }
2140
2203
  .notification.is-light {
@@ -2170,7 +2233,7 @@ div.icon-text {
2170
2233
  color: #296fa8;
2171
2234
  }
2172
2235
  .notification.is-success {
2173
- background-color: #48c78e;
2236
+ background-color: hsl(153, 53%, 53%);
2174
2237
  color: #fff;
2175
2238
  }
2176
2239
  .notification.is-success.is-light {
@@ -2231,16 +2294,16 @@ div.icon-text {
2231
2294
  background-image: linear-gradient(to right, hsl(0, 0%, 100%) 30%, hsl(0, 0%, 93%) 30%);
2232
2295
  }
2233
2296
  .progress.is-black::-webkit-progress-value {
2234
- background-color: #0a0a0a;
2297
+ background-color: hsl(0, 0%, 4%);
2235
2298
  }
2236
2299
  .progress.is-black::-moz-progress-bar {
2237
- background-color: #0a0a0a;
2300
+ background-color: hsl(0, 0%, 4%);
2238
2301
  }
2239
2302
  .progress.is-black::-ms-fill {
2240
- background-color: #0a0a0a;
2303
+ background-color: hsl(0, 0%, 4%);
2241
2304
  }
2242
2305
  .progress.is-black:indeterminate {
2243
- background-image: linear-gradient(to right, #0a0a0a 30%, hsl(0, 0%, 93%) 30%);
2306
+ background-image: linear-gradient(to right, hsl(0, 0%, 4%) 30%, hsl(0, 0%, 93%) 30%);
2244
2307
  }
2245
2308
  .progress.is-light::-webkit-progress-value {
2246
2309
  background-color: hsl(0, 0%, 96%);
@@ -2303,16 +2366,16 @@ div.icon-text {
2303
2366
  background-image: linear-gradient(to right, hsl(207, 61%, 53%) 30%, hsl(0, 0%, 93%) 30%);
2304
2367
  }
2305
2368
  .progress.is-success::-webkit-progress-value {
2306
- background-color: #48c78e;
2369
+ background-color: hsl(153, 53%, 53%);
2307
2370
  }
2308
2371
  .progress.is-success::-moz-progress-bar {
2309
- background-color: #48c78e;
2372
+ background-color: hsl(153, 53%, 53%);
2310
2373
  }
2311
2374
  .progress.is-success::-ms-fill {
2312
- background-color: #48c78e;
2375
+ background-color: hsl(153, 53%, 53%);
2313
2376
  }
2314
2377
  .progress.is-success:indeterminate {
2315
- background-image: linear-gradient(to right, #48c78e 30%, hsl(0, 0%, 93%) 30%);
2378
+ background-image: linear-gradient(to right, hsl(153, 53%, 53%) 30%, hsl(0, 0%, 93%) 30%);
2316
2379
  }
2317
2380
  .progress.is-warning::-webkit-progress-value {
2318
2381
  background-color: hsl(44, 100%, 77%);
@@ -2391,12 +2454,12 @@ div.icon-text {
2391
2454
  .table th.is-white {
2392
2455
  background-color: hsl(0, 0%, 100%);
2393
2456
  border-color: hsl(0, 0%, 100%);
2394
- color: #0a0a0a;
2457
+ color: hsl(0, 0%, 4%);
2395
2458
  }
2396
2459
  .table td.is-black,
2397
2460
  .table th.is-black {
2398
- background-color: #0a0a0a;
2399
- border-color: #0a0a0a;
2461
+ background-color: hsl(0, 0%, 4%);
2462
+ border-color: hsl(0, 0%, 4%);
2400
2463
  color: hsl(0, 0%, 100%);
2401
2464
  }
2402
2465
  .table td.is-light,
@@ -2431,8 +2494,8 @@ div.icon-text {
2431
2494
  }
2432
2495
  .table td.is-success,
2433
2496
  .table th.is-success {
2434
- background-color: #48c78e;
2435
- border-color: #48c78e;
2497
+ background-color: hsl(153, 53%, 53%);
2498
+ border-color: hsl(153, 53%, 53%);
2436
2499
  color: #fff;
2437
2500
  }
2438
2501
  .table td.is-warning,
@@ -2617,10 +2680,10 @@ div.icon-text {
2617
2680
  }
2618
2681
  .tag:not(body).is-white {
2619
2682
  background-color: hsl(0, 0%, 100%);
2620
- color: #0a0a0a;
2683
+ color: hsl(0, 0%, 4%);
2621
2684
  }
2622
2685
  .tag:not(body).is-black {
2623
- background-color: #0a0a0a;
2686
+ background-color: hsl(0, 0%, 4%);
2624
2687
  color: hsl(0, 0%, 100%);
2625
2688
  }
2626
2689
  .tag:not(body).is-light {
@@ -2656,7 +2719,7 @@ div.icon-text {
2656
2719
  color: #296fa8;
2657
2720
  }
2658
2721
  .tag:not(body).is-success {
2659
- background-color: #48c78e;
2722
+ background-color: hsl(153, 53%, 53%);
2660
2723
  color: #fff;
2661
2724
  }
2662
2725
  .tag:not(body).is-success.is-light {
@@ -2914,7 +2977,7 @@ a.tag:hover {
2914
2977
  box-shadow: 0 0 0 0.125em rgba(255, 255, 255, 0.25);
2915
2978
  }
2916
2979
  .is-black.textarea, .is-black.input {
2917
- border-color: #0a0a0a;
2980
+ border-color: hsl(0, 0%, 4%);
2918
2981
  }
2919
2982
  .is-black.textarea:focus, .is-black.input:focus, .is-black.is-focused.textarea, .is-black.is-focused.input, .is-black.textarea:active, .is-black.input:active, .is-black.is-active.textarea, .is-black.is-active.input {
2920
2983
  box-shadow: 0 0 0 0.125em rgba(10, 10, 10, 0.25);
@@ -2950,7 +3013,7 @@ a.tag:hover {
2950
3013
  box-shadow: 0 0 0 0.125em rgba(62, 142, 208, 0.25);
2951
3014
  }
2952
3015
  .is-success.textarea, .is-success.input {
2953
- border-color: #48c78e;
3016
+ border-color: hsl(153, 53%, 53%);
2954
3017
  }
2955
3018
  .is-success.textarea:focus, .is-success.input:focus, .is-success.is-focused.textarea, .is-success.is-focused.input, .is-success.textarea:active, .is-success.input:active, .is-success.is-active.textarea, .is-success.is-active.input {
2956
3019
  box-shadow: 0 0 0 0.125em rgba(72, 199, 142, 0.25);
@@ -3097,10 +3160,10 @@ a.tag:hover {
3097
3160
  box-shadow: 0 0 0 0.125em rgba(255, 255, 255, 0.25);
3098
3161
  }
3099
3162
  .select.is-black:not(:hover)::after {
3100
- border-color: #0a0a0a;
3163
+ border-color: hsl(0, 0%, 4%);
3101
3164
  }
3102
3165
  .select.is-black select {
3103
- border-color: #0a0a0a;
3166
+ border-color: hsl(0, 0%, 4%);
3104
3167
  }
3105
3168
  .select.is-black select:hover, .select.is-black select.is-hovered {
3106
3169
  border-color: black;
@@ -3169,13 +3232,13 @@ a.tag:hover {
3169
3232
  box-shadow: 0 0 0 0.125em rgba(62, 142, 208, 0.25);
3170
3233
  }
3171
3234
  .select.is-success:not(:hover)::after {
3172
- border-color: #48c78e;
3235
+ border-color: hsl(153, 53%, 53%);
3173
3236
  }
3174
3237
  .select.is-success select {
3175
- border-color: #48c78e;
3238
+ border-color: hsl(153, 53%, 53%);
3176
3239
  }
3177
3240
  .select.is-success select:hover, .select.is-success select.is-hovered {
3178
- border-color: #3abc81;
3241
+ border-color: #3abb81;
3179
3242
  }
3180
3243
  .select.is-success select:focus, .select.is-success select.is-focused, .select.is-success select:active, .select.is-success select.is-active {
3181
3244
  box-shadow: 0 0 0 0.125em rgba(72, 199, 142, 0.25);
@@ -3250,25 +3313,25 @@ a.tag:hover {
3250
3313
  .file.is-white .file-cta {
3251
3314
  background-color: hsl(0, 0%, 100%);
3252
3315
  border-color: transparent;
3253
- color: #0a0a0a;
3316
+ color: hsl(0, 0%, 4%);
3254
3317
  }
3255
3318
  .file.is-white:hover .file-cta, .file.is-white.is-hovered .file-cta {
3256
3319
  background-color: #f9f9f9;
3257
3320
  border-color: transparent;
3258
- color: #0a0a0a;
3321
+ color: hsl(0, 0%, 4%);
3259
3322
  }
3260
3323
  .file.is-white:focus .file-cta, .file.is-white.is-focused .file-cta {
3261
3324
  border-color: transparent;
3262
3325
  box-shadow: 0 0 0.5em rgba(255, 255, 255, 0.25);
3263
- color: #0a0a0a;
3326
+ color: hsl(0, 0%, 4%);
3264
3327
  }
3265
3328
  .file.is-white:active .file-cta, .file.is-white.is-active .file-cta {
3266
3329
  background-color: #f2f2f2;
3267
3330
  border-color: transparent;
3268
- color: #0a0a0a;
3331
+ color: hsl(0, 0%, 4%);
3269
3332
  }
3270
3333
  .file.is-black .file-cta {
3271
- background-color: #0a0a0a;
3334
+ background-color: hsl(0, 0%, 4%);
3272
3335
  border-color: transparent;
3273
3336
  color: hsl(0, 0%, 100%);
3274
3337
  }
@@ -3388,12 +3451,12 @@ a.tag:hover {
3388
3451
  color: #fff;
3389
3452
  }
3390
3453
  .file.is-success .file-cta {
3391
- background-color: #48c78e;
3454
+ background-color: hsl(153, 53%, 53%);
3392
3455
  border-color: transparent;
3393
3456
  color: #fff;
3394
3457
  }
3395
3458
  .file.is-success:hover .file-cta, .file.is-success.is-hovered .file-cta {
3396
- background-color: #3ec488;
3459
+ background-color: #3ec487;
3397
3460
  border-color: transparent;
3398
3461
  color: #fff;
3399
3462
  }
@@ -3403,7 +3466,7 @@ a.tag:hover {
3403
3466
  color: #fff;
3404
3467
  }
3405
3468
  .file.is-success:active .file-cta, .file.is-success.is-active .file-cta {
3406
- background-color: #3abc81;
3469
+ background-color: #3abb81;
3407
3470
  border-color: transparent;
3408
3471
  color: #fff;
3409
3472
  }
@@ -3634,7 +3697,7 @@ a.tag:hover {
3634
3697
  color: hsl(0, 0%, 100%);
3635
3698
  }
3636
3699
  .help.is-black {
3637
- color: #0a0a0a;
3700
+ color: hsl(0, 0%, 4%);
3638
3701
  }
3639
3702
  .help.is-light {
3640
3703
  color: hsl(0, 0%, 96%);
@@ -3652,7 +3715,7 @@ a.tag:hover {
3652
3715
  color: hsl(207, 61%, 53%);
3653
3716
  }
3654
3717
  .help.is-success {
3655
- color: #48c78e;
3718
+ color: hsl(153, 53%, 53%);
3656
3719
  }
3657
3720
  .help.is-warning {
3658
3721
  color: hsl(44, 100%, 77%);
@@ -4120,7 +4183,7 @@ button.dropdown-item {
4120
4183
  a.dropdown-item:hover,
4121
4184
  button.dropdown-item:hover {
4122
4185
  background-color: hsl(0, 0%, 96%);
4123
- color: #0a0a0a;
4186
+ color: hsl(0, 0%, 4%);
4124
4187
  }
4125
4188
  a.dropdown-item.is-active,
4126
4189
  button.dropdown-item.is-active {
@@ -4368,7 +4431,7 @@ button.dropdown-item.is-active {
4368
4431
  }
4369
4432
  .message.is-white .message-header {
4370
4433
  background-color: hsl(0, 0%, 100%);
4371
- color: #0a0a0a;
4434
+ color: hsl(0, 0%, 4%);
4372
4435
  }
4373
4436
  .message.is-white .message-body {
4374
4437
  border-color: hsl(0, 0%, 100%);
@@ -4377,11 +4440,11 @@ button.dropdown-item.is-active {
4377
4440
  background-color: #fafafa;
4378
4441
  }
4379
4442
  .message.is-black .message-header {
4380
- background-color: #0a0a0a;
4443
+ background-color: hsl(0, 0%, 4%);
4381
4444
  color: hsl(0, 0%, 100%);
4382
4445
  }
4383
4446
  .message.is-black .message-body {
4384
- border-color: #0a0a0a;
4447
+ border-color: hsl(0, 0%, 4%);
4385
4448
  }
4386
4449
  .message.is-light {
4387
4450
  background-color: #fafafa;
@@ -4440,11 +4503,11 @@ button.dropdown-item.is-active {
4440
4503
  background-color: #effaf5;
4441
4504
  }
4442
4505
  .message.is-success .message-header {
4443
- background-color: #48c78e;
4506
+ background-color: hsl(153, 53%, 53%);
4444
4507
  color: #fff;
4445
4508
  }
4446
4509
  .message.is-success .message-body {
4447
- border-color: #48c78e;
4510
+ border-color: hsl(153, 53%, 53%);
4448
4511
  color: #257953;
4449
4512
  }
4450
4513
  .message.is-warning {
@@ -4611,31 +4674,31 @@ button.dropdown-item.is-active {
4611
4674
  }
4612
4675
  .navbar.is-white {
4613
4676
  background-color: hsl(0, 0%, 100%);
4614
- color: #0a0a0a;
4677
+ color: hsl(0, 0%, 4%);
4615
4678
  }
4616
4679
  .navbar.is-white .navbar-brand > .navbar-item,
4617
4680
  .navbar.is-white .navbar-brand .navbar-link {
4618
- color: #0a0a0a;
4681
+ color: hsl(0, 0%, 4%);
4619
4682
  }
4620
4683
  .navbar.is-white .navbar-brand > a.navbar-item:focus, .navbar.is-white .navbar-brand > a.navbar-item:hover, .navbar.is-white .navbar-brand > a.navbar-item.is-active,
4621
4684
  .navbar.is-white .navbar-brand .navbar-link:focus,
4622
4685
  .navbar.is-white .navbar-brand .navbar-link:hover,
4623
4686
  .navbar.is-white .navbar-brand .navbar-link.is-active {
4624
4687
  background-color: #f2f2f2;
4625
- color: #0a0a0a;
4688
+ color: hsl(0, 0%, 4%);
4626
4689
  }
4627
4690
  .navbar.is-white .navbar-brand .navbar-link::after {
4628
- border-color: #0a0a0a;
4691
+ border-color: hsl(0, 0%, 4%);
4629
4692
  }
4630
4693
  .navbar.is-white .navbar-burger {
4631
- color: #0a0a0a;
4694
+ color: hsl(0, 0%, 4%);
4632
4695
  }
4633
4696
  @media screen and (min-width: 1024px) {
4634
4697
  .navbar.is-white .navbar-start > .navbar-item,
4635
4698
  .navbar.is-white .navbar-start .navbar-link,
4636
4699
  .navbar.is-white .navbar-end > .navbar-item,
4637
4700
  .navbar.is-white .navbar-end .navbar-link {
4638
- color: #0a0a0a;
4701
+ color: hsl(0, 0%, 4%);
4639
4702
  }
4640
4703
  .navbar.is-white .navbar-start > a.navbar-item:focus, .navbar.is-white .navbar-start > a.navbar-item:hover, .navbar.is-white .navbar-start > a.navbar-item.is-active,
4641
4704
  .navbar.is-white .navbar-start .navbar-link:focus,
@@ -4648,25 +4711,25 @@ button.dropdown-item.is-active {
4648
4711
  .navbar.is-white .navbar-end .navbar-link:hover,
4649
4712
  .navbar.is-white .navbar-end .navbar-link.is-active {
4650
4713
  background-color: #f2f2f2;
4651
- color: #0a0a0a;
4714
+ color: hsl(0, 0%, 4%);
4652
4715
  }
4653
4716
  .navbar.is-white .navbar-start .navbar-link::after,
4654
4717
  .navbar.is-white .navbar-end .navbar-link::after {
4655
- border-color: #0a0a0a;
4718
+ border-color: hsl(0, 0%, 4%);
4656
4719
  }
4657
4720
  .navbar.is-white .navbar-item.has-dropdown:focus .navbar-link,
4658
4721
  .navbar.is-white .navbar-item.has-dropdown:hover .navbar-link,
4659
4722
  .navbar.is-white .navbar-item.has-dropdown.is-active .navbar-link {
4660
4723
  background-color: #f2f2f2;
4661
- color: #0a0a0a;
4724
+ color: hsl(0, 0%, 4%);
4662
4725
  }
4663
4726
  .navbar.is-white .navbar-dropdown a.navbar-item.is-active {
4664
4727
  background-color: hsl(0, 0%, 100%);
4665
- color: #0a0a0a;
4728
+ color: hsl(0, 0%, 4%);
4666
4729
  }
4667
4730
  }
4668
4731
  .navbar.is-black {
4669
- background-color: #0a0a0a;
4732
+ background-color: hsl(0, 0%, 4%);
4670
4733
  color: hsl(0, 0%, 100%);
4671
4734
  }
4672
4735
  .navbar.is-black .navbar-brand > .navbar-item,
@@ -4717,7 +4780,7 @@ button.dropdown-item.is-active {
4717
4780
  color: hsl(0, 0%, 100%);
4718
4781
  }
4719
4782
  .navbar.is-black .navbar-dropdown a.navbar-item.is-active {
4720
- background-color: #0a0a0a;
4783
+ background-color: hsl(0, 0%, 4%);
4721
4784
  color: hsl(0, 0%, 100%);
4722
4785
  }
4723
4786
  }
@@ -5002,7 +5065,7 @@ button.dropdown-item.is-active {
5002
5065
  }
5003
5066
  }
5004
5067
  .navbar.is-success {
5005
- background-color: #48c78e;
5068
+ background-color: hsl(153, 53%, 53%);
5006
5069
  color: #fff;
5007
5070
  }
5008
5071
  .navbar.is-success .navbar-brand > .navbar-item,
@@ -5013,7 +5076,7 @@ button.dropdown-item.is-active {
5013
5076
  .navbar.is-success .navbar-brand .navbar-link:focus,
5014
5077
  .navbar.is-success .navbar-brand .navbar-link:hover,
5015
5078
  .navbar.is-success .navbar-brand .navbar-link.is-active {
5016
- background-color: #3abc81;
5079
+ background-color: #3abb81;
5017
5080
  color: #fff;
5018
5081
  }
5019
5082
  .navbar.is-success .navbar-brand .navbar-link::after {
@@ -5039,7 +5102,7 @@ button.dropdown-item.is-active {
5039
5102
  .navbar.is-success .navbar-end .navbar-link:focus,
5040
5103
  .navbar.is-success .navbar-end .navbar-link:hover,
5041
5104
  .navbar.is-success .navbar-end .navbar-link.is-active {
5042
- background-color: #3abc81;
5105
+ background-color: #3abb81;
5043
5106
  color: #fff;
5044
5107
  }
5045
5108
  .navbar.is-success .navbar-start .navbar-link::after,
@@ -5049,11 +5112,11 @@ button.dropdown-item.is-active {
5049
5112
  .navbar.is-success .navbar-item.has-dropdown:focus .navbar-link,
5050
5113
  .navbar.is-success .navbar-item.has-dropdown:hover .navbar-link,
5051
5114
  .navbar.is-success .navbar-item.has-dropdown.is-active .navbar-link {
5052
- background-color: #3abc81;
5115
+ background-color: #3abb81;
5053
5116
  color: #fff;
5054
5117
  }
5055
5118
  .navbar.is-success .navbar-dropdown a.navbar-item.is-active {
5056
- background-color: #48c78e;
5119
+ background-color: hsl(153, 53%, 53%);
5057
5120
  color: #fff;
5058
5121
  }
5059
5122
  }
@@ -5447,7 +5510,7 @@ a.navbar-item:focus, a.navbar-item:focus-within, a.navbar-item:hover, a.navbar-i
5447
5510
  }
5448
5511
  .navbar.is-transparent .navbar-dropdown a.navbar-item:focus, .navbar.is-transparent .navbar-dropdown a.navbar-item:hover {
5449
5512
  background-color: hsl(0, 0%, 96%);
5450
- color: #0a0a0a;
5513
+ color: hsl(0, 0%, 4%);
5451
5514
  }
5452
5515
  .navbar.is-transparent .navbar-dropdown a.navbar-item.is-active {
5453
5516
  background-color: hsl(0, 0%, 96%);
@@ -5518,7 +5581,7 @@ a.navbar-item:focus, a.navbar-item:focus-within, a.navbar-item:hover, a.navbar-i
5518
5581
  }
5519
5582
  .navbar-dropdown a.navbar-item:focus, .navbar-dropdown a.navbar-item:hover {
5520
5583
  background-color: hsl(0, 0%, 96%);
5521
- color: #0a0a0a;
5584
+ color: hsl(0, 0%, 4%);
5522
5585
  }
5523
5586
  .navbar-dropdown a.navbar-item.is-active {
5524
5587
  background-color: hsl(0, 0%, 96%);
@@ -5584,7 +5647,7 @@ a.navbar-item:focus, a.navbar-item:focus-within, a.navbar-item:hover, a.navbar-i
5584
5647
  }
5585
5648
  a.navbar-item.is-active,
5586
5649
  .navbar-link.is-active {
5587
- color: #0a0a0a;
5650
+ color: hsl(0, 0%, 4%);
5588
5651
  }
5589
5652
  a.navbar-item.is-active:not(:focus):not(:hover),
5590
5653
  .navbar-link.is-active:not(:focus):not(:hover) {
@@ -5771,7 +5834,7 @@ a.navbar-item:focus, a.navbar-item:focus-within, a.navbar-item:hover, a.navbar-i
5771
5834
  }
5772
5835
  .panel.is-white .panel-heading {
5773
5836
  background-color: hsl(0, 0%, 100%);
5774
- color: #0a0a0a;
5837
+ color: hsl(0, 0%, 4%);
5775
5838
  }
5776
5839
  .panel.is-white .panel-tabs a.is-active {
5777
5840
  border-bottom-color: hsl(0, 0%, 100%);
@@ -5780,14 +5843,14 @@ a.navbar-item:focus, a.navbar-item:focus-within, a.navbar-item:hover, a.navbar-i
5780
5843
  color: hsl(0, 0%, 100%);
5781
5844
  }
5782
5845
  .panel.is-black .panel-heading {
5783
- background-color: #0a0a0a;
5846
+ background-color: hsl(0, 0%, 4%);
5784
5847
  color: hsl(0, 0%, 100%);
5785
5848
  }
5786
5849
  .panel.is-black .panel-tabs a.is-active {
5787
- border-bottom-color: #0a0a0a;
5850
+ border-bottom-color: hsl(0, 0%, 4%);
5788
5851
  }
5789
5852
  .panel.is-black .panel-block.is-active .panel-icon {
5790
- color: #0a0a0a;
5853
+ color: hsl(0, 0%, 4%);
5791
5854
  }
5792
5855
  .panel.is-light .panel-heading {
5793
5856
  background-color: hsl(0, 0%, 96%);
@@ -5840,14 +5903,14 @@ a.navbar-item:focus, a.navbar-item:focus-within, a.navbar-item:hover, a.navbar-i
5840
5903
  color: hsl(207, 61%, 53%);
5841
5904
  }
5842
5905
  .panel.is-success .panel-heading {
5843
- background-color: #48c78e;
5906
+ background-color: hsl(153, 53%, 53%);
5844
5907
  color: #fff;
5845
5908
  }
5846
5909
  .panel.is-success .panel-tabs a.is-active {
5847
- border-bottom-color: #48c78e;
5910
+ border-bottom-color: hsl(153, 53%, 53%);
5848
5911
  }
5849
5912
  .panel.is-success .panel-block.is-active .panel-icon {
5850
- color: #48c78e;
5913
+ color: hsl(153, 53%, 53%);
5851
5914
  }
5852
5915
  .panel.is-warning .panel-heading {
5853
5916
  background-color: hsl(44, 100%, 77%);
@@ -6106,7 +6169,7 @@ label.panel-block:hover {
6106
6169
  flex-basis: 0;
6107
6170
  flex-grow: 1;
6108
6171
  flex-shrink: 1;
6109
- padding: 0.75rem;
6172
+ padding: 0.2rem;
6110
6173
  }
6111
6174
  .columns.is-mobile > .column.is-narrow {
6112
6175
  flex: none;
@@ -7256,15 +7319,15 @@ label.panel-block:hover {
7256
7319
  }
7257
7320
 
7258
7321
  .columns {
7259
- margin-left: -0.75rem;
7260
- margin-right: -0.75rem;
7261
- margin-top: -0.75rem;
7322
+ margin-left: -0.2rem;
7323
+ margin-right: -0.2rem;
7324
+ margin-top: -0.2rem;
7262
7325
  }
7263
7326
  .columns:last-child {
7264
- margin-bottom: -0.75rem;
7327
+ margin-bottom: -0.2rem;
7265
7328
  }
7266
7329
  .columns:not(:last-child) {
7267
- margin-bottom: calc(1.5rem - 0.75rem);
7330
+ margin-bottom: calc(1.5rem - 0.2rem);
7268
7331
  }
7269
7332
  .columns.is-centered {
7270
7333
  justify-content: center;
@@ -7845,7 +7908,7 @@ a.has-text-white:hover, a.has-text-white:focus {
7845
7908
  }
7846
7909
 
7847
7910
  .has-text-black {
7848
- color: #0a0a0a !important;
7911
+ color: hsl(0, 0%, 4%) !important;
7849
7912
  }
7850
7913
 
7851
7914
  a.has-text-black:hover, a.has-text-black:focus {
@@ -7853,7 +7916,7 @@ a.has-text-black:hover, a.has-text-black:focus {
7853
7916
  }
7854
7917
 
7855
7918
  .has-background-black {
7856
- background-color: #0a0a0a !important;
7919
+ background-color: hsl(0, 0%, 4%) !important;
7857
7920
  }
7858
7921
 
7859
7922
  .has-text-light {
@@ -7989,15 +8052,15 @@ a.has-text-info-dark:hover, a.has-text-info-dark:focus {
7989
8052
  }
7990
8053
 
7991
8054
  .has-text-success {
7992
- color: #48c78e !important;
8055
+ color: hsl(153, 53%, 53%) !important;
7993
8056
  }
7994
8057
 
7995
8058
  a.has-text-success:hover, a.has-text-success:focus {
7996
- color: #34a874 !important;
8059
+ color: #34a873 !important;
7997
8060
  }
7998
8061
 
7999
8062
  .has-background-success {
8000
- background-color: #48c78e !important;
8063
+ background-color: hsl(153, 53%, 53%) !important;
8001
8064
  }
8002
8065
 
8003
8066
  .has-text-success-light {
@@ -9698,21 +9761,21 @@ a.has-text-danger-dark:hover, a.has-text-danger-dark:focus {
9698
9761
  }
9699
9762
  .hero.is-white {
9700
9763
  background-color: hsl(0, 0%, 100%);
9701
- color: #0a0a0a;
9764
+ color: hsl(0, 0%, 4%);
9702
9765
  }
9703
9766
  .hero.is-white a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),
9704
9767
  .hero.is-white strong {
9705
9768
  color: inherit;
9706
9769
  }
9707
9770
  .hero.is-white .title {
9708
- color: #0a0a0a;
9771
+ color: hsl(0, 0%, 4%);
9709
9772
  }
9710
9773
  .hero.is-white .subtitle {
9711
9774
  color: rgba(10, 10, 10, 0.9);
9712
9775
  }
9713
9776
  .hero.is-white .subtitle a:not(.button),
9714
9777
  .hero.is-white .subtitle strong {
9715
- color: #0a0a0a;
9778
+ color: hsl(0, 0%, 4%);
9716
9779
  }
9717
9780
  @media screen and (max-width: 1023px) {
9718
9781
  .hero.is-white .navbar-menu {
@@ -9727,10 +9790,10 @@ a.has-text-danger-dark:hover, a.has-text-danger-dark:focus {
9727
9790
  .hero.is-white .navbar-link:hover,
9728
9791
  .hero.is-white .navbar-link.is-active {
9729
9792
  background-color: #f2f2f2;
9730
- color: #0a0a0a;
9793
+ color: hsl(0, 0%, 4%);
9731
9794
  }
9732
9795
  .hero.is-white .tabs a {
9733
- color: #0a0a0a;
9796
+ color: hsl(0, 0%, 4%);
9734
9797
  opacity: 0.9;
9735
9798
  }
9736
9799
  .hero.is-white .tabs a:hover {
@@ -9741,14 +9804,14 @@ a.has-text-danger-dark:hover, a.has-text-danger-dark:focus {
9741
9804
  opacity: 1;
9742
9805
  }
9743
9806
  .hero.is-white .tabs.is-boxed a, .hero.is-white .tabs.is-toggle a {
9744
- color: #0a0a0a;
9807
+ color: hsl(0, 0%, 4%);
9745
9808
  }
9746
9809
  .hero.is-white .tabs.is-boxed a:hover, .hero.is-white .tabs.is-toggle a:hover {
9747
9810
  background-color: rgba(10, 10, 10, 0.1);
9748
9811
  }
9749
9812
  .hero.is-white .tabs.is-boxed li.is-active a, .hero.is-white .tabs.is-boxed li.is-active a:hover, .hero.is-white .tabs.is-toggle li.is-active a, .hero.is-white .tabs.is-toggle li.is-active a:hover {
9750
- background-color: #0a0a0a;
9751
- border-color: #0a0a0a;
9813
+ background-color: hsl(0, 0%, 4%);
9814
+ border-color: hsl(0, 0%, 4%);
9752
9815
  color: hsl(0, 0%, 100%);
9753
9816
  }
9754
9817
  .hero.is-white.is-bold {
@@ -9760,7 +9823,7 @@ a.has-text-danger-dark:hover, a.has-text-danger-dark:focus {
9760
9823
  }
9761
9824
  }
9762
9825
  .hero.is-black {
9763
- background-color: #0a0a0a;
9826
+ background-color: hsl(0, 0%, 4%);
9764
9827
  color: hsl(0, 0%, 100%);
9765
9828
  }
9766
9829
  .hero.is-black a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),
@@ -9779,7 +9842,7 @@ a.has-text-danger-dark:hover, a.has-text-danger-dark:focus {
9779
9842
  }
9780
9843
  @media screen and (max-width: 1023px) {
9781
9844
  .hero.is-black .navbar-menu {
9782
- background-color: #0a0a0a;
9845
+ background-color: hsl(0, 0%, 4%);
9783
9846
  }
9784
9847
  }
9785
9848
  .hero.is-black .navbar-item,
@@ -9800,7 +9863,7 @@ a.has-text-danger-dark:hover, a.has-text-danger-dark:focus {
9800
9863
  opacity: 1;
9801
9864
  }
9802
9865
  .hero.is-black .tabs li.is-active a {
9803
- color: #0a0a0a !important;
9866
+ color: hsl(0, 0%, 4%) !important;
9804
9867
  opacity: 1;
9805
9868
  }
9806
9869
  .hero.is-black .tabs.is-boxed a, .hero.is-black .tabs.is-toggle a {
@@ -9812,14 +9875,14 @@ a.has-text-danger-dark:hover, a.has-text-danger-dark:focus {
9812
9875
  .hero.is-black .tabs.is-boxed li.is-active a, .hero.is-black .tabs.is-boxed li.is-active a:hover, .hero.is-black .tabs.is-toggle li.is-active a, .hero.is-black .tabs.is-toggle li.is-active a:hover {
9813
9876
  background-color: hsl(0, 0%, 100%);
9814
9877
  border-color: hsl(0, 0%, 100%);
9815
- color: #0a0a0a;
9878
+ color: hsl(0, 0%, 4%);
9816
9879
  }
9817
9880
  .hero.is-black.is-bold {
9818
- background-image: linear-gradient(141deg, black 0%, #0a0a0a 71%, #181616 100%);
9881
+ background-image: linear-gradient(141deg, black 0%, hsl(0, 0%, 4%) 71%, #181616 100%);
9819
9882
  }
9820
9883
  @media screen and (max-width: 768px) {
9821
9884
  .hero.is-black.is-bold .navbar-menu {
9822
- background-image: linear-gradient(141deg, black 0%, #0a0a0a 71%, #181616 100%);
9885
+ background-image: linear-gradient(141deg, black 0%, hsl(0, 0%, 4%) 71%, #181616 100%);
9823
9886
  }
9824
9887
  }
9825
9888
  .hero.is-light {
@@ -10138,7 +10201,7 @@ a.has-text-danger-dark:hover, a.has-text-danger-dark:focus {
10138
10201
  }
10139
10202
  }
10140
10203
  .hero.is-success {
10141
- background-color: #48c78e;
10204
+ background-color: hsl(153, 53%, 53%);
10142
10205
  color: #fff;
10143
10206
  }
10144
10207
  .hero.is-success a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),
@@ -10157,7 +10220,7 @@ a.has-text-danger-dark:hover, a.has-text-danger-dark:focus {
10157
10220
  }
10158
10221
  @media screen and (max-width: 1023px) {
10159
10222
  .hero.is-success .navbar-menu {
10160
- background-color: #48c78e;
10223
+ background-color: hsl(153, 53%, 53%);
10161
10224
  }
10162
10225
  }
10163
10226
  .hero.is-success .navbar-item,
@@ -10167,7 +10230,7 @@ a.has-text-danger-dark:hover, a.has-text-danger-dark:focus {
10167
10230
  .hero.is-success a.navbar-item:hover, .hero.is-success a.navbar-item.is-active,
10168
10231
  .hero.is-success .navbar-link:hover,
10169
10232
  .hero.is-success .navbar-link.is-active {
10170
- background-color: #3abc81;
10233
+ background-color: #3abb81;
10171
10234
  color: #fff;
10172
10235
  }
10173
10236
  .hero.is-success .tabs a {
@@ -10178,7 +10241,7 @@ a.has-text-danger-dark:hover, a.has-text-danger-dark:focus {
10178
10241
  opacity: 1;
10179
10242
  }
10180
10243
  .hero.is-success .tabs li.is-active a {
10181
- color: #48c78e !important;
10244
+ color: hsl(153, 53%, 53%) !important;
10182
10245
  opacity: 1;
10183
10246
  }
10184
10247
  .hero.is-success .tabs.is-boxed a, .hero.is-success .tabs.is-toggle a {
@@ -10190,14 +10253,14 @@ a.has-text-danger-dark:hover, a.has-text-danger-dark:focus {
10190
10253
  .hero.is-success .tabs.is-boxed li.is-active a, .hero.is-success .tabs.is-boxed li.is-active a:hover, .hero.is-success .tabs.is-toggle li.is-active a, .hero.is-success .tabs.is-toggle li.is-active a:hover {
10191
10254
  background-color: #fff;
10192
10255
  border-color: #fff;
10193
- color: #48c78e;
10256
+ color: hsl(153, 53%, 53%);
10194
10257
  }
10195
10258
  .hero.is-success.is-bold {
10196
- background-image: linear-gradient(141deg, #29b35e 0%, #48c78e 71%, #56d2af 100%);
10259
+ background-image: linear-gradient(141deg, #29b35e 0%, hsl(153, 53%, 53%) 71%, #56d2af 100%);
10197
10260
  }
10198
10261
  @media screen and (max-width: 768px) {
10199
10262
  .hero.is-success.is-bold .navbar-menu {
10200
- background-image: linear-gradient(141deg, #29b35e 0%, #48c78e 71%, #56d2af 100%);
10263
+ background-image: linear-gradient(141deg, #29b35e 0%, hsl(153, 53%, 53%) 71%, #56d2af 100%);
10201
10264
  }
10202
10265
  }
10203
10266
  .hero.is-warning {