holygrail2 1.3.9 → 1.3.10
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.
- package/dist/style-rtl.css +157 -86
- package/dist/style-rtl.css.map +1 -1
- package/dist/style.css +157 -86
- package/dist/style.css.map +1 -1
- package/package.json +1 -1
- package/scss/base/_alignment.scss +25 -3
- package/scss/base/_grid.scss +106 -164
- package/scss/base/_helpers.scss +9 -0
- package/scss/elements/_buttons.scss +21 -0
- package/scss/hg-lite/hg-lite.scss +2 -1
- package/scss/hg-lite/utilities/_animations.scss +0 -0
package/dist/style-rtl.css
CHANGED
|
@@ -358,10 +358,6 @@ button {
|
|
|
358
358
|
justify-content: center;
|
|
359
359
|
}
|
|
360
360
|
|
|
361
|
-
.content-sp-between {
|
|
362
|
-
justify-content: space-between;
|
|
363
|
-
}
|
|
364
|
-
|
|
365
361
|
.content-sp-around {
|
|
366
362
|
justify-content: space-around;
|
|
367
363
|
}
|
|
@@ -434,6 +430,7 @@ button {
|
|
|
434
430
|
.align-end {
|
|
435
431
|
display: flex;
|
|
436
432
|
align-items: end;
|
|
433
|
+
justify-content: end;
|
|
437
434
|
}
|
|
438
435
|
|
|
439
436
|
.align-center {
|
|
@@ -601,59 +598,77 @@ button {
|
|
|
601
598
|
}
|
|
602
599
|
}
|
|
603
600
|
|
|
601
|
+
.align-start {
|
|
602
|
+
align-items: start;
|
|
603
|
+
}
|
|
604
|
+
|
|
605
|
+
.content-sp-between {
|
|
606
|
+
justify-content: space-between;
|
|
607
|
+
}
|
|
608
|
+
|
|
609
|
+
@media (min-width: 992px) {
|
|
610
|
+
.md\:content-sp-between {
|
|
611
|
+
justify-content: space-between;
|
|
612
|
+
}
|
|
613
|
+
}
|
|
614
|
+
@media (max-width: 992px) {
|
|
615
|
+
.mdmax\:content-end {
|
|
616
|
+
justify-content: flex-end;
|
|
617
|
+
}
|
|
618
|
+
}
|
|
604
619
|
.container-full {
|
|
605
|
-
position: relative;
|
|
606
|
-
padding-inline: 8px;
|
|
607
|
-
margin-right: auto;
|
|
608
620
|
margin-left: auto;
|
|
621
|
+
margin-right: auto;
|
|
609
622
|
max-width: 1500px;
|
|
623
|
+
padding-inline: 8px;
|
|
624
|
+
position: relative;
|
|
610
625
|
}
|
|
611
626
|
@media (min-width: 768px) {
|
|
612
627
|
.container-full {
|
|
628
|
+
max-width: 768px;
|
|
613
629
|
padding-inline: 8px;
|
|
614
630
|
width: 90%;
|
|
615
|
-
max-width: 768px;
|
|
616
631
|
}
|
|
617
632
|
}
|
|
618
633
|
@media (min-width: 992px) {
|
|
619
634
|
.container-full {
|
|
620
|
-
width: 80%;
|
|
621
635
|
max-width: 992px;
|
|
636
|
+
width: 80%;
|
|
622
637
|
}
|
|
623
638
|
}
|
|
624
639
|
@media (min-width: 1280px) {
|
|
625
640
|
.container-full {
|
|
626
|
-
width: 80%;
|
|
627
641
|
max-width: 1280px;
|
|
642
|
+
width: 80%;
|
|
628
643
|
}
|
|
629
644
|
}
|
|
630
645
|
|
|
631
646
|
.container-total {
|
|
632
|
-
position: relative;
|
|
633
|
-
margin-right: 0;
|
|
634
647
|
margin-left: 0;
|
|
635
|
-
|
|
648
|
+
margin-right: 0;
|
|
636
649
|
max-width: 100%;
|
|
650
|
+
position: relative;
|
|
651
|
+
width: 100%;
|
|
637
652
|
}
|
|
638
653
|
@media (min-width: 992px) {
|
|
639
654
|
.container-total {
|
|
640
|
-
width: 100%;
|
|
641
655
|
max-width: 100%;
|
|
656
|
+
width: 100%;
|
|
642
657
|
}
|
|
643
658
|
}
|
|
644
659
|
|
|
645
660
|
.container-bleed {
|
|
646
|
-
position: relative;
|
|
647
|
-
padding-inline: 0;
|
|
648
|
-
margin-right: auto;
|
|
649
661
|
margin-left: auto;
|
|
662
|
+
margin-right: auto;
|
|
663
|
+
padding-inline: 0;
|
|
664
|
+
position: relative;
|
|
650
665
|
}
|
|
651
666
|
|
|
652
667
|
.container-fluid {
|
|
653
|
-
position: relative;
|
|
654
|
-
padding-inline: 8px;
|
|
655
|
-
margin-right: auto;
|
|
656
668
|
margin-left: auto;
|
|
669
|
+
margin-right: auto;
|
|
670
|
+
padding-inline: 8px;
|
|
671
|
+
position: relative;
|
|
657
672
|
}
|
|
658
673
|
|
|
659
674
|
.container-body {
|
|
@@ -668,8 +683,8 @@ button {
|
|
|
668
683
|
}
|
|
669
684
|
|
|
670
685
|
.container-body2 {
|
|
671
|
-
padding-left: 16px;
|
|
672
686
|
overflow: hidden;
|
|
687
|
+
padding-left: 16px;
|
|
673
688
|
}
|
|
674
689
|
@media (min-width: 992px) {
|
|
675
690
|
.container-body2 {
|
|
@@ -681,55 +696,55 @@ button {
|
|
|
681
696
|
}
|
|
682
697
|
|
|
683
698
|
.container {
|
|
684
|
-
|
|
685
|
-
|
|
699
|
+
margin-left: auto;
|
|
700
|
+
margin-right: auto;
|
|
686
701
|
max-width: 800px;
|
|
687
702
|
padding-inline: 8px;
|
|
688
|
-
|
|
689
|
-
|
|
703
|
+
position: relative;
|
|
704
|
+
width: 100%;
|
|
690
705
|
}
|
|
691
706
|
@media (min-width: 768px) {
|
|
692
707
|
.container {
|
|
708
|
+
max-width: 768px;
|
|
693
709
|
padding-inline: 8px;
|
|
694
710
|
width: 90%;
|
|
695
|
-
max-width: 768px;
|
|
696
711
|
}
|
|
697
712
|
}
|
|
698
713
|
@media (min-width: 992px) {
|
|
699
714
|
.container {
|
|
700
|
-
width: 80%;
|
|
701
715
|
max-width: 992px;
|
|
716
|
+
width: 80%;
|
|
702
717
|
}
|
|
703
718
|
}
|
|
704
719
|
@media (min-width: 1280px) {
|
|
705
720
|
.container {
|
|
706
|
-
width: 80%;
|
|
707
721
|
max-width: 1280px;
|
|
722
|
+
width: 80%;
|
|
708
723
|
}
|
|
709
724
|
}
|
|
710
725
|
@media (min-width: 1440px) {
|
|
711
726
|
.container {
|
|
712
|
-
width: 100%;
|
|
713
727
|
max-width: 1440px;
|
|
728
|
+
width: 100%;
|
|
714
729
|
}
|
|
715
730
|
}
|
|
716
731
|
|
|
717
732
|
.container-2 {
|
|
718
|
-
|
|
719
|
-
|
|
733
|
+
margin-left: auto;
|
|
734
|
+
margin-right: auto;
|
|
720
735
|
max-width: 700px;
|
|
721
736
|
padding-inline: 8px;
|
|
722
|
-
|
|
723
|
-
|
|
737
|
+
position: relative;
|
|
738
|
+
width: 90%;
|
|
724
739
|
}
|
|
725
740
|
|
|
726
741
|
.container-3 {
|
|
727
|
-
|
|
728
|
-
|
|
742
|
+
margin-left: auto;
|
|
743
|
+
margin-right: auto;
|
|
729
744
|
max-width: 900px;
|
|
730
745
|
padding-inline: 24px;
|
|
731
|
-
|
|
732
|
-
|
|
746
|
+
position: relative;
|
|
747
|
+
width: 100%;
|
|
733
748
|
}
|
|
734
749
|
@media (min-width: 768px) {
|
|
735
750
|
.container-3 {
|
|
@@ -738,20 +753,20 @@ button {
|
|
|
738
753
|
}
|
|
739
754
|
|
|
740
755
|
.container-4 {
|
|
741
|
-
|
|
742
|
-
|
|
756
|
+
margin-left: auto;
|
|
757
|
+
margin-right: auto;
|
|
743
758
|
max-width: 360px;
|
|
744
759
|
padding-inline: 16px;
|
|
745
|
-
|
|
746
|
-
|
|
760
|
+
position: relative;
|
|
761
|
+
width: 100%;
|
|
747
762
|
}
|
|
748
763
|
|
|
749
764
|
.container-5 {
|
|
750
|
-
|
|
751
|
-
width: 100%;
|
|
765
|
+
margin: 0 auto;
|
|
752
766
|
max-width: 800px;
|
|
753
767
|
padding: 0 8px;
|
|
754
|
-
|
|
768
|
+
position: relative;
|
|
769
|
+
width: 100%;
|
|
755
770
|
}
|
|
756
771
|
@media (min-width: 1280px) {
|
|
757
772
|
.container-5 {
|
|
@@ -761,25 +776,25 @@ button {
|
|
|
761
776
|
}
|
|
762
777
|
|
|
763
778
|
.container-6 {
|
|
764
|
-
position: relative;
|
|
765
|
-
width: 100%;
|
|
766
|
-
max-width: 442px;
|
|
767
779
|
margin: 0 auto;
|
|
780
|
+
max-width: 442px;
|
|
768
781
|
padding: 0 8px;
|
|
782
|
+
position: relative;
|
|
783
|
+
width: 100%;
|
|
769
784
|
}
|
|
770
785
|
|
|
771
786
|
.container-7 {
|
|
772
|
-
position: relative;
|
|
773
|
-
width: 100%;
|
|
774
|
-
max-width: 295px;
|
|
775
787
|
margin: 0 auto;
|
|
788
|
+
max-width: 295px;
|
|
776
789
|
padding: 0 16px;
|
|
790
|
+
position: relative;
|
|
791
|
+
width: 100%;
|
|
777
792
|
}
|
|
778
793
|
@media (min-width: 768px) {
|
|
779
794
|
.container-7 {
|
|
780
795
|
max-width: 460px;
|
|
781
|
-
padding-right: 8px;
|
|
782
796
|
padding-left: 8px;
|
|
797
|
+
padding-right: 8px;
|
|
783
798
|
}
|
|
784
799
|
}
|
|
785
800
|
@media (min-width: 992px) {
|
|
@@ -794,19 +809,19 @@ button {
|
|
|
794
809
|
}
|
|
795
810
|
|
|
796
811
|
.container-8 {
|
|
797
|
-
position: relative;
|
|
798
|
-
width: 100%;
|
|
799
|
-
max-width: 395px;
|
|
800
812
|
margin: 0 auto;
|
|
813
|
+
max-width: 395px;
|
|
801
814
|
padding: 0 8px;
|
|
815
|
+
position: relative;
|
|
816
|
+
width: 100%;
|
|
802
817
|
}
|
|
803
818
|
|
|
804
819
|
.container-9 {
|
|
805
|
-
position: relative;
|
|
806
|
-
width: 100%;
|
|
807
|
-
max-width: 798px;
|
|
808
820
|
margin: 0 auto;
|
|
821
|
+
max-width: 798px;
|
|
809
822
|
padding: 0 24px;
|
|
823
|
+
position: relative;
|
|
824
|
+
width: 100%;
|
|
810
825
|
}
|
|
811
826
|
@media (min-width: 768px) {
|
|
812
827
|
.container-9 {
|
|
@@ -815,16 +830,16 @@ button {
|
|
|
815
830
|
}
|
|
816
831
|
|
|
817
832
|
.container-10 {
|
|
818
|
-
position: relative;
|
|
819
833
|
max-width: 200px;
|
|
834
|
+
position: relative;
|
|
820
835
|
}
|
|
821
836
|
|
|
822
837
|
.container-11 {
|
|
823
|
-
position: relative;
|
|
824
|
-
width: 100%;
|
|
825
|
-
max-width: 1080px;
|
|
826
838
|
margin: 0 auto;
|
|
839
|
+
max-width: 1080px;
|
|
827
840
|
padding: 0 24px;
|
|
841
|
+
position: relative;
|
|
842
|
+
width: 100%;
|
|
828
843
|
}
|
|
829
844
|
@media (min-width: 768px) {
|
|
830
845
|
.container-11 {
|
|
@@ -833,10 +848,10 @@ button {
|
|
|
833
848
|
}
|
|
834
849
|
|
|
835
850
|
.container-12 {
|
|
836
|
-
position: relative;
|
|
837
|
-
width: 100%;
|
|
838
851
|
max-width: 1080px;
|
|
839
852
|
padding: 0 24px;
|
|
853
|
+
position: relative;
|
|
854
|
+
width: 100%;
|
|
840
855
|
}
|
|
841
856
|
@media (min-width: 768px) {
|
|
842
857
|
.container-12 {
|
|
@@ -845,53 +860,53 @@ button {
|
|
|
845
860
|
}
|
|
846
861
|
|
|
847
862
|
.container-360 {
|
|
848
|
-
width: 100%;
|
|
849
863
|
max-width: 360px;
|
|
864
|
+
width: 100%;
|
|
850
865
|
}
|
|
851
866
|
|
|
852
867
|
.container-496 {
|
|
853
|
-
width: 100%;
|
|
854
868
|
max-width: 496px;
|
|
869
|
+
width: 100%;
|
|
855
870
|
}
|
|
856
871
|
|
|
857
872
|
.container-512 {
|
|
858
|
-
width: 100%;
|
|
859
873
|
max-width: 512px;
|
|
874
|
+
width: 100%;
|
|
860
875
|
}
|
|
861
876
|
|
|
862
877
|
.container-640 {
|
|
863
|
-
width: 100%;
|
|
864
878
|
max-width: 640px;
|
|
879
|
+
width: 100%;
|
|
865
880
|
}
|
|
866
881
|
|
|
867
882
|
.row {
|
|
868
883
|
display: flex;
|
|
869
884
|
flex-wrap: wrap;
|
|
870
|
-
margin-right: -8px;
|
|
871
885
|
margin-left: -8px;
|
|
886
|
+
margin-right: -8px;
|
|
872
887
|
}
|
|
873
888
|
@media (min-width: 768px) {
|
|
874
889
|
.row {
|
|
875
|
-
margin-right: -8px;
|
|
876
890
|
margin-left: -8px;
|
|
891
|
+
margin-right: -8px;
|
|
877
892
|
}
|
|
878
893
|
}
|
|
879
894
|
@media (min-width: 992px) {
|
|
880
895
|
.row {
|
|
881
|
-
margin-right: -8px;
|
|
882
896
|
margin-left: -8px;
|
|
897
|
+
margin-right: -8px;
|
|
883
898
|
}
|
|
884
899
|
}
|
|
885
900
|
@media (min-width: 1280px) {
|
|
886
901
|
.row {
|
|
887
|
-
margin-right: -8px;
|
|
888
902
|
margin-left: -8px;
|
|
903
|
+
margin-right: -8px;
|
|
889
904
|
}
|
|
890
905
|
}
|
|
891
906
|
@media (min-width: 1440px) {
|
|
892
907
|
.row {
|
|
893
|
-
margin-right: -8px;
|
|
894
908
|
margin-left: -8px;
|
|
909
|
+
margin-right: -8px;
|
|
895
910
|
}
|
|
896
911
|
}
|
|
897
912
|
|
|
@@ -1195,10 +1210,10 @@ button {
|
|
|
1195
1210
|
}
|
|
1196
1211
|
[class*=col-] {
|
|
1197
1212
|
box-sizing: border-box;
|
|
1198
|
-
position: relative;
|
|
1199
1213
|
min-height: 1px;
|
|
1200
|
-
padding-right: 8px;
|
|
1201
1214
|
padding-left: 8px;
|
|
1215
|
+
padding-right: 8px;
|
|
1216
|
+
position: relative;
|
|
1202
1217
|
}
|
|
1203
1218
|
|
|
1204
1219
|
.col {
|
|
@@ -1377,11 +1392,16 @@ button {
|
|
|
1377
1392
|
}
|
|
1378
1393
|
.list-grid {
|
|
1379
1394
|
display: grid;
|
|
1380
|
-
grid-template-columns: repeat(4, 1fr);
|
|
1381
1395
|
gap: 16px;
|
|
1382
|
-
|
|
1383
|
-
max-width: 1200px;
|
|
1396
|
+
grid-template-columns: repeat(4, 1fr);
|
|
1384
1397
|
margin: 0 auto;
|
|
1398
|
+
max-width: 1200px;
|
|
1399
|
+
width: 100%;
|
|
1400
|
+
}
|
|
1401
|
+
|
|
1402
|
+
.grid-1 {
|
|
1403
|
+
display: grid;
|
|
1404
|
+
grid-template-columns: 1fr;
|
|
1385
1405
|
}
|
|
1386
1406
|
|
|
1387
1407
|
.grid-2 {
|
|
@@ -1394,10 +1414,19 @@ button {
|
|
|
1394
1414
|
grid-template-columns: repeat(3, 1fr);
|
|
1395
1415
|
}
|
|
1396
1416
|
|
|
1417
|
+
.grid-4 {
|
|
1418
|
+
display: grid;
|
|
1419
|
+
grid-template-columns: 1fr 1fr 1fr 1fr;
|
|
1420
|
+
}
|
|
1421
|
+
|
|
1397
1422
|
.colgap-16 {
|
|
1398
1423
|
column-gap: 16px;
|
|
1399
1424
|
}
|
|
1400
1425
|
|
|
1426
|
+
.gap-8 {
|
|
1427
|
+
gap: 8px;
|
|
1428
|
+
}
|
|
1429
|
+
|
|
1401
1430
|
.colgap-8 {
|
|
1402
1431
|
column-gap: 8px;
|
|
1403
1432
|
}
|
|
@@ -1416,12 +1445,12 @@ button {
|
|
|
1416
1445
|
}
|
|
1417
1446
|
|
|
1418
1447
|
.grid-8 {
|
|
1448
|
+
align-items: start;
|
|
1419
1449
|
display: grid;
|
|
1420
1450
|
grid-template-columns: repeat(8, 1fr);
|
|
1421
|
-
width: 100%;
|
|
1422
|
-
align-items: start;
|
|
1423
|
-
max-width: 1200px;
|
|
1424
1451
|
margin: 0 auto;
|
|
1452
|
+
max-width: 1200px;
|
|
1453
|
+
width: 100%;
|
|
1425
1454
|
}
|
|
1426
1455
|
.grid-8 img {
|
|
1427
1456
|
border: 1px solid #eaeaea;
|
|
@@ -1429,17 +1458,31 @@ button {
|
|
|
1429
1458
|
|
|
1430
1459
|
@media (min-width: 768px) {
|
|
1431
1460
|
.grid-2-desktop {
|
|
1461
|
+
align-items: end;
|
|
1462
|
+
column-gap: 16px;
|
|
1432
1463
|
display: grid;
|
|
1433
1464
|
grid-template-columns: repeat(2, 1fr);
|
|
1434
|
-
|
|
1435
|
-
|
|
1465
|
+
}
|
|
1466
|
+
}
|
|
1467
|
+
|
|
1468
|
+
@media (min-width: 768px) {
|
|
1469
|
+
.sm\:grid-1 {
|
|
1470
|
+
display: grid;
|
|
1471
|
+
grid-template-columns: 1fr;
|
|
1436
1472
|
}
|
|
1437
1473
|
}
|
|
1438
1474
|
|
|
1439
1475
|
@media (min-width: 768px) {
|
|
1440
1476
|
.sm\:grid-2 {
|
|
1441
1477
|
display: grid;
|
|
1442
|
-
grid-template-columns:
|
|
1478
|
+
grid-template-columns: 1fr 1fr;
|
|
1479
|
+
}
|
|
1480
|
+
}
|
|
1481
|
+
|
|
1482
|
+
@media (min-width: 768px) {
|
|
1483
|
+
.sm\:grid-3 {
|
|
1484
|
+
display: grid;
|
|
1485
|
+
grid-template-columns: 1fr 1fr 1fr;
|
|
1443
1486
|
}
|
|
1444
1487
|
}
|
|
1445
1488
|
|
|
@@ -1473,21 +1516,21 @@ button {
|
|
|
1473
1516
|
}
|
|
1474
1517
|
|
|
1475
1518
|
.grid-3-6-8 {
|
|
1519
|
+
column-gap: 6px;
|
|
1476
1520
|
display: grid;
|
|
1477
1521
|
grid-template-columns: repeat(3, 1fr);
|
|
1478
|
-
column-gap: 6px;
|
|
1479
1522
|
max-width: 100%;
|
|
1480
1523
|
}
|
|
1481
1524
|
@media (min-width: 992px) {
|
|
1482
1525
|
.grid-3-6-8 {
|
|
1483
|
-
grid-template-columns: repeat(6, 1fr);
|
|
1484
1526
|
column-gap: 16px;
|
|
1527
|
+
grid-template-columns: repeat(6, 1fr);
|
|
1485
1528
|
}
|
|
1486
1529
|
}
|
|
1487
1530
|
@media (min-width: 1280px) {
|
|
1488
1531
|
.grid-3-6-8 {
|
|
1489
|
-
grid-template-columns: repeat(8, 1fr);
|
|
1490
1532
|
column-gap: 16px;
|
|
1533
|
+
grid-template-columns: repeat(8, 1fr);
|
|
1491
1534
|
}
|
|
1492
1535
|
}
|
|
1493
1536
|
|
|
@@ -6316,6 +6359,11 @@ strong {
|
|
|
6316
6359
|
flex-grow: 1;
|
|
6317
6360
|
}
|
|
6318
6361
|
|
|
6362
|
+
.flex-grow {
|
|
6363
|
+
flex-grow: 1;
|
|
6364
|
+
overflow-y: auto;
|
|
6365
|
+
}
|
|
6366
|
+
|
|
6319
6367
|
.grow-0 {
|
|
6320
6368
|
flex-grow: 0;
|
|
6321
6369
|
}
|
|
@@ -6324,6 +6372,10 @@ strong {
|
|
|
6324
6372
|
cursor: default;
|
|
6325
6373
|
}
|
|
6326
6374
|
|
|
6375
|
+
.no-relative {
|
|
6376
|
+
position: inherit;
|
|
6377
|
+
}
|
|
6378
|
+
|
|
6327
6379
|
.theme-keyboard-accesible *:focus,
|
|
6328
6380
|
.theme-keyboard-accesible *:focus-visible,
|
|
6329
6381
|
.theme-keyboard-accesible [class*=checkbox-]:focus + label,
|
|
@@ -7071,6 +7123,25 @@ button {
|
|
|
7071
7123
|
background-color: transparent;
|
|
7072
7124
|
}
|
|
7073
7125
|
|
|
7126
|
+
.btn-tertiary {
|
|
7127
|
+
height: auto;
|
|
7128
|
+
padding-top: 6px;
|
|
7129
|
+
padding-bottom: 6px;
|
|
7130
|
+
line-height: 1;
|
|
7131
|
+
min-width: 24px;
|
|
7132
|
+
padding-inline: 0;
|
|
7133
|
+
font-size: 14px;
|
|
7134
|
+
}
|
|
7135
|
+
|
|
7136
|
+
.btn-tertiary.active {
|
|
7137
|
+
border-bottom: 0.5px solid #000000;
|
|
7138
|
+
}
|
|
7139
|
+
|
|
7140
|
+
@media (min-width: 992px) {
|
|
7141
|
+
.btn-tertiary {
|
|
7142
|
+
font-size: 12px;
|
|
7143
|
+
}
|
|
7144
|
+
}
|
|
7074
7145
|
.btn-text {
|
|
7075
7146
|
background-color: transparent;
|
|
7076
7147
|
border-color: transparent;
|