funuicss 3.7.4 → 3.7.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.
- package/css/fun.css +361 -575
- package/package.json +1 -1
- package/ui/button/Button.d.ts +1 -1
- package/ui/button/Button.js +81 -37
- package/ui/chart/Bar.js +37 -33
- package/ui/chart/Line.js +32 -28
- package/ui/chart/Pie.js +5 -1
- package/ui/input/Input.js +263 -93
package/css/fun.css
CHANGED
|
@@ -607,137 +607,137 @@
|
|
|
607
607
|
/* Font utilities with matching line heights */
|
|
608
608
|
.text-xs {
|
|
609
609
|
font-size: var(--text-xs-responsive) !important;
|
|
610
|
-
line-height: var(--leading-xs-responsive)
|
|
610
|
+
line-height: var(--leading-xs-responsive);
|
|
611
611
|
}
|
|
612
612
|
|
|
613
613
|
.text-sm {
|
|
614
614
|
font-size: var(--text-sm-responsive) !important;
|
|
615
|
-
line-height: var(--leading-sm-responsive)
|
|
615
|
+
line-height: var(--leading-sm-responsive);
|
|
616
616
|
}
|
|
617
617
|
|
|
618
618
|
.text-base {
|
|
619
619
|
font-size: var(--text-base-responsive) !important;
|
|
620
|
-
line-height: var(--leading-base-responsive)
|
|
620
|
+
line-height: var(--leading-base-responsive);
|
|
621
621
|
}
|
|
622
622
|
|
|
623
623
|
.text-lg {
|
|
624
624
|
font-size: var(--text-lg-responsive) !important;
|
|
625
|
-
line-height: var(--leading-lg-responsive)
|
|
625
|
+
line-height: var(--leading-lg-responsive);
|
|
626
626
|
}
|
|
627
627
|
|
|
628
628
|
.text-xl {
|
|
629
629
|
font-size: var(--text-xl-responsive) !important;
|
|
630
|
-
line-height: var(--leading-xl-responsive)
|
|
631
|
-
font-weight: 400
|
|
630
|
+
line-height: var(--leading-xl-responsive);
|
|
631
|
+
font-weight: 400;
|
|
632
632
|
}
|
|
633
633
|
|
|
634
634
|
.text-2xl {
|
|
635
635
|
font-size: var(--text-2xl-responsive) !important;
|
|
636
|
-
line-height: var(--leading-2xl-responsive)
|
|
637
|
-
font-weight: 500
|
|
636
|
+
line-height: var(--leading-2xl-responsive);
|
|
637
|
+
font-weight: 500;
|
|
638
638
|
}
|
|
639
639
|
|
|
640
640
|
.text-3xl {
|
|
641
641
|
font-size: var(--text-3xl-responsive) !important;
|
|
642
|
-
line-height: var(--leading-3xl-responsive)
|
|
643
|
-
font-weight: 500
|
|
642
|
+
line-height: var(--leading-3xl-responsive);
|
|
643
|
+
font-weight: 500;
|
|
644
644
|
}
|
|
645
645
|
|
|
646
646
|
.text-4xl {
|
|
647
647
|
font-size: var(--text-4xl-responsive) !important;
|
|
648
|
-
line-height: var(--leading-4xl-responsive)
|
|
649
|
-
font-weight: 600
|
|
648
|
+
line-height: var(--leading-4xl-responsive);
|
|
649
|
+
font-weight: 600;
|
|
650
650
|
}
|
|
651
651
|
|
|
652
652
|
.text-5xl {
|
|
653
653
|
font-size: var(--text-5xl-responsive) !important;
|
|
654
|
-
line-height: var(--leading-5xl-responsive)
|
|
655
|
-
font-weight: 600
|
|
654
|
+
line-height: var(--leading-5xl-responsive);
|
|
655
|
+
font-weight: 600;
|
|
656
656
|
}
|
|
657
657
|
|
|
658
658
|
.text-6xl {
|
|
659
659
|
font-size: var(--text-6xl-responsive) !important;
|
|
660
|
-
line-height: var(--leading-6xl-responsive)
|
|
661
|
-
font-weight: 600
|
|
660
|
+
line-height: var(--leading-6xl-responsive);
|
|
661
|
+
font-weight: 600;
|
|
662
662
|
}
|
|
663
663
|
|
|
664
664
|
.text-7xl {
|
|
665
665
|
font-size: var(--text-7xl-responsive) !important;
|
|
666
|
-
line-height: var(--leading-7xl-responsive)
|
|
667
|
-
font-weight: 600
|
|
666
|
+
line-height: var(--leading-7xl-responsive);
|
|
667
|
+
font-weight: 600;
|
|
668
668
|
}
|
|
669
669
|
|
|
670
670
|
.text-8xl {
|
|
671
671
|
font-size: var(--text-8xl-responsive) !important;
|
|
672
|
-
line-height: var(--leading-8xl-responsive)
|
|
673
|
-
font-weight: 800
|
|
672
|
+
line-height: var(--leading-8xl-responsive);
|
|
673
|
+
font-weight: 800;
|
|
674
674
|
}
|
|
675
675
|
|
|
676
676
|
.text-9xl {
|
|
677
677
|
font-size: var(--text-9xl-responsive) !important;
|
|
678
|
-
line-height: var(--leading-9xl-responsive)
|
|
679
|
-
font-weight: 900
|
|
678
|
+
line-height: var(--leading-9xl-responsive);
|
|
679
|
+
font-weight: 900;
|
|
680
680
|
}
|
|
681
681
|
|
|
682
682
|
.text-10xl {
|
|
683
683
|
font-size: var(--text-10xl-responsive) !important;
|
|
684
|
-
line-height: var(--leading-10xl-responsive)
|
|
685
|
-
font-weight: 900
|
|
684
|
+
line-height: var(--leading-10xl-responsive);
|
|
685
|
+
font-weight: 900;
|
|
686
686
|
}
|
|
687
687
|
|
|
688
688
|
.text-big {
|
|
689
689
|
font-size: var(--font-size-big-responsive) !important;
|
|
690
|
-
line-height: var(--line-height-big-responsive)
|
|
691
|
-
font-weight: var(--font-weight-big)
|
|
692
|
-
font-style: var(--font-style-big)
|
|
693
|
-
text-decoration: var(--text-decoration-big)
|
|
694
|
-
text-transform: var(--text-transform-big)
|
|
695
|
-
letter-spacing: var(--letter-spacing-big)
|
|
690
|
+
line-height: var(--line-height-big-responsive);
|
|
691
|
+
font-weight: var(--font-weight-big);
|
|
692
|
+
font-style: var(--font-style-big);
|
|
693
|
+
text-decoration: var(--text-decoration-big);
|
|
694
|
+
text-transform: var(--text-transform-big);
|
|
695
|
+
letter-spacing: var(--letter-spacing-big);
|
|
696
696
|
}
|
|
697
697
|
|
|
698
698
|
.text-bigger {
|
|
699
699
|
font-size: var(--font-size-bigger-responsive) !important;
|
|
700
|
-
line-height: var(--line-height-bigger-responsive)
|
|
701
|
-
font-weight: var(--font-weight-bigger)
|
|
702
|
-
font-style: var(--font-style-bigger)
|
|
703
|
-
text-decoration: var(--text-decoration-bigger)
|
|
704
|
-
text-transform: var(--text-transform-bigger)
|
|
705
|
-
letter-spacing: var(--letter-spacing-bigger)
|
|
700
|
+
line-height: var(--line-height-bigger-responsive);
|
|
701
|
+
font-weight: var(--font-weight-bigger);
|
|
702
|
+
font-style: var(--font-style-bigger);
|
|
703
|
+
text-decoration: var(--text-decoration-bigger);
|
|
704
|
+
text-transform: var(--text-transform-bigger);
|
|
705
|
+
letter-spacing: var(--letter-spacing-bigger);
|
|
706
706
|
}
|
|
707
707
|
|
|
708
708
|
.text-jumbo {
|
|
709
709
|
font-size: var(--font-size-jumbo-responsive) !important;
|
|
710
|
-
line-height: var(--line-height-jumbo-responsive)
|
|
711
|
-
font-weight: var(--font-weight-jumbo)
|
|
712
|
-
font-style: var(--font-style-jumbo)
|
|
713
|
-
text-decoration: var(--text-decoration-jumbo)
|
|
714
|
-
text-transform: var(--text-transform-jumbo)
|
|
715
|
-
letter-spacing: var(--letter-spacing-jumbo)
|
|
710
|
+
line-height: var(--line-height-jumbo-responsive);
|
|
711
|
+
font-weight: var(--font-weight-jumbo);
|
|
712
|
+
font-style: var(--font-style-jumbo);
|
|
713
|
+
text-decoration: var(--text-decoration-jumbo);
|
|
714
|
+
text-transform: var(--text-transform-jumbo);
|
|
715
|
+
letter-spacing: var(--letter-spacing-jumbo);
|
|
716
716
|
}
|
|
717
717
|
.important{
|
|
718
718
|
font-weight: 700;
|
|
719
|
-
color: var(--primary)
|
|
719
|
+
color: var(--primary);
|
|
720
720
|
}
|
|
721
721
|
|
|
722
722
|
/* Mini sizes */
|
|
723
723
|
.text-small {
|
|
724
724
|
font-size: var(--font-size-small) !important;
|
|
725
|
-
line-height: var(--line-height-small)
|
|
726
|
-
font-weight: var(--font-weight-small)
|
|
727
|
-
font-style: var(--font-style-small)
|
|
728
|
-
text-decoration: var(--text-decoration-small)
|
|
729
|
-
text-transform: var(--text-transform-small)
|
|
730
|
-
letter-spacing: var(--letter-spacing-small)
|
|
725
|
+
line-height: var(--line-height-small);
|
|
726
|
+
font-weight: var(--font-weight-small);
|
|
727
|
+
font-style: var(--font-style-small);
|
|
728
|
+
text-decoration: var(--text-decoration-small);
|
|
729
|
+
text-transform: var(--text-transform-small);
|
|
730
|
+
letter-spacing: var(--letter-spacing-small);
|
|
731
731
|
}
|
|
732
732
|
|
|
733
733
|
.text-smaller {
|
|
734
734
|
font-size: var(--font-size-smaller) !important;
|
|
735
|
-
line-height: var(--line-height-smaller)
|
|
736
|
-
font-weight: var(--font-weight-smaller)
|
|
737
|
-
font-style: var(--font-style-smaller)
|
|
738
|
-
text-decoration: var(--text-decoration-smaller)
|
|
739
|
-
text-transform: var(--text-transform-smaller)
|
|
740
|
-
letter-spacing: var(--letter-spacing-smaller)
|
|
735
|
+
line-height: var(--line-height-smaller);
|
|
736
|
+
font-weight: var(--font-weight-smaller);
|
|
737
|
+
font-style: var(--font-style-smaller);
|
|
738
|
+
text-decoration: var(--text-decoration-smaller);
|
|
739
|
+
text-transform: var(--text-transform-smaller);
|
|
740
|
+
letter-spacing: var(--letter-spacing-smaller);
|
|
741
741
|
}
|
|
742
742
|
|
|
743
743
|
/* Headings */
|
|
@@ -762,66 +762,65 @@ h1,
|
|
|
762
762
|
|
|
763
763
|
h1, .h1 {
|
|
764
764
|
font-size: var(--font-size-h1-responsive) !important;
|
|
765
|
-
line-height: var(--line-height-h1-responsive)
|
|
766
|
-
font-weight: var(--font-weight-h1)
|
|
767
|
-
font-style: var(--font-style-h1)
|
|
768
|
-
text-decoration: var(--text-decoration-h1)
|
|
769
|
-
text-transform: var(--text-transform-h1)
|
|
770
|
-
letter-spacing: var(--letter-spacing-h1)
|
|
765
|
+
line-height: var(--line-height-h1-responsive);
|
|
766
|
+
font-weight: var(--font-weight-h1);
|
|
767
|
+
font-style: var(--font-style-h1);
|
|
768
|
+
text-decoration: var(--text-decoration-h1);
|
|
769
|
+
text-transform: var(--text-transform-h1);
|
|
770
|
+
letter-spacing: var(--letter-spacing-h1);
|
|
771
771
|
}
|
|
772
772
|
|
|
773
773
|
h2, .h2 {
|
|
774
774
|
font-size: var(--font-size-h2-responsive) !important;
|
|
775
|
-
line-height: var(--line-height-h2-responsive)
|
|
776
|
-
font-weight: var(--font-weight-h2)
|
|
777
|
-
font-style: var(--font-style-h2)
|
|
778
|
-
text-decoration: var(--text-decoration-h2)
|
|
779
|
-
text-transform: var(--text-transform-h2)
|
|
780
|
-
letter-spacing: var(--letter-spacing-h2)
|
|
775
|
+
line-height: var(--line-height-h2-responsive);
|
|
776
|
+
font-weight: var(--font-weight-h2);
|
|
777
|
+
font-style: var(--font-style-h2);
|
|
778
|
+
text-decoration: var(--text-decoration-h2);
|
|
779
|
+
text-transform: var(--text-transform-h2);
|
|
780
|
+
letter-spacing: var(--letter-spacing-h2);
|
|
781
781
|
}
|
|
782
782
|
|
|
783
783
|
h3, .h3 {
|
|
784
784
|
font-size: var(--font-size-h3-responsive) !important;
|
|
785
|
-
line-height: var(--line-height-h3-responsive)
|
|
786
|
-
font-weight: var(--font-weight-h3)
|
|
787
|
-
font-style: var(--font-style-h3)
|
|
788
|
-
text-decoration: var(--text-decoration-h3)
|
|
789
|
-
text-transform: var(--text-transform-h3)
|
|
790
|
-
letter-spacing: var(--letter-spacing-h3)
|
|
785
|
+
line-height: var(--line-height-h3-responsive);
|
|
786
|
+
font-weight: var(--font-weight-h3);
|
|
787
|
+
font-style: var(--font-style-h3);
|
|
788
|
+
text-decoration: var(--text-decoration-h3);
|
|
789
|
+
text-transform: var(--text-transform-h3);
|
|
790
|
+
letter-spacing: var(--letter-spacing-h3);
|
|
791
791
|
}
|
|
792
792
|
|
|
793
793
|
h4, .h4 {
|
|
794
794
|
font-size: var(--font-size-h4-responsive) !important;
|
|
795
|
-
line-height: var(--line-height-h4-responsive)
|
|
796
|
-
font-weight: var(--font-weight-h4)
|
|
797
|
-
font-style: var(--font-style-h4)
|
|
798
|
-
text-decoration: var(--text-decoration-h4)
|
|
799
|
-
text-transform: var(--text-transform-h4)
|
|
800
|
-
letter-spacing: var(--letter-spacing-h4)
|
|
795
|
+
line-height: var(--line-height-h4-responsive);
|
|
796
|
+
font-weight: var(--font-weight-h4);
|
|
797
|
+
font-style: var(--font-style-h4);
|
|
798
|
+
text-decoration: var(--text-decoration-h4);
|
|
799
|
+
text-transform: var(--text-transform-h4);
|
|
800
|
+
letter-spacing: var(--letter-spacing-h4);
|
|
801
801
|
}
|
|
802
802
|
|
|
803
803
|
h5, .h5 {
|
|
804
804
|
font-size: var(--font-size-h5-responsive) !important;
|
|
805
|
-
line-height: var(--line-height-h5-responsive)
|
|
806
|
-
font-weight: var(--font-weight-h5)
|
|
807
|
-
font-style: var(--font-style-h5)
|
|
808
|
-
text-decoration: var(--text-decoration-h5)
|
|
809
|
-
text-transform: var(--text-transform-h5)
|
|
810
|
-
letter-spacing: var(--letter-spacing-h5)
|
|
805
|
+
line-height: var(--line-height-h5-responsive);
|
|
806
|
+
font-weight: var(--font-weight-h5);
|
|
807
|
+
font-style: var(--font-style-h5);
|
|
808
|
+
text-decoration: var(--text-decoration-h5);
|
|
809
|
+
text-transform: var(--text-transform-h5);
|
|
810
|
+
letter-spacing: var(--letter-spacing-h5);
|
|
811
811
|
}
|
|
812
812
|
|
|
813
813
|
h6, .h6 {
|
|
814
814
|
font-size: var(--font-size-h6-responsive) !important;
|
|
815
|
-
line-height: var(--line-height-h6-responsive)
|
|
816
|
-
font-weight: var(--font-weight-h6)
|
|
817
|
-
font-style: var(--font-style-h6)
|
|
818
|
-
text-decoration: var(--text-decoration-h6)
|
|
819
|
-
text-transform: var(--text-transform-h6)
|
|
820
|
-
letter-spacing: var(--letter-spacing-h6)
|
|
815
|
+
line-height: var(--line-height-h6-responsive);
|
|
816
|
+
font-weight: var(--font-weight-h6);
|
|
817
|
+
font-style: var(--font-style-h6);
|
|
818
|
+
text-decoration: var(--text-decoration-h6);
|
|
819
|
+
text-transform: var(--text-transform-h6);
|
|
820
|
+
letter-spacing: var(--letter-spacing-h6);
|
|
821
821
|
}
|
|
822
822
|
|
|
823
823
|
|
|
824
|
-
|
|
825
824
|
/* For WebKit browsers (Chrome, Edge, Brave, Safari) */
|
|
826
825
|
::-webkit-scrollbar {
|
|
827
826
|
width: 10px;
|
|
@@ -952,10 +951,10 @@ Link {
|
|
|
952
951
|
background: transparent;
|
|
953
952
|
transition: 0.3s;
|
|
954
953
|
color: var(--linkColor);
|
|
955
|
-
font-weight: 500;
|
|
956
954
|
}
|
|
957
955
|
a:hover {
|
|
958
|
-
color: var(--
|
|
956
|
+
color: var(--primary);
|
|
957
|
+
|
|
959
958
|
}
|
|
960
959
|
|
|
961
960
|
button {
|
|
@@ -971,7 +970,6 @@ link:hover {
|
|
|
971
970
|
|
|
972
971
|
|
|
973
972
|
|
|
974
|
-
|
|
975
973
|
.text-minified , .text-md{
|
|
976
974
|
font-size: var(--minifiedFontSize);
|
|
977
975
|
line-height: 1rem;
|
|
@@ -983,413 +981,154 @@ link:hover {
|
|
|
983
981
|
letter-spacing: normal;
|
|
984
982
|
}
|
|
985
983
|
|
|
984
|
+
/* Typography */
|
|
985
|
+
.text-bold { font-weight: bold !important; }
|
|
986
|
+
.text-bolder { font-weight: bolder !important; }
|
|
987
|
+
.lightText { font-weight: 300 !important; }
|
|
988
|
+
.lighterText { font-weight: 200 !important; }
|
|
989
|
+
.underlineText { text-decoration: underline; }
|
|
990
|
+
.emp { font-style: italic; }
|
|
991
|
+
.italicText { font-style: italic; }
|
|
992
|
+
.uppercase { text-transform: uppercase; }
|
|
993
|
+
.lowercase { text-transform: lowercase; }
|
|
994
|
+
.capitalize { text-transform: capitalize; }
|
|
995
|
+
.monospace { font-family: monospace !important; }
|
|
996
|
+
|
|
997
|
+
/* Scroll */
|
|
998
|
+
.scroll-y { overflow-y: auto !important; overflow-x: visible !important; }
|
|
999
|
+
.scroll-x { overflow-x: auto !important; overflow-y: visible !important; }
|
|
1000
|
+
.scroll { overflow: auto !important; }
|
|
1001
|
+
.vertical-scroll { overflow-y: scroll; }
|
|
1002
|
+
.horizontal-scroll { overflow-x: scroll; }
|
|
1003
|
+
|
|
1004
|
+
/* Helpers */
|
|
1005
|
+
.glassy { backdrop-filter: blur(0.3rem); background-color: transparent !important; }
|
|
1006
|
+
.transparent { background-color: transparent !important; }
|
|
1007
|
+
.flat { border-radius: 0rem !important; }
|
|
1008
|
+
.no-padding { padding: 0px !important; }
|
|
1009
|
+
.no-margin { margin: 0px; }
|
|
1010
|
+
.line-through { text-decoration: line-through; }
|
|
1011
|
+
.underline { text-decoration: underline; }
|
|
1012
|
+
.overline { text-decoration: overline; }
|
|
1013
|
+
.wavy { text-decoration: wavy; }
|
|
1014
|
+
.borderless { border: none; }
|
|
1015
|
+
.border { border: var(--border); }
|
|
1016
|
+
.hide { display: none; }
|
|
1017
|
+
.show { display: block; }
|
|
1018
|
+
.center { margin: 0px auto; }
|
|
1019
|
+
.float-right { float: right; }
|
|
1020
|
+
.float-left { float: left; }
|
|
1021
|
+
.clear-both { clear: both; }
|
|
1022
|
+
.responsive { width: 100%; height: auto; }
|
|
1023
|
+
|
|
1024
|
+
/* Text Alignment */
|
|
1025
|
+
.text-center { text-align: center !important; }
|
|
1026
|
+
.text-left { text-align: left !important; }
|
|
1027
|
+
.text-right { text-align: right !important; }
|
|
1028
|
+
.text-justify { text-align: justify !important; }
|
|
1029
|
+
|
|
1030
|
+
/* Sections */
|
|
1031
|
+
.section { margin-top: 1rem; margin-bottom: 1rem; }
|
|
1032
|
+
.minSection { margin-top: 0.5rem; margin-bottom: 0.5rem; }
|
|
1033
|
+
.maxSection { margin-top: 2rem; margin-bottom: 2rem; }
|
|
1034
|
+
|
|
1035
|
+
/* Opacity */
|
|
1036
|
+
.opacity-1, .hover-opacity-1:hover { opacity: 1; }
|
|
1037
|
+
.opacity-2, .hover-opacity-2:hover { opacity: 0.9; }
|
|
1038
|
+
.opacity-3, .hover-opacity-3:hover { opacity: 0.8; }
|
|
1039
|
+
.opacity-4, .hover-opacity-4:hover { opacity: 0.7; }
|
|
1040
|
+
.opacity-5, .hover-opacity-5:hover { opacity: 0.6; }
|
|
1041
|
+
.opacity-6, .hover-opacity-6:hover { opacity: 0.5; }
|
|
1042
|
+
.opacity-7, .hover-opacity-7:hover { opacity: 0.4; }
|
|
1043
|
+
.opacity-8, .hover-opacity-8:hover { opacity: 0.2; }
|
|
1044
|
+
.opacity-9, .hover-opacity-9:hover { opacity: 0.1; }
|
|
1045
|
+
|
|
1046
|
+
/* Borders */
|
|
1047
|
+
.hr, .bb { border-bottom: var(--border); }
|
|
1048
|
+
.vr, .bl { border-left: var(--border); }
|
|
1049
|
+
.bt { border-top: var(--border); }
|
|
1050
|
+
.br { border-right: var(--border); }
|
|
1051
|
+
.top-border { border-top: var(--border); }
|
|
1052
|
+
.bottom-border { border-bottom: var(--border); }
|
|
1053
|
+
.right-border { border-right: var(--border); }
|
|
1054
|
+
.left-border { border-left: var(--border); }
|
|
1055
|
+
|
|
1056
|
+
/* Z-Index */
|
|
1057
|
+
.z-index-1 { z-index: 1; }
|
|
1058
|
+
.z-index-2 { z-index: 2; }
|
|
1059
|
+
.z-index-3 { z-index: 3; }
|
|
1060
|
+
.z-index-4 { z-index: 4; }
|
|
1061
|
+
.z-index-5 { z-index: 5; }
|
|
1062
|
+
.z-index-6 { z-index: 6; }
|
|
1063
|
+
.z-index-7 { z-index: 7; }
|
|
1064
|
+
.z-index-8 { z-index: 8; }
|
|
1065
|
+
.z-index-9 { z-index: 9; }
|
|
1066
|
+
.z-index-10 { z-index: 10; }
|
|
1067
|
+
|
|
1068
|
+
/* Positioning */
|
|
1069
|
+
.top-right { position: absolute; top: 0px; right: 0px; }
|
|
1070
|
+
.top-left { position: absolute; top: 0px; left: 0px; }
|
|
1071
|
+
.top { position: absolute; top: 0px; }
|
|
1072
|
+
.bottom-right { position: absolute; bottom: 0px; right: 0px; }
|
|
1073
|
+
.bottom-left { position: absolute; bottom: 0px; left: 0px; }
|
|
1074
|
+
.bottom { position: absolute; bottom: 0px; }
|
|
1075
|
+
.middle { display: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }
|
|
1076
|
+
.relative { position: relative; }
|
|
1077
|
+
.fixed { position: fixed; }
|
|
1078
|
+
.sticky { position: sticky; }
|
|
1079
|
+
.absolute { position: absolute; }
|
|
1080
|
+
.sticky-top { position: -webkit-sticky; position: sticky; top: 0px; z-index: var(--navBarZindex); width: 100%; }
|
|
1081
|
+
.fixed-top { position: fixed; top: 0px; z-index: var(--navBarZindex); width: 100%; }
|
|
1082
|
+
.fixedBottom { position: fixed; bottom: 0; left: 0; width: 100%; z-index: var(--navBarZindex); }
|
|
1083
|
+
.fixedTop { position: fixed; bottom: 0; top: 0; width: 100%; z-index: var(--navBarZindex); }
|
|
1084
|
+
|
|
1085
|
+
/* Display */
|
|
1086
|
+
.block { display: block; }
|
|
1087
|
+
.inline-block { display: inline-block; }
|
|
1088
|
+
.content-middle { display: flex; justify-content: center; align-items: center; height: 100%; width: 100%; }
|
|
1089
|
+
.central { display: flex; align-items: center; justify-content: center; }
|
|
1090
|
+
|
|
1091
|
+
/* Flexbox */
|
|
1092
|
+
.row-flex { display: flex !important; flex-direction: row !important; align-items: center; }
|
|
1093
|
+
.row-flex.gap { grid-gap: 0.5rem; gap: 0.2rem; }
|
|
1094
|
+
.row-flex.space-between { justify-content: space-between; }
|
|
1095
|
+
.row-flex.stretch { align-items: stretch !important; }
|
|
1096
|
+
.row-flex.space-around { justify-content: space-around; }
|
|
1097
|
+
.row-flex.center { justify-content: center; }
|
|
1098
|
+
|
|
1099
|
+
/* Shadows */
|
|
1100
|
+
.shadow { box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2); }
|
|
1101
|
+
.hover-shadow { transition: 0.3s; }
|
|
1102
|
+
.hover-shadow:hover { box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2); }
|
|
1103
|
+
.shadow-bingo { box-shadow: 10px 20px 20px 10px rgba(225, 225, 225, 0.5), 0px 40px 40px 0px rgba(225, 225, 255, 0.6); }
|
|
1104
|
+
|
|
1105
|
+
/* Fit */
|
|
1106
|
+
.fit { height: 100%; width: 100%; }
|
|
1107
|
+
.fit-width { width: fit-content; }
|
|
1108
|
+
.fit-height { height: fit-content; }
|
|
1109
|
+
|
|
1110
|
+
/* Rounded */
|
|
1111
|
+
.rightRounded { border-top-right-radius: 300rem !important; border-bottom-right-radius: 300rem !important; border-bottom-left-radius: 0 !important; border-top-left-radius: 0 !important; }
|
|
1112
|
+
.leftRounded { border-top-left-radius: 300rem !important; border-bottom-left-radius: 300rem !important; border-top-right-radius: 0 !important; border-bottom-right-radius: 0 !important; }
|
|
986
1113
|
|
|
987
|
-
|
|
988
|
-
.
|
|
989
|
-
|
|
990
|
-
}
|
|
991
|
-
.
|
|
992
|
-
|
|
993
|
-
|
|
994
|
-
.
|
|
995
|
-
|
|
996
|
-
}
|
|
997
|
-
|
|
998
|
-
|
|
999
|
-
|
|
1000
|
-
}
|
|
1001
|
-
.underlineText{
|
|
1002
|
-
text-decoration: underline;
|
|
1003
|
-
}
|
|
1004
|
-
.emp{font-style: italic;}
|
|
1005
|
-
.italicText{
|
|
1006
|
-
font-style: italic;
|
|
1007
|
-
}
|
|
1008
|
-
.uppercase{text-transform: uppercase;}
|
|
1009
|
-
.lowercase{text-transform: lowercase;}
|
|
1010
|
-
.capitalize{text-transform: capitalize;}
|
|
1011
|
-
.monospace{font-family:monospace !important;}
|
|
1012
|
-
|
|
1013
|
-
.scroll-y{overflow-y: auto !important; overflow-x: visible !important;}
|
|
1014
|
-
.scroll-x{overflow-x: auto !important; overflow-y: visible !important;}
|
|
1015
|
-
.scroll{overflow: auto !important;}
|
|
1016
|
-
|
|
1017
|
-
|
|
1018
|
-
/*Helpers*/
|
|
1019
|
-
.glassy{
|
|
1020
|
-
backdrop-filter: blur(0.3rem);
|
|
1021
|
-
background-color: transparent !important;
|
|
1022
|
-
}
|
|
1023
|
-
.transparent{
|
|
1024
|
-
background-color: transparent !important;
|
|
1025
|
-
}
|
|
1026
|
-
.flat{
|
|
1027
|
-
border-radius: 0rem !important;
|
|
1028
|
-
}
|
|
1029
|
-
.no-padding {
|
|
1030
|
-
padding: 0px !important;
|
|
1031
|
-
}
|
|
1032
|
-
.no-margin {
|
|
1033
|
-
margin: 0px;
|
|
1034
|
-
}
|
|
1035
|
-
.line-through {
|
|
1036
|
-
text-decoration: line-through;
|
|
1037
|
-
}
|
|
1038
|
-
.underline {
|
|
1039
|
-
text-decoration: underline;
|
|
1040
|
-
}
|
|
1041
|
-
.overline {
|
|
1042
|
-
text-decoration: overline;
|
|
1043
|
-
}
|
|
1044
|
-
.wavy {
|
|
1045
|
-
text-decoration: wavy;
|
|
1046
|
-
}
|
|
1047
|
-
.borderless {
|
|
1048
|
-
border: none;
|
|
1049
|
-
}
|
|
1050
|
-
.border {
|
|
1051
|
-
border: var(--border);
|
|
1052
|
-
}
|
|
1053
|
-
.text-center {
|
|
1054
|
-
text-align: center !important;
|
|
1055
|
-
}
|
|
1056
|
-
.text-left {
|
|
1057
|
-
text-align: left !important;
|
|
1058
|
-
}
|
|
1059
|
-
.text-right {
|
|
1060
|
-
text-align: right !important;
|
|
1061
|
-
}
|
|
1062
|
-
.text-justify {
|
|
1063
|
-
text-align: justify !important;
|
|
1064
|
-
}
|
|
1065
|
-
.hide {
|
|
1066
|
-
display: none;
|
|
1067
|
-
}
|
|
1068
|
-
.show {
|
|
1069
|
-
display: block;
|
|
1070
|
-
}
|
|
1071
|
-
.center {
|
|
1072
|
-
margin: 0px auto;
|
|
1073
|
-
}
|
|
1074
|
-
.float-right {
|
|
1075
|
-
float: right;
|
|
1076
|
-
}
|
|
1077
|
-
.float-left {
|
|
1078
|
-
float: left;
|
|
1079
|
-
}
|
|
1080
|
-
|
|
1081
|
-
.section {
|
|
1082
|
-
margin-top: 1rem;
|
|
1083
|
-
margin-bottom: 1rem;
|
|
1084
|
-
}
|
|
1085
|
-
.minSection{
|
|
1086
|
-
margin-top: 0.5rem;
|
|
1087
|
-
margin-bottom: 0.5rem;
|
|
1088
|
-
}
|
|
1089
|
-
.maxSection{
|
|
1090
|
-
margin-top: 2rem;
|
|
1091
|
-
margin-bottom: 2rem;
|
|
1092
|
-
}
|
|
1093
|
-
.opacity-1,
|
|
1094
|
-
.hover-opacity-1:hover {
|
|
1095
|
-
opacity: 1;
|
|
1096
|
-
}
|
|
1097
|
-
.opacity-2,
|
|
1098
|
-
.hover-opacity-2:hover {
|
|
1099
|
-
opacity: 0.9;
|
|
1100
|
-
}
|
|
1101
|
-
.opacity-3,
|
|
1102
|
-
.hover-opacity-3:hover {
|
|
1103
|
-
opacity: 0.8;
|
|
1104
|
-
}
|
|
1105
|
-
.opacity-4,
|
|
1106
|
-
.hover-opacity-4:hover {
|
|
1107
|
-
opacity: 0.7;
|
|
1108
|
-
}
|
|
1109
|
-
.opacity-5,
|
|
1110
|
-
.hover-opacity-5:hover {
|
|
1111
|
-
opacity: 0.6;
|
|
1112
|
-
}
|
|
1113
|
-
.opacity-6,
|
|
1114
|
-
.hover-opacity-6:hover {
|
|
1115
|
-
opacity: 0.5;
|
|
1116
|
-
}
|
|
1117
|
-
.opacity-7,
|
|
1118
|
-
.hover-opacity-7:hover {
|
|
1119
|
-
opacity: 0.4;
|
|
1120
|
-
}
|
|
1121
|
-
.opacity-8,
|
|
1122
|
-
.hover-opacity-8:hover {
|
|
1123
|
-
opacity: 0.2;
|
|
1124
|
-
}
|
|
1125
|
-
.opacity-9,
|
|
1126
|
-
.hover-opacity-9:hover {
|
|
1127
|
-
opacity: 0.1;
|
|
1128
|
-
}
|
|
1129
|
-
.hr,.bb {
|
|
1130
|
-
border-bottom: var(--border);
|
|
1131
|
-
}
|
|
1132
|
-
.vr, .bl {
|
|
1133
|
-
border-left: var(--border);
|
|
1134
|
-
}
|
|
1135
|
-
.bt{
|
|
1136
|
-
border-top: var(--border);
|
|
1137
|
-
}
|
|
1138
|
-
.br{border-right: var(--border);}
|
|
1139
|
-
.vertical-scroll {
|
|
1140
|
-
overflow-y: scroll;
|
|
1141
|
-
}
|
|
1142
|
-
.horizontal-scroll {
|
|
1143
|
-
overflow-x: scroll;
|
|
1144
|
-
}
|
|
1145
|
-
.z-index-1 {
|
|
1146
|
-
z-index: 1;
|
|
1147
|
-
}
|
|
1148
|
-
.z-index-2 {
|
|
1149
|
-
z-index: 2;
|
|
1150
|
-
}
|
|
1151
|
-
.z-index-3 {
|
|
1152
|
-
z-index: 3;
|
|
1153
|
-
}
|
|
1154
|
-
.z-index-4 {
|
|
1155
|
-
z-index: 4;
|
|
1156
|
-
}
|
|
1157
|
-
.z-index-5 {
|
|
1158
|
-
z-index: 5;
|
|
1159
|
-
}
|
|
1160
|
-
.z-index-6 {
|
|
1161
|
-
z-index: 6;
|
|
1162
|
-
}
|
|
1163
|
-
.z-index-7 {
|
|
1164
|
-
z-index: 7;
|
|
1165
|
-
}
|
|
1166
|
-
.z-index-8 {
|
|
1167
|
-
z-index: 8;
|
|
1168
|
-
}
|
|
1169
|
-
.z-index-9 {
|
|
1170
|
-
z-index: 9;
|
|
1171
|
-
}
|
|
1172
|
-
.z-index-10 {
|
|
1173
|
-
z-index: 10;
|
|
1174
|
-
}
|
|
1175
|
-
.responsive {
|
|
1176
|
-
width: 100%;
|
|
1177
|
-
height: auto;
|
|
1178
|
-
}
|
|
1179
|
-
|
|
1180
|
-
.top-right {
|
|
1181
|
-
position: absolute;
|
|
1182
|
-
top: 0px;
|
|
1183
|
-
right: 0px;
|
|
1184
|
-
}
|
|
1185
|
-
.top-left {
|
|
1186
|
-
position: absolute;
|
|
1187
|
-
top: 0px;
|
|
1188
|
-
left: 0px;
|
|
1189
|
-
}
|
|
1190
|
-
.top {
|
|
1191
|
-
position: absolute;
|
|
1192
|
-
top: 0px;
|
|
1193
|
-
}
|
|
1194
|
-
.bottom-right {
|
|
1195
|
-
position: absolute;
|
|
1196
|
-
bottom: 0px;
|
|
1197
|
-
right: 0px;
|
|
1198
|
-
}
|
|
1199
|
-
.bottom-left {
|
|
1200
|
-
position: absolute;
|
|
1201
|
-
bottom: 0px;
|
|
1202
|
-
left: 0px;
|
|
1203
|
-
}
|
|
1204
|
-
.bottom {
|
|
1205
|
-
position: absolute;
|
|
1206
|
-
bottom: 0px;
|
|
1207
|
-
}
|
|
1208
|
-
.clear-both {
|
|
1209
|
-
clear: both;
|
|
1210
|
-
}
|
|
1211
|
-
.content-middle {
|
|
1212
|
-
display: flex;
|
|
1213
|
-
justify-content: center;
|
|
1214
|
-
align-items: center;
|
|
1215
|
-
height: 100%;
|
|
1216
|
-
width: 100%;
|
|
1217
|
-
}
|
|
1218
|
-
.sticky-top {
|
|
1219
|
-
position: -webkit-sticky;
|
|
1220
|
-
position: sticky;
|
|
1221
|
-
top: 0px;
|
|
1222
|
-
z-index: var(--navBarZindex);
|
|
1223
|
-
width: 100%;
|
|
1224
|
-
}
|
|
1225
|
-
.fixed-top {
|
|
1226
|
-
position: fixed;
|
|
1227
|
-
top: 0px;
|
|
1228
|
-
z-index: var(--navBarZindex);
|
|
1229
|
-
width: 100%;
|
|
1230
|
-
}
|
|
1231
|
-
|
|
1232
|
-
.relative {
|
|
1233
|
-
position: relative;
|
|
1234
|
-
}
|
|
1235
|
-
.fixed {
|
|
1236
|
-
position: fixed;
|
|
1237
|
-
}
|
|
1238
|
-
.sticky {
|
|
1239
|
-
position: sticky;
|
|
1240
|
-
}
|
|
1241
|
-
.absolute {
|
|
1242
|
-
position: absolute;
|
|
1243
|
-
}
|
|
1244
|
-
.block {
|
|
1245
|
-
display: block;
|
|
1246
|
-
}
|
|
1247
|
-
.inline-block {
|
|
1248
|
-
display: inline-block;
|
|
1249
|
-
}
|
|
1250
|
-
.middle {
|
|
1251
|
-
display: absolute;
|
|
1252
|
-
top: 50%;
|
|
1253
|
-
left: 50%;
|
|
1254
|
-
transform: translate(-50%, -50%);
|
|
1255
|
-
}
|
|
1256
|
-
.shadow {
|
|
1257
|
-
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
|
|
1258
|
-
}
|
|
1259
|
-
.hover-shadow {
|
|
1260
|
-
transition: 0.3s;
|
|
1261
|
-
}
|
|
1262
|
-
.hover-shadow:hover {
|
|
1263
|
-
box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
|
|
1264
|
-
}
|
|
1265
|
-
.fit {
|
|
1266
|
-
height: 100%;
|
|
1267
|
-
width: 100%;
|
|
1268
|
-
}
|
|
1269
|
-
.fit-width {
|
|
1270
|
-
width: fit-content;
|
|
1271
|
-
}
|
|
1272
|
-
.fit-height {
|
|
1273
|
-
height: fit-content;
|
|
1274
|
-
}
|
|
1275
|
-
.shadow-bingo {
|
|
1276
|
-
box-shadow: 10px 20px 20px 10px rgba(225, 225, 225, 0.5),
|
|
1277
|
-
0px 40px 40px 0px rgba(225, 225, 255, 0.6);
|
|
1278
|
-
}
|
|
1279
|
-
.top-border {
|
|
1280
|
-
border-top: var(--border);
|
|
1281
|
-
}
|
|
1282
|
-
.bottom-border {
|
|
1283
|
-
border-bottom: var(--border);
|
|
1284
|
-
}
|
|
1285
|
-
.right-border {
|
|
1286
|
-
border-right: var(--border);
|
|
1287
|
-
}
|
|
1288
|
-
.left-border {
|
|
1289
|
-
border-left: var(--border);
|
|
1290
|
-
}
|
|
1291
|
-
.row-flex{
|
|
1292
|
-
display: flex !important;
|
|
1293
|
-
flex-direction: row !important;
|
|
1294
|
-
align-items: center ;
|
|
1295
|
-
|
|
1296
|
-
}
|
|
1297
|
-
.row-flex.gap {
|
|
1298
|
-
grid-gap: 0.5rem;
|
|
1299
|
-
}
|
|
1300
|
-
.row-flex.space-between {
|
|
1301
|
-
justify-content: space-between;
|
|
1302
|
-
}
|
|
1303
|
-
.row-flex.gap {
|
|
1304
|
-
gap: 0.2rem;
|
|
1305
|
-
}
|
|
1306
|
-
.row-flex.stretch{
|
|
1307
|
-
align-items: stretch !important;
|
|
1308
|
-
}
|
|
1309
|
-
.row-flex.space-around {
|
|
1310
|
-
justify-content: space-around;
|
|
1311
|
-
}
|
|
1312
|
-
|
|
1313
|
-
|
|
1314
|
-
|
|
1315
|
-
|
|
1316
|
-
|
|
1317
|
-
.fixedBottom {
|
|
1318
|
-
position: fixed;
|
|
1319
|
-
bottom: 0;
|
|
1320
|
-
left: 0;
|
|
1321
|
-
width: 100%;
|
|
1322
|
-
z-index: var(--navBarZindex);
|
|
1323
|
-
}
|
|
1324
|
-
.fixedTop {
|
|
1325
|
-
position: fixed;
|
|
1326
|
-
bottom: 0;
|
|
1327
|
-
top: 0;
|
|
1328
|
-
width: 100%;
|
|
1329
|
-
z-index: var(--navBarZindex);
|
|
1330
|
-
}
|
|
1331
|
-
.row-flex.center {
|
|
1332
|
-
justify-content: center;
|
|
1333
|
-
}
|
|
1334
|
-
.central {
|
|
1335
|
-
display: flex;
|
|
1336
|
-
align-items: center;
|
|
1337
|
-
justify-content: center;
|
|
1338
|
-
}
|
|
1339
|
-
.hoverable{
|
|
1340
|
-
transition: 0.1s linear;
|
|
1341
|
-
}
|
|
1342
|
-
.hoverable:hover{
|
|
1343
|
-
background-color: var(--hoverable) !important;
|
|
1344
|
-
/* filter: brightness(90%); */
|
|
1345
|
-
|
|
1346
|
-
}
|
|
1347
|
-
.hoverable-border{border: 0.1rem solid transparent;transition: 0.3s ease-in-out;}
|
|
1348
|
-
.hoverable-border:hover{border: var(--border);}
|
|
1349
|
-
|
|
1350
|
-
.rightRounded{
|
|
1351
|
-
border-top-right-radius: 300rem !important;
|
|
1352
|
-
border-bottom-right-radius: 300rem !important;
|
|
1353
|
-
border-bottom-left-radius: 0 !important;
|
|
1354
|
-
border-top-left-radius: 0 !important;
|
|
1355
|
-
}
|
|
1356
|
-
.leftRounded{
|
|
1357
|
-
border-top-left-radius: 300rem !important;
|
|
1358
|
-
border-bottom-left-radius: 300rem !important;
|
|
1359
|
-
border-top-right-radius: 0 !important;
|
|
1360
|
-
border-bottom-right-radius: 0 !important;
|
|
1361
|
-
}
|
|
1362
|
-
|
|
1363
|
-
|
|
1364
|
-
/* cursor */
|
|
1365
|
-
.cursor-pointer {
|
|
1366
|
-
cursor: pointer;
|
|
1367
|
-
}
|
|
1368
|
-
.cursor-copy {
|
|
1369
|
-
cursor: copy;
|
|
1370
|
-
}
|
|
1371
|
-
.cursor-none {
|
|
1372
|
-
cursor: none;
|
|
1373
|
-
}
|
|
1374
|
-
.cursor-move {
|
|
1375
|
-
cursor: move;
|
|
1376
|
-
}
|
|
1377
|
-
/* containers hover*/
|
|
1378
|
-
.container {
|
|
1379
|
-
margin: 0 10%;
|
|
1380
|
-
}
|
|
1114
|
+
/* Hover Effects */
|
|
1115
|
+
.hoverable { transition: 0.1s linear; }
|
|
1116
|
+
.hoverable:hover { background-color: var(--hoverable) !important; }
|
|
1117
|
+
.hoverable-border { border: 0.1rem solid transparent; transition: 0.3s ease-in-out; }
|
|
1118
|
+
.hoverable-border:hover { border: var(--border); }
|
|
1119
|
+
|
|
1120
|
+
/* Cursor */
|
|
1121
|
+
.cursor-pointer { cursor: pointer; }
|
|
1122
|
+
.cursor-copy { cursor: copy; }
|
|
1123
|
+
.cursor-none { cursor: none; }
|
|
1124
|
+
.cursor-move { cursor: move; }
|
|
1125
|
+
|
|
1126
|
+
/* Containers */
|
|
1127
|
+
.container { margin: 0 10%; }
|
|
1381
1128
|
@media (max-width: 600px) {
|
|
1382
|
-
.container {
|
|
1383
|
-
margin: 0 5%;
|
|
1384
|
-
}
|
|
1385
|
-
}
|
|
1386
|
-
|
|
1387
|
-
.page{
|
|
1388
|
-
min-height: 80vh;
|
|
1389
|
-
padding: 2rem 0;
|
|
1129
|
+
.container { margin: 0 5%; }
|
|
1390
1130
|
}
|
|
1391
|
-
|
|
1392
|
-
|
|
1131
|
+
.page { min-height: 80vh; padding: 2rem 0; }
|
|
1393
1132
|
/*buttons*/
|
|
1394
1133
|
.button {
|
|
1395
1134
|
border: none;
|
|
@@ -1400,20 +1139,26 @@ link:hover {
|
|
|
1400
1139
|
cursor: pointer;
|
|
1401
1140
|
font-size: var(--minifiedFontSize);
|
|
1402
1141
|
position: relative;
|
|
1403
|
-
overflow:
|
|
1142
|
+
overflow: visible !important;
|
|
1404
1143
|
z-index: 1;
|
|
1405
1144
|
line-height: 1 !important;
|
|
1406
1145
|
height: var(--inputButtonHeight);
|
|
1407
1146
|
}
|
|
1147
|
+
.button.primary{outline:1px solid var(--primary);}
|
|
1148
|
+
.button.primary:active{outline:1px solid var(--primary300);}
|
|
1149
|
+
.button.secondary{outline:1px solid var(--secondary);}
|
|
1150
|
+
.button.secondary:active{outline:1px solid var(--secondary300);}
|
|
1151
|
+
.button.accent{outline:1px solid var(--accent);}
|
|
1152
|
+
.button.accent:active{outline:1px solid var(--accent300);}
|
|
1408
1153
|
|
|
1409
1154
|
|
|
1410
1155
|
/* Ripple effect */
|
|
1411
1156
|
.button::after {
|
|
1412
1157
|
content: '';
|
|
1413
1158
|
position: absolute;
|
|
1414
|
-
border-radius:
|
|
1159
|
+
border-radius: var(--radius);
|
|
1415
1160
|
transform: scale(0);
|
|
1416
|
-
background: rgba(
|
|
1161
|
+
background: rgba(255, 255, 255, 0.1); /* dark ripple with opacity */
|
|
1417
1162
|
width: 100%;
|
|
1418
1163
|
height: 100%;
|
|
1419
1164
|
top: 0;
|
|
@@ -1424,7 +1169,7 @@ link:hover {
|
|
|
1424
1169
|
}
|
|
1425
1170
|
|
|
1426
1171
|
.button:active::after {
|
|
1427
|
-
transform: scale(
|
|
1172
|
+
transform: scale(1);
|
|
1428
1173
|
opacity: 1;
|
|
1429
1174
|
transition: 0s;
|
|
1430
1175
|
|
|
@@ -1748,21 +1493,18 @@ border-radius: var(--borderRadius);
|
|
|
1748
1493
|
visibility: visible !important;
|
|
1749
1494
|
max-height: 0;
|
|
1750
1495
|
overflow: hidden;
|
|
1751
|
-
transition:
|
|
1496
|
+
transition: 0.3s ease;
|
|
1752
1497
|
}
|
|
1753
1498
|
|
|
1754
1499
|
.nav_item.dropdown-open .nav_dropdown-mobile {
|
|
1755
1500
|
max-height: 500px;
|
|
1756
1501
|
}
|
|
1757
1502
|
|
|
1758
|
-
.nav_dropdown-mobile .nav_link {
|
|
1759
|
-
padding: 0.5rem 1rem !important;
|
|
1760
|
-
}
|
|
1761
1503
|
|
|
1762
1504
|
/* Mobile Menu */
|
|
1763
|
-
.nav_mobile-menu {
|
|
1505
|
+
/* .nav_mobile-menu {
|
|
1764
1506
|
position: fixed;
|
|
1765
|
-
top:
|
|
1507
|
+
top: 0;
|
|
1766
1508
|
left: 0;
|
|
1767
1509
|
right: 0;
|
|
1768
1510
|
bottom: 0;
|
|
@@ -1771,7 +1513,7 @@ border-radius: var(--borderRadius);
|
|
|
1771
1513
|
overflow-y: auto;
|
|
1772
1514
|
padding: 1rem;
|
|
1773
1515
|
border-top: var(--border);
|
|
1774
|
-
}
|
|
1516
|
+
} */
|
|
1775
1517
|
|
|
1776
1518
|
.nav_mobile-menu .nav_links {
|
|
1777
1519
|
align-items: flex-start !important;
|
|
@@ -1791,7 +1533,7 @@ border-radius: var(--borderRadius);
|
|
|
1791
1533
|
/* Active Link Styles */
|
|
1792
1534
|
.nav_link.active {
|
|
1793
1535
|
color: var(--primary) !important;
|
|
1794
|
-
font-weight:
|
|
1536
|
+
font-weight: 500;
|
|
1795
1537
|
}
|
|
1796
1538
|
|
|
1797
1539
|
/* Hover Effects */
|
|
@@ -1823,25 +1565,9 @@ border-radius: var(--borderRadius);
|
|
|
1823
1565
|
|
|
1824
1566
|
/* Focus States */
|
|
1825
1567
|
.nav_link:focus {
|
|
1826
|
-
outline: 2px solid var(--primary);
|
|
1827
1568
|
outline-offset: 2px;
|
|
1828
1569
|
}
|
|
1829
1570
|
|
|
1830
|
-
/* Responsive */
|
|
1831
|
-
@media (max-width: 768px) {
|
|
1832
|
-
.nav_dropdown-menu {
|
|
1833
|
-
position: static;
|
|
1834
|
-
box-shadow: none;
|
|
1835
|
-
border: none;
|
|
1836
|
-
background: var(--raiseOpaque);
|
|
1837
|
-
margin-left: 1rem;
|
|
1838
|
-
}
|
|
1839
|
-
|
|
1840
|
-
.nav_item.dropdown-open .nav_dropdown-menu {
|
|
1841
|
-
max-height: 500px;
|
|
1842
|
-
}
|
|
1843
|
-
}
|
|
1844
|
-
|
|
1845
1571
|
|
|
1846
1572
|
|
|
1847
1573
|
/* video */
|
|
@@ -5794,6 +5520,7 @@ background-color: rgba(0, 0, 0, 0.2);
|
|
|
5794
5520
|
.min-w-vw { min-width: 100vw !important; }
|
|
5795
5521
|
.min-h-vh { min-height: 100vh !important; }
|
|
5796
5522
|
.max-h-vh { max-height: 100vh !important; }
|
|
5523
|
+
|
|
5797
5524
|
.w-100-vw { width: 100vw !important; }
|
|
5798
5525
|
.w-90-vw { width: 90vw !important; }
|
|
5799
5526
|
.w-80-vw { width: 80vw !important; }
|
|
@@ -5840,26 +5567,57 @@ background-color: rgba(0, 0, 0, 0.2);
|
|
|
5840
5567
|
.w-90-p { width: 90% !important; }
|
|
5841
5568
|
.w-100-p , .w-full { width: 100% !important; }
|
|
5842
5569
|
|
|
5843
|
-
|
|
5844
|
-
.w-10 { width: 0.625rem !important; }
|
|
5845
|
-
.w-
|
|
5846
|
-
.w-
|
|
5847
|
-
|
|
5848
|
-
|
|
5849
|
-
.w-
|
|
5850
|
-
.w-
|
|
5851
|
-
.w-
|
|
5852
|
-
.w-
|
|
5853
|
-
.w-
|
|
5854
|
-
.w-
|
|
5855
|
-
.w-
|
|
5856
|
-
.w-
|
|
5857
|
-
.w-
|
|
5858
|
-
.w-
|
|
5859
|
-
.w-
|
|
5860
|
-
.w-
|
|
5861
|
-
.w-
|
|
5862
|
-
.w-
|
|
5570
|
+
.w-5 { max-width: 0.3125rem; width: 100% !important; }
|
|
5571
|
+
.w-10 { max-width: 0.625rem; width: 100% !important; }
|
|
5572
|
+
.w-15 { max-width: 0.9375rem; width: 100% !important; }
|
|
5573
|
+
.w-20 { max-width: 1.25rem; width: 100% !important; }
|
|
5574
|
+
|
|
5575
|
+
/* Increments of 5 from 25-95 */
|
|
5576
|
+
.w-25 { max-width: 1.5625rem; width: 100% !important; }
|
|
5577
|
+
.w-30 { max-width: 1.875rem; width: 100% !important; }
|
|
5578
|
+
.w-35 { max-width: 2.1875rem; width: 100% !important; }
|
|
5579
|
+
.w-40 { max-width: 2.5rem; width: 100% !important; }
|
|
5580
|
+
.w-45 { max-width: 2.8125rem; width: 100% !important; }
|
|
5581
|
+
.w-50 { max-width: 3.125rem; width: 100% !important; }
|
|
5582
|
+
.w-55 { max-width: 3.4375rem; width: 100% !important; }
|
|
5583
|
+
.w-60 { max-width: 3.75rem; width: 100% !important; }
|
|
5584
|
+
.w-65 { max-width: 4.0625rem; width: 100% !important; }
|
|
5585
|
+
.w-70 { max-width: 4.375rem; width: 100% !important; }
|
|
5586
|
+
.w-75 { max-width: 4.6875rem; width: 100% !important; }
|
|
5587
|
+
.w-80 { max-width: 5rem; width: 100% !important; }
|
|
5588
|
+
.w-85 { max-width: 5.3125rem; width: 100% !important; }
|
|
5589
|
+
.w-90 { max-width: 5.625rem; width: 100% !important; }
|
|
5590
|
+
.w-95 { max-width: 5.9375rem; width: 100% !important; }
|
|
5591
|
+
|
|
5592
|
+
.w-100 { max-width: 6.25rem; width: 100% !important; }
|
|
5593
|
+
.w-150 { max-width: 9.375rem; width: 100% !important; }
|
|
5594
|
+
.w-200 { max-width: 12.5rem; width: 100% !important; }
|
|
5595
|
+
.w-250 { max-width: 15.625rem; width: 100% !important; }
|
|
5596
|
+
.w-300 { max-width: 18.75rem; width: 100% !important; }
|
|
5597
|
+
.w-350 { max-width: 21.875rem; width: 100% !important; }
|
|
5598
|
+
.w-400 { max-width: 25rem; width: 100% !important; }
|
|
5599
|
+
.w-450 { max-width: 28.125rem; width: 100% !important; }
|
|
5600
|
+
.w-500 { max-width: 31.25rem; width: 100% !important; }
|
|
5601
|
+
.w-550 { max-width: 34.375rem; width: 100% !important; }
|
|
5602
|
+
.w-600 { max-width: 37.5rem; width: 100% !important; }
|
|
5603
|
+
.w-650 { max-width: 40.625rem; width: 100% !important; }
|
|
5604
|
+
.w-700 { max-width: 43.75rem; width: 100% !important; }
|
|
5605
|
+
.w-750 { max-width: 46.875rem; width: 100% !important; }
|
|
5606
|
+
.w-800 { max-width: 50rem; width: 100% !important; }
|
|
5607
|
+
.w-850 { max-width: 53.125rem; width: 100% !important; }
|
|
5608
|
+
.w-900 { max-width: 56.25rem; width: 100% !important; }
|
|
5609
|
+
.w-950 { max-width: 59.375rem; width: 100% !important; }
|
|
5610
|
+
.w-1000 { max-width: 62.5rem; width: 100% !important; }
|
|
5611
|
+
.w-1050 { max-width: 65.625rem; width: 100% !important; }
|
|
5612
|
+
.w-1100 { max-width: 68.75rem; width: 100% !important; }
|
|
5613
|
+
.w-1150 { max-width: 71.875rem; width: 100% !important; }
|
|
5614
|
+
.w-1200 { max-width: 75rem; width: 100% !important; }
|
|
5615
|
+
.w-1250 { max-width: 78.125rem; width: 100% !important; }
|
|
5616
|
+
.w-1300 { max-width: 81.25rem; width: 100% !important; }
|
|
5617
|
+
.w-1350 { max-width: 84.375rem; width: 100% !important; }
|
|
5618
|
+
.w-1400 { max-width: 87.5rem; width: 100% !important; }
|
|
5619
|
+
.w-1450 { max-width: 90.625rem; width: 100% !important; }
|
|
5620
|
+
.w-1500 { max-width: 93.75rem; width: 100% !important; }
|
|
5863
5621
|
|
|
5864
5622
|
|
|
5865
5623
|
/* Max-width and Min-width */
|
|
@@ -6247,25 +6005,60 @@ background-color: rgba(0, 0, 0, 0.2);
|
|
|
6247
6005
|
.min-h-900 { min-height: 56.25rem !important; }
|
|
6248
6006
|
|
|
6249
6007
|
/* height */
|
|
6250
|
-
|
|
6251
|
-
|
|
6252
|
-
.h-
|
|
6253
|
-
.h-
|
|
6254
|
-
.h-
|
|
6255
|
-
.h-
|
|
6256
|
-
|
|
6257
|
-
|
|
6258
|
-
.h-
|
|
6259
|
-
.h-
|
|
6260
|
-
.h-
|
|
6261
|
-
.h-
|
|
6262
|
-
.h-
|
|
6263
|
-
.h-
|
|
6264
|
-
.h-
|
|
6265
|
-
.h-
|
|
6266
|
-
.h-
|
|
6267
|
-
.h-
|
|
6268
|
-
.h-
|
|
6008
|
+
/* Height utilities with Pexels scaling system (1 unit = 0.0625rem) */
|
|
6009
|
+
/* Increments of 5 from 5-20 */
|
|
6010
|
+
.h-5 { max-height: 0.3125rem; height: 100% !important; }
|
|
6011
|
+
.h-10 { max-height: 0.625rem; height: 100% !important; }
|
|
6012
|
+
.h-15 { max-height: 0.9375rem; height: 100% !important; }
|
|
6013
|
+
.h-20 { max-height: 1.25rem; height: 100% !important; }
|
|
6014
|
+
|
|
6015
|
+
/* Increments of 5 from 25-95 */
|
|
6016
|
+
.h-25 { max-height: 1.5625rem; height: 100% !important; }
|
|
6017
|
+
.h-30 { max-height: 1.875rem; height: 100% !important; }
|
|
6018
|
+
.h-35 { max-height: 2.1875rem; height: 100% !important; }
|
|
6019
|
+
.h-40 { max-height: 2.5rem; height: 100% !important; }
|
|
6020
|
+
.h-45 { max-height: 2.8125rem; height: 100% !important; }
|
|
6021
|
+
.h-50 { max-height: 3.125rem; height: 100% !important; }
|
|
6022
|
+
.h-55 { max-height: 3.4375rem; height: 100% !important; }
|
|
6023
|
+
.h-60 { max-height: 3.75rem; height: 100% !important; }
|
|
6024
|
+
.h-65 { max-height: 4.0625rem; height: 100% !important; }
|
|
6025
|
+
.h-70 { max-height: 4.375rem; height: 100% !important; }
|
|
6026
|
+
.h-75 { max-height: 4.6875rem; height: 100% !important; }
|
|
6027
|
+
.h-80 { max-height: 5rem; height: 100% !important; }
|
|
6028
|
+
.h-85 { max-height: 5.3125rem; height: 100% !important; }
|
|
6029
|
+
.h-90 { max-height: 5.625rem; height: 100% !important; }
|
|
6030
|
+
.h-95 { max-height: 5.9375rem; height: 100% !important; }
|
|
6031
|
+
|
|
6032
|
+
/* Increments of 50 from 100-1500 */
|
|
6033
|
+
.h-100 { max-height: 6.25rem; height: 100% !important; }
|
|
6034
|
+
.h-150 { max-height: 9.375rem; height: 100% !important; }
|
|
6035
|
+
.h-200 { max-height: 12.5rem; height: 100% !important; }
|
|
6036
|
+
.h-250 { max-height: 15.625rem; height: 100% !important; }
|
|
6037
|
+
.h-300 { max-height: 18.75rem; height: 100% !important; }
|
|
6038
|
+
.h-350 { max-height: 21.875rem; height: 100% !important; }
|
|
6039
|
+
.h-400 { max-height: 25rem; height: 100% !important; }
|
|
6040
|
+
.h-450 { max-height: 28.125rem; height: 100% !important; }
|
|
6041
|
+
.h-500 { max-height: 31.25rem; height: 100% !important; }
|
|
6042
|
+
.h-550 { max-height: 34.375rem; height: 100% !important; }
|
|
6043
|
+
.h-600 { max-height: 37.5rem; height: 100% !important; }
|
|
6044
|
+
.h-650 { max-height: 40.625rem; height: 100% !important; }
|
|
6045
|
+
.h-700 { max-height: 43.75rem; height: 100% !important; }
|
|
6046
|
+
.h-750 { max-height: 46.875rem; height: 100% !important; }
|
|
6047
|
+
.h-800 { max-height: 50rem; height: 100% !important; }
|
|
6048
|
+
.h-850 { max-height: 53.125rem; height: 100% !important; }
|
|
6049
|
+
.h-900 { max-height: 56.25rem; height: 100% !important; }
|
|
6050
|
+
.h-950 { max-height: 59.375rem; height: 100% !important; }
|
|
6051
|
+
.h-1000 { max-height: 62.5rem; height: 100% !important; }
|
|
6052
|
+
.h-1050 { max-height: 65.625rem; height: 100% !important; }
|
|
6053
|
+
.h-1100 { max-height: 68.75rem; height: 100% !important; }
|
|
6054
|
+
.h-1150 { max-height: 71.875rem; height: 100% !important; }
|
|
6055
|
+
.h-1200 { max-height: 75rem; height: 100% !important; }
|
|
6056
|
+
.h-1250 { max-height: 78.125rem; height: 100% !important; }
|
|
6057
|
+
.h-1300 { max-height: 81.25rem; height: 100% !important; }
|
|
6058
|
+
.h-1350 { max-height: 84.375rem; height: 100% !important; }
|
|
6059
|
+
.h-1400 { max-height: 87.5rem; height: 100% !important; }
|
|
6060
|
+
.h-1450 { max-height: 90.625rem; height: 100% !important; }
|
|
6061
|
+
.h-1500 { max-height: 93.75rem; height: 100% !important; }
|
|
6269
6062
|
|
|
6270
6063
|
/* percentage */
|
|
6271
6064
|
.h-10-p { height: 10% !important; }
|
|
@@ -6517,7 +6310,6 @@ background-color: rgba(0, 0, 0, 0.2);
|
|
|
6517
6310
|
.margin-right-60{margin-right:60px!important}.margin-right-70{margin-right:70px!important}
|
|
6518
6311
|
.margin-right-80{margin-right:80px!important}.margin-right-90{margin-right:90px!important}
|
|
6519
6312
|
.margin-right-100{margin-bottom:100px}
|
|
6520
|
-
|
|
6521
6313
|
/* --------- MARGIN --------- */
|
|
6522
6314
|
.margin , .m{margin: var(--spacingScale) !important;}
|
|
6523
6315
|
.m-0 { margin: var(--space-0) !important; }
|
|
@@ -10078,10 +9870,6 @@ z-index: 10;
|
|
|
10078
9870
|
|
|
10079
9871
|
|
|
10080
9872
|
/* text color */
|
|
10081
|
-
|
|
10082
|
-
|
|
10083
|
-
|
|
10084
|
-
|
|
10085
9873
|
.text-primary,
|
|
10086
9874
|
.hover-text-primary:hover {
|
|
10087
9875
|
color: var(--primary) !important;
|
|
@@ -10472,10 +10260,10 @@ z-index: 10;
|
|
|
10472
10260
|
.hover-text-info900:hover {
|
|
10473
10261
|
color: var(--info900) !important;
|
|
10474
10262
|
}
|
|
10475
|
-
.text-white{
|
|
10263
|
+
.text-white , .hover-text-white:hover{
|
|
10476
10264
|
color: var(--white) !important;
|
|
10477
10265
|
}
|
|
10478
|
-
.text-dark{
|
|
10266
|
+
.text-dark , .hover-text-dark:hover{
|
|
10479
10267
|
color: var(--dark) !important;
|
|
10480
10268
|
}
|
|
10481
10269
|
.text-default{
|
|
@@ -10487,5 +10275,3 @@ z-index: 10;
|
|
|
10487
10275
|
-webkit-text-fill-color: transparent;
|
|
10488
10276
|
-webkit-background-clip: text;
|
|
10489
10277
|
}
|
|
10490
|
-
|
|
10491
|
-
|