funuicss 3.7.4 → 3.7.6
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 +711 -586
- 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 {
|
|
@@ -972,424 +971,6 @@ link:hover {
|
|
|
972
971
|
|
|
973
972
|
|
|
974
973
|
|
|
975
|
-
.text-minified , .text-md{
|
|
976
|
-
font-size: var(--minifiedFontSize);
|
|
977
|
-
line-height: 1rem;
|
|
978
|
-
}
|
|
979
|
-
|
|
980
|
-
/* Content formatting */
|
|
981
|
-
.article {
|
|
982
|
-
line-height: 1.7rem;
|
|
983
|
-
letter-spacing: normal;
|
|
984
|
-
}
|
|
985
|
-
|
|
986
|
-
|
|
987
|
-
|
|
988
|
-
.text-bold {
|
|
989
|
-
font-weight: bold !important;
|
|
990
|
-
}
|
|
991
|
-
.text-bolder {
|
|
992
|
-
font-weight: bolder !important;
|
|
993
|
-
}
|
|
994
|
-
.lightText{
|
|
995
|
-
font-weight: 300 !important;
|
|
996
|
-
}
|
|
997
|
-
|
|
998
|
-
.lighterText{
|
|
999
|
-
font-weight: 200 !important;
|
|
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
|
-
}
|
|
1381
|
-
@media (max-width: 600px) {
|
|
1382
|
-
.container {
|
|
1383
|
-
margin: 0 5%;
|
|
1384
|
-
}
|
|
1385
|
-
}
|
|
1386
|
-
|
|
1387
|
-
.page{
|
|
1388
|
-
min-height: 80vh;
|
|
1389
|
-
padding: 2rem 0;
|
|
1390
|
-
}
|
|
1391
|
-
|
|
1392
|
-
|
|
1393
974
|
/*buttons*/
|
|
1394
975
|
.button {
|
|
1395
976
|
border: none;
|
|
@@ -1400,20 +981,26 @@ link:hover {
|
|
|
1400
981
|
cursor: pointer;
|
|
1401
982
|
font-size: var(--minifiedFontSize);
|
|
1402
983
|
position: relative;
|
|
1403
|
-
overflow:
|
|
984
|
+
overflow: visible !important;
|
|
1404
985
|
z-index: 1;
|
|
1405
986
|
line-height: 1 !important;
|
|
1406
987
|
height: var(--inputButtonHeight);
|
|
1407
988
|
}
|
|
989
|
+
.button.primary{outline:1px solid var(--primary);}
|
|
990
|
+
.button.primary:active{outline:1px solid var(--primary300);}
|
|
991
|
+
.button.secondary{outline:1px solid var(--secondary);}
|
|
992
|
+
.button.secondary:active{outline:1px solid var(--secondary300);}
|
|
993
|
+
.button.accent{outline:1px solid var(--accent);}
|
|
994
|
+
.button.accent:active{outline:1px solid var(--accent300);}
|
|
1408
995
|
|
|
1409
996
|
|
|
1410
997
|
/* Ripple effect */
|
|
1411
998
|
.button::after {
|
|
1412
999
|
content: '';
|
|
1413
1000
|
position: absolute;
|
|
1414
|
-
border-radius:
|
|
1001
|
+
border-radius: var(--radius);
|
|
1415
1002
|
transform: scale(0);
|
|
1416
|
-
background: rgba(
|
|
1003
|
+
background: rgba(255, 255, 255, 0.1); /* dark ripple with opacity */
|
|
1417
1004
|
width: 100%;
|
|
1418
1005
|
height: 100%;
|
|
1419
1006
|
top: 0;
|
|
@@ -1424,7 +1011,7 @@ link:hover {
|
|
|
1424
1011
|
}
|
|
1425
1012
|
|
|
1426
1013
|
.button:active::after {
|
|
1427
|
-
transform: scale(
|
|
1014
|
+
transform: scale(1);
|
|
1428
1015
|
opacity: 1;
|
|
1429
1016
|
transition: 0s;
|
|
1430
1017
|
|
|
@@ -1748,21 +1335,18 @@ border-radius: var(--borderRadius);
|
|
|
1748
1335
|
visibility: visible !important;
|
|
1749
1336
|
max-height: 0;
|
|
1750
1337
|
overflow: hidden;
|
|
1751
|
-
transition:
|
|
1338
|
+
transition: 0.3s ease;
|
|
1752
1339
|
}
|
|
1753
1340
|
|
|
1754
1341
|
.nav_item.dropdown-open .nav_dropdown-mobile {
|
|
1755
1342
|
max-height: 500px;
|
|
1756
1343
|
}
|
|
1757
1344
|
|
|
1758
|
-
.nav_dropdown-mobile .nav_link {
|
|
1759
|
-
padding: 0.5rem 1rem !important;
|
|
1760
|
-
}
|
|
1761
1345
|
|
|
1762
1346
|
/* Mobile Menu */
|
|
1763
|
-
.nav_mobile-menu {
|
|
1347
|
+
/* .nav_mobile-menu {
|
|
1764
1348
|
position: fixed;
|
|
1765
|
-
top:
|
|
1349
|
+
top: 0;
|
|
1766
1350
|
left: 0;
|
|
1767
1351
|
right: 0;
|
|
1768
1352
|
bottom: 0;
|
|
@@ -1771,7 +1355,7 @@ border-radius: var(--borderRadius);
|
|
|
1771
1355
|
overflow-y: auto;
|
|
1772
1356
|
padding: 1rem;
|
|
1773
1357
|
border-top: var(--border);
|
|
1774
|
-
}
|
|
1358
|
+
} */
|
|
1775
1359
|
|
|
1776
1360
|
.nav_mobile-menu .nav_links {
|
|
1777
1361
|
align-items: flex-start !important;
|
|
@@ -1791,7 +1375,7 @@ border-radius: var(--borderRadius);
|
|
|
1791
1375
|
/* Active Link Styles */
|
|
1792
1376
|
.nav_link.active {
|
|
1793
1377
|
color: var(--primary) !important;
|
|
1794
|
-
font-weight:
|
|
1378
|
+
font-weight: 500;
|
|
1795
1379
|
}
|
|
1796
1380
|
|
|
1797
1381
|
/* Hover Effects */
|
|
@@ -1823,25 +1407,9 @@ border-radius: var(--borderRadius);
|
|
|
1823
1407
|
|
|
1824
1408
|
/* Focus States */
|
|
1825
1409
|
.nav_link:focus {
|
|
1826
|
-
outline: 2px solid var(--primary);
|
|
1827
1410
|
outline-offset: 2px;
|
|
1828
1411
|
}
|
|
1829
1412
|
|
|
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
1413
|
|
|
1846
1414
|
|
|
1847
1415
|
/* video */
|
|
@@ -5794,6 +5362,7 @@ background-color: rgba(0, 0, 0, 0.2);
|
|
|
5794
5362
|
.min-w-vw { min-width: 100vw !important; }
|
|
5795
5363
|
.min-h-vh { min-height: 100vh !important; }
|
|
5796
5364
|
.max-h-vh { max-height: 100vh !important; }
|
|
5365
|
+
|
|
5797
5366
|
.w-100-vw { width: 100vw !important; }
|
|
5798
5367
|
.w-90-vw { width: 90vw !important; }
|
|
5799
5368
|
.w-80-vw { width: 80vw !important; }
|
|
@@ -5840,26 +5409,57 @@ background-color: rgba(0, 0, 0, 0.2);
|
|
|
5840
5409
|
.w-90-p { width: 90% !important; }
|
|
5841
5410
|
.w-100-p , .w-full { width: 100% !important; }
|
|
5842
5411
|
|
|
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-
|
|
5412
|
+
.w-5 { max-width: 0.3125rem; width: 100% !important; }
|
|
5413
|
+
.w-10 { max-width: 0.625rem; width: 100% !important; }
|
|
5414
|
+
.w-15 { max-width: 0.9375rem; width: 100% !important; }
|
|
5415
|
+
.w-20 { max-width: 1.25rem; width: 100% !important; }
|
|
5416
|
+
|
|
5417
|
+
/* Increments of 5 from 25-95 */
|
|
5418
|
+
.w-25 { max-width: 1.5625rem; width: 100% !important; }
|
|
5419
|
+
.w-30 { max-width: 1.875rem; width: 100% !important; }
|
|
5420
|
+
.w-35 { max-width: 2.1875rem; width: 100% !important; }
|
|
5421
|
+
.w-40 { max-width: 2.5rem; width: 100% !important; }
|
|
5422
|
+
.w-45 { max-width: 2.8125rem; width: 100% !important; }
|
|
5423
|
+
.w-50 { max-width: 3.125rem; width: 100% !important; }
|
|
5424
|
+
.w-55 { max-width: 3.4375rem; width: 100% !important; }
|
|
5425
|
+
.w-60 { max-width: 3.75rem; width: 100% !important; }
|
|
5426
|
+
.w-65 { max-width: 4.0625rem; width: 100% !important; }
|
|
5427
|
+
.w-70 { max-width: 4.375rem; width: 100% !important; }
|
|
5428
|
+
.w-75 { max-width: 4.6875rem; width: 100% !important; }
|
|
5429
|
+
.w-80 { max-width: 5rem; width: 100% !important; }
|
|
5430
|
+
.w-85 { max-width: 5.3125rem; width: 100% !important; }
|
|
5431
|
+
.w-90 { max-width: 5.625rem; width: 100% !important; }
|
|
5432
|
+
.w-95 { max-width: 5.9375rem; width: 100% !important; }
|
|
5433
|
+
|
|
5434
|
+
.w-100 { max-width: 6.25rem; width: 100% !important; }
|
|
5435
|
+
.w-150 { max-width: 9.375rem; width: 100% !important; }
|
|
5436
|
+
.w-200 { max-width: 12.5rem; width: 100% !important; }
|
|
5437
|
+
.w-250 { max-width: 15.625rem; width: 100% !important; }
|
|
5438
|
+
.w-300 { max-width: 18.75rem; width: 100% !important; }
|
|
5439
|
+
.w-350 { max-width: 21.875rem; width: 100% !important; }
|
|
5440
|
+
.w-400 { max-width: 25rem; width: 100% !important; }
|
|
5441
|
+
.w-450 { max-width: 28.125rem; width: 100% !important; }
|
|
5442
|
+
.w-500 { max-width: 31.25rem; width: 100% !important; }
|
|
5443
|
+
.w-550 { max-width: 34.375rem; width: 100% !important; }
|
|
5444
|
+
.w-600 { max-width: 37.5rem; width: 100% !important; }
|
|
5445
|
+
.w-650 { max-width: 40.625rem; width: 100% !important; }
|
|
5446
|
+
.w-700 { max-width: 43.75rem; width: 100% !important; }
|
|
5447
|
+
.w-750 { max-width: 46.875rem; width: 100% !important; }
|
|
5448
|
+
.w-800 { max-width: 50rem; width: 100% !important; }
|
|
5449
|
+
.w-850 { max-width: 53.125rem; width: 100% !important; }
|
|
5450
|
+
.w-900 { max-width: 56.25rem; width: 100% !important; }
|
|
5451
|
+
.w-950 { max-width: 59.375rem; width: 100% !important; }
|
|
5452
|
+
.w-1000 { max-width: 62.5rem; width: 100% !important; }
|
|
5453
|
+
.w-1050 { max-width: 65.625rem; width: 100% !important; }
|
|
5454
|
+
.w-1100 { max-width: 68.75rem; width: 100% !important; }
|
|
5455
|
+
.w-1150 { max-width: 71.875rem; width: 100% !important; }
|
|
5456
|
+
.w-1200 { max-width: 75rem; width: 100% !important; }
|
|
5457
|
+
.w-1250 { max-width: 78.125rem; width: 100% !important; }
|
|
5458
|
+
.w-1300 { max-width: 81.25rem; width: 100% !important; }
|
|
5459
|
+
.w-1350 { max-width: 84.375rem; width: 100% !important; }
|
|
5460
|
+
.w-1400 { max-width: 87.5rem; width: 100% !important; }
|
|
5461
|
+
.w-1450 { max-width: 90.625rem; width: 100% !important; }
|
|
5462
|
+
.w-1500 { max-width: 93.75rem; width: 100% !important; }
|
|
5863
5463
|
|
|
5864
5464
|
|
|
5865
5465
|
/* Max-width and Min-width */
|
|
@@ -6247,25 +5847,60 @@ background-color: rgba(0, 0, 0, 0.2);
|
|
|
6247
5847
|
.min-h-900 { min-height: 56.25rem !important; }
|
|
6248
5848
|
|
|
6249
5849
|
/* 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-
|
|
5850
|
+
/* Height utilities with Pexels scaling system (1 unit = 0.0625rem) */
|
|
5851
|
+
/* Increments of 5 from 5-20 */
|
|
5852
|
+
.h-5 { max-height: 0.3125rem; height: 100% !important; }
|
|
5853
|
+
.h-10 { max-height: 0.625rem; height: 100% !important; }
|
|
5854
|
+
.h-15 { max-height: 0.9375rem; height: 100% !important; }
|
|
5855
|
+
.h-20 { max-height: 1.25rem; height: 100% !important; }
|
|
5856
|
+
|
|
5857
|
+
/* Increments of 5 from 25-95 */
|
|
5858
|
+
.h-25 { max-height: 1.5625rem; height: 100% !important; }
|
|
5859
|
+
.h-30 { max-height: 1.875rem; height: 100% !important; }
|
|
5860
|
+
.h-35 { max-height: 2.1875rem; height: 100% !important; }
|
|
5861
|
+
.h-40 { max-height: 2.5rem; height: 100% !important; }
|
|
5862
|
+
.h-45 { max-height: 2.8125rem; height: 100% !important; }
|
|
5863
|
+
.h-50 { max-height: 3.125rem; height: 100% !important; }
|
|
5864
|
+
.h-55 { max-height: 3.4375rem; height: 100% !important; }
|
|
5865
|
+
.h-60 { max-height: 3.75rem; height: 100% !important; }
|
|
5866
|
+
.h-65 { max-height: 4.0625rem; height: 100% !important; }
|
|
5867
|
+
.h-70 { max-height: 4.375rem; height: 100% !important; }
|
|
5868
|
+
.h-75 { max-height: 4.6875rem; height: 100% !important; }
|
|
5869
|
+
.h-80 { max-height: 5rem; height: 100% !important; }
|
|
5870
|
+
.h-85 { max-height: 5.3125rem; height: 100% !important; }
|
|
5871
|
+
.h-90 { max-height: 5.625rem; height: 100% !important; }
|
|
5872
|
+
.h-95 { max-height: 5.9375rem; height: 100% !important; }
|
|
5873
|
+
|
|
5874
|
+
/* Increments of 50 from 100-1500 */
|
|
5875
|
+
.h-100 { max-height: 6.25rem; height: 100% !important; }
|
|
5876
|
+
.h-150 { max-height: 9.375rem; height: 100% !important; }
|
|
5877
|
+
.h-200 { max-height: 12.5rem; height: 100% !important; }
|
|
5878
|
+
.h-250 { max-height: 15.625rem; height: 100% !important; }
|
|
5879
|
+
.h-300 { max-height: 18.75rem; height: 100% !important; }
|
|
5880
|
+
.h-350 { max-height: 21.875rem; height: 100% !important; }
|
|
5881
|
+
.h-400 { max-height: 25rem; height: 100% !important; }
|
|
5882
|
+
.h-450 { max-height: 28.125rem; height: 100% !important; }
|
|
5883
|
+
.h-500 { max-height: 31.25rem; height: 100% !important; }
|
|
5884
|
+
.h-550 { max-height: 34.375rem; height: 100% !important; }
|
|
5885
|
+
.h-600 { max-height: 37.5rem; height: 100% !important; }
|
|
5886
|
+
.h-650 { max-height: 40.625rem; height: 100% !important; }
|
|
5887
|
+
.h-700 { max-height: 43.75rem; height: 100% !important; }
|
|
5888
|
+
.h-750 { max-height: 46.875rem; height: 100% !important; }
|
|
5889
|
+
.h-800 { max-height: 50rem; height: 100% !important; }
|
|
5890
|
+
.h-850 { max-height: 53.125rem; height: 100% !important; }
|
|
5891
|
+
.h-900 { max-height: 56.25rem; height: 100% !important; }
|
|
5892
|
+
.h-950 { max-height: 59.375rem; height: 100% !important; }
|
|
5893
|
+
.h-1000 { max-height: 62.5rem; height: 100% !important; }
|
|
5894
|
+
.h-1050 { max-height: 65.625rem; height: 100% !important; }
|
|
5895
|
+
.h-1100 { max-height: 68.75rem; height: 100% !important; }
|
|
5896
|
+
.h-1150 { max-height: 71.875rem; height: 100% !important; }
|
|
5897
|
+
.h-1200 { max-height: 75rem; height: 100% !important; }
|
|
5898
|
+
.h-1250 { max-height: 78.125rem; height: 100% !important; }
|
|
5899
|
+
.h-1300 { max-height: 81.25rem; height: 100% !important; }
|
|
5900
|
+
.h-1350 { max-height: 84.375rem; height: 100% !important; }
|
|
5901
|
+
.h-1400 { max-height: 87.5rem; height: 100% !important; }
|
|
5902
|
+
.h-1450 { max-height: 90.625rem; height: 100% !important; }
|
|
5903
|
+
.h-1500 { max-height: 93.75rem; height: 100% !important; }
|
|
6269
5904
|
|
|
6270
5905
|
/* percentage */
|
|
6271
5906
|
.h-10-p { height: 10% !important; }
|
|
@@ -6517,7 +6152,6 @@ background-color: rgba(0, 0, 0, 0.2);
|
|
|
6517
6152
|
.margin-right-60{margin-right:60px!important}.margin-right-70{margin-right:70px!important}
|
|
6518
6153
|
.margin-right-80{margin-right:80px!important}.margin-right-90{margin-right:90px!important}
|
|
6519
6154
|
.margin-right-100{margin-bottom:100px}
|
|
6520
|
-
|
|
6521
6155
|
/* --------- MARGIN --------- */
|
|
6522
6156
|
.margin , .m{margin: var(--spacingScale) !important;}
|
|
6523
6157
|
.m-0 { margin: var(--space-0) !important; }
|
|
@@ -10078,10 +9712,6 @@ z-index: 10;
|
|
|
10078
9712
|
|
|
10079
9713
|
|
|
10080
9714
|
/* text color */
|
|
10081
|
-
|
|
10082
|
-
|
|
10083
|
-
|
|
10084
|
-
|
|
10085
9715
|
.text-primary,
|
|
10086
9716
|
.hover-text-primary:hover {
|
|
10087
9717
|
color: var(--primary) !important;
|
|
@@ -10472,10 +10102,10 @@ z-index: 10;
|
|
|
10472
10102
|
.hover-text-info900:hover {
|
|
10473
10103
|
color: var(--info900) !important;
|
|
10474
10104
|
}
|
|
10475
|
-
.text-white{
|
|
10105
|
+
.text-white , .hover-text-white:hover{
|
|
10476
10106
|
color: var(--white) !important;
|
|
10477
10107
|
}
|
|
10478
|
-
.text-dark{
|
|
10108
|
+
.text-dark , .hover-text-dark:hover{
|
|
10479
10109
|
color: var(--dark) !important;
|
|
10480
10110
|
}
|
|
10481
10111
|
.text-default{
|
|
@@ -10489,3 +10119,498 @@ z-index: 10;
|
|
|
10489
10119
|
}
|
|
10490
10120
|
|
|
10491
10121
|
|
|
10122
|
+
|
|
10123
|
+
|
|
10124
|
+
|
|
10125
|
+
/* HELPERS */
|
|
10126
|
+
|
|
10127
|
+
.text-minified , .text-md{
|
|
10128
|
+
font-size: var(--minifiedFontSize);
|
|
10129
|
+
line-height: 1rem;
|
|
10130
|
+
}
|
|
10131
|
+
/* Content formatting */
|
|
10132
|
+
.article {
|
|
10133
|
+
line-height: 1.7rem;
|
|
10134
|
+
letter-spacing: normal;
|
|
10135
|
+
}
|
|
10136
|
+
|
|
10137
|
+
/* Typography */
|
|
10138
|
+
.text-bold { font-weight: bold !important; }
|
|
10139
|
+
.text-bolder { font-weight: bolder !important; }
|
|
10140
|
+
.lightText { font-weight: 300 !important; }
|
|
10141
|
+
.lighterText { font-weight: 200 !important; }
|
|
10142
|
+
.underlineText { text-decoration: underline; }
|
|
10143
|
+
.emp { font-style: italic; }
|
|
10144
|
+
.italicText { font-style: italic; }
|
|
10145
|
+
.uppercase { text-transform: uppercase; }
|
|
10146
|
+
.lowercase { text-transform: lowercase; }
|
|
10147
|
+
.capitalize { text-transform: capitalize; }
|
|
10148
|
+
.monospace { font-family: monospace !important; }
|
|
10149
|
+
|
|
10150
|
+
/* Scroll */
|
|
10151
|
+
.scroll-y { overflow-y: auto !important; overflow-x: visible !important; }
|
|
10152
|
+
.scroll-x { overflow-x: auto !important; overflow-y: visible !important; }
|
|
10153
|
+
.scroll { overflow: auto !important; }
|
|
10154
|
+
.vertical-scroll { overflow-y: scroll; }
|
|
10155
|
+
.horizontal-scroll { overflow-x: scroll; }
|
|
10156
|
+
|
|
10157
|
+
/* Helpers */
|
|
10158
|
+
.glassy { backdrop-filter: blur(0.3rem); background-color: transparent !important; }
|
|
10159
|
+
.transparent { background-color: transparent !important; }
|
|
10160
|
+
.flat { border-radius: 0rem !important; }
|
|
10161
|
+
.no-padding { padding: 0px !important; }
|
|
10162
|
+
.no-margin { margin: 0px; }
|
|
10163
|
+
.line-through { text-decoration: line-through; }
|
|
10164
|
+
.underline { text-decoration: underline; }
|
|
10165
|
+
.overline { text-decoration: overline; }
|
|
10166
|
+
.wavy { text-decoration: wavy; }
|
|
10167
|
+
.borderless { border: none; }
|
|
10168
|
+
.border { border: var(--border); }
|
|
10169
|
+
.hide { display: none; }
|
|
10170
|
+
.show { display: block; }
|
|
10171
|
+
.center { margin: 0px auto; }
|
|
10172
|
+
.float-right { float: right; }
|
|
10173
|
+
.float-left { float: left; }
|
|
10174
|
+
.clear-both { clear: both; }
|
|
10175
|
+
.responsive { width: 100%; height: auto; }
|
|
10176
|
+
|
|
10177
|
+
/* Text Alignment */
|
|
10178
|
+
.text-center { text-align: center !important; }
|
|
10179
|
+
.text-left { text-align: left !important; }
|
|
10180
|
+
.text-right { text-align: right !important; }
|
|
10181
|
+
.text-justify { text-align: justify !important; }
|
|
10182
|
+
|
|
10183
|
+
/* Sections */
|
|
10184
|
+
.section { margin-top: 1rem; margin-bottom: 1rem; }
|
|
10185
|
+
.minSection { margin-top: 0.5rem; margin-bottom: 0.5rem; }
|
|
10186
|
+
.maxSection { margin-top: 2rem; margin-bottom: 2rem; }
|
|
10187
|
+
|
|
10188
|
+
/* Opacity */
|
|
10189
|
+
.opacity-1, .hover-opacity-1:hover { opacity: 1; }
|
|
10190
|
+
.opacity-2, .hover-opacity-2:hover { opacity: 0.9; }
|
|
10191
|
+
.opacity-3, .hover-opacity-3:hover { opacity: 0.8; }
|
|
10192
|
+
.opacity-4, .hover-opacity-4:hover { opacity: 0.7; }
|
|
10193
|
+
.opacity-5, .hover-opacity-5:hover { opacity: 0.6; }
|
|
10194
|
+
.opacity-6, .hover-opacity-6:hover { opacity: 0.5; }
|
|
10195
|
+
.opacity-7, .hover-opacity-7:hover { opacity: 0.4; }
|
|
10196
|
+
.opacity-8, .hover-opacity-8:hover { opacity: 0.2; }
|
|
10197
|
+
.opacity-9, .hover-opacity-9:hover { opacity: 0.1; }
|
|
10198
|
+
|
|
10199
|
+
/* Borders */
|
|
10200
|
+
.hr, .bb { border-bottom: var(--border); }
|
|
10201
|
+
.vr, .bl { border-left: var(--border); }
|
|
10202
|
+
.bt { border-top: var(--border); }
|
|
10203
|
+
.br { border-right: var(--border); }
|
|
10204
|
+
.top-border { border-top: var(--border); }
|
|
10205
|
+
.bottom-border { border-bottom: var(--border); }
|
|
10206
|
+
.right-border { border-right: var(--border); }
|
|
10207
|
+
.left-border { border-left: var(--border); }
|
|
10208
|
+
|
|
10209
|
+
/* Border Radius */
|
|
10210
|
+
.rounded-0 { border-radius: 0rem !important; }
|
|
10211
|
+
.rounded-1 { border-radius: 0.125rem !important; }
|
|
10212
|
+
.rounded-2 { border-radius: 0.25rem !important; }
|
|
10213
|
+
.rounded-3 { border-radius: 0.375rem !important; }
|
|
10214
|
+
.rounded-4 { border-radius: 0.5rem !important; }
|
|
10215
|
+
.rounded-5 { border-radius: 0.625rem !important; }
|
|
10216
|
+
.rounded-6 { border-radius: 0.75rem !important; }
|
|
10217
|
+
.rounded-8 { border-radius: 1rem !important; }
|
|
10218
|
+
.rounded-10 { border-radius: 1.25rem !important; }
|
|
10219
|
+
.rounded-12 { border-radius: 1.5rem !important; }
|
|
10220
|
+
.rounded-16 { border-radius: 2rem !important; }
|
|
10221
|
+
.rounded-20 { border-radius: 2.5rem !important; }
|
|
10222
|
+
.rounded-24 { border-radius: 3rem !important; }
|
|
10223
|
+
.rounded-full { border-radius: 9999px !important; }
|
|
10224
|
+
|
|
10225
|
+
/* Individual Corner Radius */
|
|
10226
|
+
.rounded-t-0 { border-top-left-radius: 0rem !important; border-top-right-radius: 0rem !important; }
|
|
10227
|
+
.rounded-t-1 { border-top-left-radius: 0.125rem !important; border-top-right-radius: 0.125rem !important; }
|
|
10228
|
+
.rounded-t-2 { border-top-left-radius: 0.25rem !important; border-top-right-radius: 0.25rem !important; }
|
|
10229
|
+
.rounded-t-4 { border-top-left-radius: 0.5rem !important; border-top-right-radius: 0.5rem !important; }
|
|
10230
|
+
.rounded-t-8 { border-top-left-radius: 1rem !important; border-top-right-radius: 1rem !important; }
|
|
10231
|
+
|
|
10232
|
+
.rounded-b-0 { border-bottom-left-radius: 0rem !important; border-bottom-right-radius: 0rem !important; }
|
|
10233
|
+
.rounded-b-1 { border-bottom-left-radius: 0.125rem !important; border-bottom-right-radius: 0.125rem !important; }
|
|
10234
|
+
.rounded-b-2 { border-bottom-left-radius: 0.25rem !important; border-bottom-right-radius: 0.25rem !important; }
|
|
10235
|
+
.rounded-b-4 { border-bottom-left-radius: 0.5rem !important; border-bottom-right-radius: 0.5rem !important; }
|
|
10236
|
+
.rounded-b-8 { border-bottom-left-radius: 1rem !important; border-bottom-right-radius: 1rem !important; }
|
|
10237
|
+
|
|
10238
|
+
.rounded-l-0 { border-top-left-radius: 0rem !important; border-bottom-left-radius: 0rem !important; }
|
|
10239
|
+
.rounded-l-1 { border-top-left-radius: 0.125rem !important; border-bottom-left-radius: 0.125rem !important; }
|
|
10240
|
+
.rounded-l-2 { border-top-left-radius: 0.25rem !important; border-bottom-left-radius: 0.25rem !important; }
|
|
10241
|
+
.rounded-l-4 { border-top-left-radius: 0.5rem !important; border-bottom-left-radius: 0.5rem !important; }
|
|
10242
|
+
.rounded-l-8 { border-top-left-radius: 1rem !important; border-bottom-left-radius: 1rem !important; }
|
|
10243
|
+
|
|
10244
|
+
.rounded-r-0 { border-top-right-radius: 0rem !important; border-bottom-right-radius: 0rem !important; }
|
|
10245
|
+
.rounded-r-1 { border-top-right-radius: 0.125rem !important; border-bottom-right-radius: 0.125rem !important; }
|
|
10246
|
+
.rounded-r-2 { border-top-right-radius: 0.25rem !important; border-bottom-right-radius: 0.25rem !important; }
|
|
10247
|
+
.rounded-r-4 { border-top-right-radius: 0.5rem !important; border-bottom-right-radius: 0.5rem !important; }
|
|
10248
|
+
.rounded-r-8 { border-top-right-radius: 1rem !important; border-bottom-right-radius: 1rem !important; }
|
|
10249
|
+
|
|
10250
|
+
/* Individual Corners */
|
|
10251
|
+
.rounded-tl-0 { border-top-left-radius: 0rem !important; }
|
|
10252
|
+
.rounded-tl-1 { border-top-left-radius: 0.125rem !important; }
|
|
10253
|
+
.rounded-tl-2 { border-top-left-radius: 0.25rem !important; }
|
|
10254
|
+
.rounded-tl-4 { border-top-left-radius: 0.5rem !important; }
|
|
10255
|
+
.rounded-tl-8 { border-top-left-radius: 1rem !important; }
|
|
10256
|
+
|
|
10257
|
+
.rounded-tr-0 { border-top-right-radius: 0rem !important; }
|
|
10258
|
+
.rounded-tr-1 { border-top-right-radius: 0.125rem !important; }
|
|
10259
|
+
.rounded-tr-2 { border-top-right-radius: 0.25rem !important; }
|
|
10260
|
+
.rounded-tr-4 { border-top-right-radius: 0.5rem !important; }
|
|
10261
|
+
.rounded-tr-8 { border-top-right-radius: 1rem !important; }
|
|
10262
|
+
|
|
10263
|
+
.rounded-bl-0 { border-bottom-left-radius: 0rem !important; }
|
|
10264
|
+
.rounded-bl-1 { border-bottom-left-radius: 0.125rem !important; }
|
|
10265
|
+
.rounded-bl-2 { border-bottom-left-radius: 0.25rem !important; }
|
|
10266
|
+
.rounded-bl-4 { border-bottom-left-radius: 0.5rem !important; }
|
|
10267
|
+
.rounded-bl-8 { border-bottom-left-radius: 1rem !important; }
|
|
10268
|
+
|
|
10269
|
+
.rounded-br-0 { border-bottom-right-radius: 0rem !important; }
|
|
10270
|
+
.rounded-br-1 { border-bottom-right-radius: 0.125rem !important; }
|
|
10271
|
+
.rounded-br-2 { border-bottom-right-radius: 0.25rem !important; }
|
|
10272
|
+
.rounded-br-4 { border-bottom-right-radius: 0.5rem !important; }
|
|
10273
|
+
.rounded-br-8 { border-bottom-right-radius: 1rem !important; }
|
|
10274
|
+
|
|
10275
|
+
/* Z-Index */
|
|
10276
|
+
.z-index-1 { z-index: 1; }
|
|
10277
|
+
.z-index-2 { z-index: 2; }
|
|
10278
|
+
.z-index-3 { z-index: 3; }
|
|
10279
|
+
.z-index-4 { z-index: 4; }
|
|
10280
|
+
.z-index-5 { z-index: 5; }
|
|
10281
|
+
.z-index-6 { z-index: 6; }
|
|
10282
|
+
.z-index-7 { z-index: 7; }
|
|
10283
|
+
.z-index-8 { z-index: 8; }
|
|
10284
|
+
.z-index-9 { z-index: 9; }
|
|
10285
|
+
.z-index-10 { z-index: 10; }
|
|
10286
|
+
|
|
10287
|
+
/* Positioning */
|
|
10288
|
+
.top-right { position: absolute; top: 0px; right: 0px; }
|
|
10289
|
+
.top-left { position: absolute; top: 0px; left: 0px; }
|
|
10290
|
+
.top { position: absolute; top: 0px; }
|
|
10291
|
+
.bottom-right { position: absolute; bottom: 0px; right: 0px; }
|
|
10292
|
+
.bottom-left { position: absolute; bottom: 0px; left: 0px; }
|
|
10293
|
+
.bottom { position: absolute; bottom: 0px; }
|
|
10294
|
+
.middle { display: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }
|
|
10295
|
+
.relative { position: relative; }
|
|
10296
|
+
.fixed { position: fixed; }
|
|
10297
|
+
.sticky { position: sticky; }
|
|
10298
|
+
.absolute { position: absolute; }
|
|
10299
|
+
.sticky-top { position: -webkit-sticky; position: sticky; top: 0px; z-index: var(--navBarZindex); width: 100%; }
|
|
10300
|
+
.fixed-top { position: fixed; top: 0px; z-index: var(--navBarZindex); width: 100%; }
|
|
10301
|
+
.fixedBottom { position: fixed; bottom: 0; left: 0; width: 100%; z-index: var(--navBarZindex); }
|
|
10302
|
+
.fixedTop { position: fixed; bottom: 0; top: 0; width: 100%; z-index: var(--navBarZindex); }
|
|
10303
|
+
|
|
10304
|
+
/* Display */
|
|
10305
|
+
.block { display: block; }
|
|
10306
|
+
.inline-block { display: inline-block; }
|
|
10307
|
+
.content-middle { display: flex; justify-content: center; align-items: center; height: 100%; width: 100%; }
|
|
10308
|
+
.central { display: flex; align-items: center; justify-content: center; }
|
|
10309
|
+
|
|
10310
|
+
/* Flexbox */
|
|
10311
|
+
.row-flex { display: flex !important; flex-direction: row !important; align-items: center; }
|
|
10312
|
+
.row-flex.gap { grid-gap: 0.5rem; gap: 0.2rem; }
|
|
10313
|
+
.row-flex.space-between { justify-content: space-between; }
|
|
10314
|
+
.row-flex.stretch { align-items: stretch !important; }
|
|
10315
|
+
.row-flex.space-around { justify-content: space-around; }
|
|
10316
|
+
.row-flex.center { justify-content: center; }
|
|
10317
|
+
|
|
10318
|
+
/* Shadows */
|
|
10319
|
+
.shadow { box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2); }
|
|
10320
|
+
.hover-shadow { transition: 0.3s; }
|
|
10321
|
+
.hover-shadow:hover { box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2); }
|
|
10322
|
+
.shadow-bingo { box-shadow: 10px 20px 20px 10px rgba(225, 225, 225, 0.5), 0px 40px 40px 0px rgba(225, 225, 255, 0.6); }
|
|
10323
|
+
|
|
10324
|
+
/* Fit */
|
|
10325
|
+
.fit { height: 100%; width: 100%; }
|
|
10326
|
+
.fit-width { width: fit-content; }
|
|
10327
|
+
.fit-height { height: fit-content; }
|
|
10328
|
+
|
|
10329
|
+
/* Rounded */
|
|
10330
|
+
.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; }
|
|
10331
|
+
.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; }
|
|
10332
|
+
|
|
10333
|
+
/* Hover Effects */
|
|
10334
|
+
.hoverable { transition: 0.1s linear; }
|
|
10335
|
+
.hoverable:hover { background-color: var(--hoverable) !important; }
|
|
10336
|
+
.hoverable-border { border: 0.1rem solid transparent; transition: 0.3s ease-in-out; }
|
|
10337
|
+
.hoverable-border:hover { border: var(--border); }
|
|
10338
|
+
|
|
10339
|
+
/* Cursor */
|
|
10340
|
+
.cursor-pointer { cursor: pointer; }
|
|
10341
|
+
.cursor-copy { cursor: copy; }
|
|
10342
|
+
.cursor-none { cursor: none; }
|
|
10343
|
+
.cursor-move { cursor: move; }
|
|
10344
|
+
|
|
10345
|
+
/* Containers */
|
|
10346
|
+
.container { margin: 0 10%; }
|
|
10347
|
+
@media (max-width: 600px) {
|
|
10348
|
+
.container { margin: 0 5%; }
|
|
10349
|
+
}
|
|
10350
|
+
.page { min-height: 80vh; padding: 2rem 0; }
|
|
10351
|
+
|
|
10352
|
+
|
|
10353
|
+
/* ===== BLUR EFFECTS ===== */
|
|
10354
|
+
.blur-0 { filter: blur(0) !important; }
|
|
10355
|
+
.blur-xs { filter: blur(0.125rem) !important; }
|
|
10356
|
+
.blur-sm { filter: blur(0.25rem) !important; }
|
|
10357
|
+
.blur-md { filter: blur(0.5rem) !important; }
|
|
10358
|
+
.blur-lg { filter: blur(1rem) !important; }
|
|
10359
|
+
.blur-xl { filter: blur(1.5rem) !important; }
|
|
10360
|
+
.blur-2xl { filter: blur(2rem) !important; }
|
|
10361
|
+
|
|
10362
|
+
/* Backdrop Blur */
|
|
10363
|
+
.backdrop-blur-0 { backdrop-filter: blur(0) !important; }
|
|
10364
|
+
.backdrop-blur-xs { backdrop-filter: blur(0.125rem) !important; }
|
|
10365
|
+
.backdrop-blur-sm { backdrop-filter: blur(0.25rem) !important; }
|
|
10366
|
+
.backdrop-blur-md { backdrop-filter: blur(0.5rem) !important; }
|
|
10367
|
+
.backdrop-blur-lg { backdrop-filter: blur(1rem) !important; }
|
|
10368
|
+
.backdrop-blur-xl { backdrop-filter: blur(1.5rem) !important; }
|
|
10369
|
+
.backdrop-blur-2xl { backdrop-filter: blur(2rem) !important; }
|
|
10370
|
+
|
|
10371
|
+
|
|
10372
|
+
/* ===== ENTRANCE ANIMATIONS ===== */
|
|
10373
|
+
/* Fade In */
|
|
10374
|
+
.fade-in { animation: fadeIn 0.6s ease-in-out !important; }
|
|
10375
|
+
.fade-in-up { animation: fadeInUp 0.8s ease-out !important; }
|
|
10376
|
+
.fade-in-down { animation: fadeInDown 0.8s ease-out !important; }
|
|
10377
|
+
.fade-in-left { animation: fadeInLeft 0.8s ease-out !important; }
|
|
10378
|
+
.fade-in-right { animation: fadeInRight 0.8s ease-out !important; }
|
|
10379
|
+
|
|
10380
|
+
/* Slide In */
|
|
10381
|
+
.slide-in-up { animation: slideInUp 0.8s ease-out !important; }
|
|
10382
|
+
.slide-in-down { animation: slideInDown 0.8s ease-out !important; }
|
|
10383
|
+
.slide-in-left { animation: slideInLeft 0.8s ease-out !important; }
|
|
10384
|
+
.slide-in-right { animation: slideInRight 0.8s ease-out !important; }
|
|
10385
|
+
|
|
10386
|
+
/* Zoom In */
|
|
10387
|
+
.zoom-in { animation: zoomIn 0.6s ease-out !important; }
|
|
10388
|
+
.zoom-in-up { animation: zoomInUp 0.8s ease-out !important; }
|
|
10389
|
+
.zoom-in-down { animation: zoomInDown 0.8s ease-out !important; }
|
|
10390
|
+
.zoom-in-left { animation: zoomInLeft 0.8s ease-out !important; }
|
|
10391
|
+
.zoom-in-right { animation: zoomInRight 0.8s ease-out !important; }
|
|
10392
|
+
|
|
10393
|
+
/* Bounce In */
|
|
10394
|
+
.bounce-in { animation: bounceIn 0.8s ease-out !important; }
|
|
10395
|
+
.bounce-in-up { animation: bounceInUp 0.8s ease-out !important; }
|
|
10396
|
+
.bounce-in-down { animation: bounceInDown 0.8s ease-out !important; }
|
|
10397
|
+
.bounce-in-left { animation: bounceInLeft 0.8s ease-out !important; }
|
|
10398
|
+
.bounce-in-right { animation: bounceInRight 0.8s ease-out !important; }
|
|
10399
|
+
|
|
10400
|
+
/* Flip In */
|
|
10401
|
+
.flip-in-x { animation: flipInX 0.8s ease-out !important; }
|
|
10402
|
+
.flip-in-y { animation: flipInY 0.8s ease-out !important; }
|
|
10403
|
+
|
|
10404
|
+
/* Rotate In */
|
|
10405
|
+
.rotate-in { animation: rotateIn 0.8s ease-out !important; }
|
|
10406
|
+
.rotate-in-up { animation: rotateInUp 0.8s ease-out !important; }
|
|
10407
|
+
.rotate-in-down { animation: rotateInDown 0.8s ease-out !important; }
|
|
10408
|
+
|
|
10409
|
+
/* Special Entrance */
|
|
10410
|
+
.roll-in { animation: rollIn 0.8s ease-out !important; }
|
|
10411
|
+
.light-speed-in { animation: lightSpeedIn 0.8s ease-out !important; }
|
|
10412
|
+
.swing-in { animation: swingIn 0.8s ease-out !important; }
|
|
10413
|
+
.wobble-in { animation: wobbleIn 0.8s ease-out !important; }
|
|
10414
|
+
.pulse-in { animation: pulseIn 0.8s ease-out !important; }
|
|
10415
|
+
|
|
10416
|
+
/* ===== HOVER ANIMATIONS ===== */
|
|
10417
|
+
/* Scale Hover */
|
|
10418
|
+
.hover-scale { transition: transform 0.3s ease !important; }
|
|
10419
|
+
.hover-scale:hover { transform: scale(1.05) !important; }
|
|
10420
|
+
.hover-scale-lg { transition: transform 0.3s ease !important; }
|
|
10421
|
+
.hover-scale-lg:hover { transform: scale(1.1) !important; }
|
|
10422
|
+
.hover-scale-sm { transition: transform 0.3s ease !important; }
|
|
10423
|
+
.hover-scale-sm:hover { transform: scale(1.02) !important; }
|
|
10424
|
+
|
|
10425
|
+
/* Lift Hover */
|
|
10426
|
+
.hover-lift { transition: all 0.3s ease !important; }
|
|
10427
|
+
.hover-lift:hover { transform: translateY(-0.5rem) !important; box-shadow: var(--card) !important; }
|
|
10428
|
+
.hover-lift-lg { transition: all 0.3s ease !important; }
|
|
10429
|
+
.hover-lift-lg:hover { transform: translateY(-1rem) !important; box-shadow: var(--card) !important; }
|
|
10430
|
+
|
|
10431
|
+
/* Glow Hover */
|
|
10432
|
+
.hover-glow { transition: all 0.3s ease !important; }
|
|
10433
|
+
.hover-glow:hover { box-shadow: 0 0 2rem rgba(var(--primary-rgb), 0.4) !important; transform: translateY(-0.25rem) !important; }
|
|
10434
|
+
|
|
10435
|
+
/* Shake Hover */
|
|
10436
|
+
.hover-shake:hover { animation: shake 0.5s ease-in-out !important; }
|
|
10437
|
+
.hover-wobble:hover { animation: wobble 0.5s ease-in-out !important; }
|
|
10438
|
+
.hover-bounce:hover { animation: bounce 0.5s ease-in-out !important; }
|
|
10439
|
+
|
|
10440
|
+
/* Border Hover */
|
|
10441
|
+
.hover-border-grow { transition: all 0.3s ease !important; border: 2px solid transparent !important; }
|
|
10442
|
+
.hover-border-grow:hover { border-color: var(--gradient) !important; transform: scale(1.02) !important; }
|
|
10443
|
+
|
|
10444
|
+
/* Text Hover */
|
|
10445
|
+
.hover-text-glow:hover { text-shadow: 0 0 1rem currentColor !important; }
|
|
10446
|
+
.hover-text-lift:hover { transform: translateY(-0.125rem) !important; text-shadow: var(--card) !important; }
|
|
10447
|
+
|
|
10448
|
+
/* ===== CONTINUOUS ANIMATIONS ===== */
|
|
10449
|
+
.animate-float { animation: float 3s ease-in-out infinite !important; }
|
|
10450
|
+
.animate-pulse-slow { animation: pulse 3s ease-in-out infinite !important; }
|
|
10451
|
+
.animate-bounce-slow { animation: bounce 2s ease-in-out infinite !important; }
|
|
10452
|
+
.animate-spin-slow { animation: spin 3s linear infinite !important; }
|
|
10453
|
+
.animate-ping-slow { animation: ping 3s ease-out infinite !important; }
|
|
10454
|
+
|
|
10455
|
+
.animate-breath { animation: breath 4s ease-in-out infinite !important; }
|
|
10456
|
+
.animate-wave { animation: wave 2s ease-in-out infinite !important; }
|
|
10457
|
+
.animate-glow { animation: glow 2s ease-in-out infinite !important; }
|
|
10458
|
+
|
|
10459
|
+
/* ===== ANIMATION KEYFRAMES ===== */
|
|
10460
|
+
@keyframes fadeIn {
|
|
10461
|
+
from { opacity: 0; }
|
|
10462
|
+
to { opacity: 1; }
|
|
10463
|
+
}
|
|
10464
|
+
|
|
10465
|
+
@keyframes fadeInUp {
|
|
10466
|
+
from { opacity: 0; transform: translateY(2rem); }
|
|
10467
|
+
to { opacity: 1; transform: translateY(0); }
|
|
10468
|
+
}
|
|
10469
|
+
|
|
10470
|
+
@keyframes fadeInDown {
|
|
10471
|
+
from { opacity: 0; transform: translateY(-2rem); }
|
|
10472
|
+
to { opacity: 1; transform: translateY(0); }
|
|
10473
|
+
}
|
|
10474
|
+
|
|
10475
|
+
@keyframes fadeInLeft {
|
|
10476
|
+
from { opacity: 0; transform: translateX(-2rem); }
|
|
10477
|
+
to { opacity: 1; transform: translateX(0); }
|
|
10478
|
+
}
|
|
10479
|
+
|
|
10480
|
+
@keyframes fadeInRight {
|
|
10481
|
+
from { opacity: 0; transform: translateX(2rem); }
|
|
10482
|
+
to { opacity: 1; transform: translateX(0); }
|
|
10483
|
+
}
|
|
10484
|
+
|
|
10485
|
+
@keyframes slideInUp {
|
|
10486
|
+
from { transform: translateY(100%); }
|
|
10487
|
+
to { transform: translateY(0); }
|
|
10488
|
+
}
|
|
10489
|
+
|
|
10490
|
+
@keyframes slideInDown {
|
|
10491
|
+
from { transform: translateY(-100%); }
|
|
10492
|
+
to { transform: translateY(0); }
|
|
10493
|
+
}
|
|
10494
|
+
|
|
10495
|
+
@keyframes slideInLeft {
|
|
10496
|
+
from { transform: translateX(-100%); }
|
|
10497
|
+
to { transform: translateX(0); }
|
|
10498
|
+
}
|
|
10499
|
+
|
|
10500
|
+
@keyframes slideInRight {
|
|
10501
|
+
from { transform: translateX(100%); }
|
|
10502
|
+
to { transform: translateX(0); }
|
|
10503
|
+
}
|
|
10504
|
+
|
|
10505
|
+
@keyframes zoomIn {
|
|
10506
|
+
from { opacity: 0; transform: scale(0.5); }
|
|
10507
|
+
to { opacity: 1; transform: scale(1); }
|
|
10508
|
+
}
|
|
10509
|
+
|
|
10510
|
+
@keyframes zoomInUp {
|
|
10511
|
+
from { opacity: 0; transform: scale(0.5) translateY(2rem); }
|
|
10512
|
+
to { opacity: 1; transform: scale(1) translateY(0); }
|
|
10513
|
+
}
|
|
10514
|
+
|
|
10515
|
+
@keyframes bounceIn {
|
|
10516
|
+
0% { opacity: 0; transform: scale(0.3); }
|
|
10517
|
+
50% { opacity: 1; transform: scale(1.05); }
|
|
10518
|
+
70% { transform: scale(0.9); }
|
|
10519
|
+
100% { opacity: 1; transform: scale(1); }
|
|
10520
|
+
}
|
|
10521
|
+
|
|
10522
|
+
@keyframes bounceInUp {
|
|
10523
|
+
0% { opacity: 0; transform: translateY(2rem) scale(0.3); }
|
|
10524
|
+
50% { opacity: 1; transform: translateY(-1rem) scale(1.05); }
|
|
10525
|
+
70% { transform: translateY(0.5rem) scale(0.9); }
|
|
10526
|
+
100% { opacity: 1; transform: translateY(0) scale(1); }
|
|
10527
|
+
}
|
|
10528
|
+
|
|
10529
|
+
@keyframes flipInX {
|
|
10530
|
+
from { transform: perspective(400px) rotateX(90deg); opacity: 0; }
|
|
10531
|
+
to { transform: perspective(400px) rotateX(0deg); opacity: 1; }
|
|
10532
|
+
}
|
|
10533
|
+
|
|
10534
|
+
@keyframes flipInY {
|
|
10535
|
+
from { transform: perspective(400px) rotateY(90deg); opacity: 0; }
|
|
10536
|
+
to { transform: perspective(400px) rotateY(0deg); opacity: 1; }
|
|
10537
|
+
}
|
|
10538
|
+
|
|
10539
|
+
@keyframes rotateIn {
|
|
10540
|
+
from { transform: rotate(-180deg); opacity: 0; }
|
|
10541
|
+
to { transform: rotate(0deg); opacity: 1; }
|
|
10542
|
+
}
|
|
10543
|
+
|
|
10544
|
+
@keyframes rollIn {
|
|
10545
|
+
from { opacity: 0; transform: translateX(-100%) rotate(-120deg); }
|
|
10546
|
+
to { opacity: 1; transform: translateX(0px) rotate(0deg); }
|
|
10547
|
+
}
|
|
10548
|
+
|
|
10549
|
+
@keyframes lightSpeedIn {
|
|
10550
|
+
from { transform: translate3d(100%, 0, 0) skewX(-30deg); opacity: 0; }
|
|
10551
|
+
60% { transform: skewX(20deg); opacity: 1; }
|
|
10552
|
+
80% { transform: skewX(-5deg); }
|
|
10553
|
+
to { transform: translate3d(0, 0, 0); }
|
|
10554
|
+
}
|
|
10555
|
+
|
|
10556
|
+
@keyframes swingIn {
|
|
10557
|
+
20% { transform: rotate3d(0, 0, 1, 15deg); }
|
|
10558
|
+
40% { transform: rotate3d(0, 0, 1, -10deg); }
|
|
10559
|
+
60% { transform: rotate3d(0, 0, 1, 5deg); }
|
|
10560
|
+
80% { transform: rotate3d(0, 0, 1, -5deg); }
|
|
10561
|
+
to { transform: rotate3d(0, 0, 1, 0deg); }
|
|
10562
|
+
}
|
|
10563
|
+
|
|
10564
|
+
@keyframes wobbleIn {
|
|
10565
|
+
from { opacity: 0; transform: scale3d(0.1, 0.1, 0.1) rotate3d(0, 0, 1, -45deg); }
|
|
10566
|
+
50% { opacity: 1; transform: scale3d(1.05, 1.05, 1.05) rotate3d(0, 0, 1, 15deg); }
|
|
10567
|
+
70% { transform: scale3d(0.95, 0.95, 0.95) rotate3d(0, 0, 1, -10deg); }
|
|
10568
|
+
to { opacity: 1; transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, 0deg); }
|
|
10569
|
+
}
|
|
10570
|
+
|
|
10571
|
+
@keyframes pulseIn {
|
|
10572
|
+
0% { opacity: 0; transform: scale(0.5); }
|
|
10573
|
+
50% { opacity: 1; transform: scale(1.1); }
|
|
10574
|
+
100% { opacity: 1; transform: scale(1); }
|
|
10575
|
+
}
|
|
10576
|
+
|
|
10577
|
+
/* Hover Keyframes */
|
|
10578
|
+
@keyframes shake {
|
|
10579
|
+
0%, 100% { transform: translateX(0); }
|
|
10580
|
+
20%, 60% { transform: translateX(-0.5rem); }
|
|
10581
|
+
40%, 80% { transform: translateX(0.5rem); }
|
|
10582
|
+
}
|
|
10583
|
+
|
|
10584
|
+
@keyframes wobble {
|
|
10585
|
+
0%, 100% { transform: translateX(0%); }
|
|
10586
|
+
15% { transform: translateX(-25%) rotate(-5deg); }
|
|
10587
|
+
30% { transform: translateX(20%) rotate(3deg); }
|
|
10588
|
+
45% { transform: translateX(-15%) rotate(-3deg); }
|
|
10589
|
+
60% { transform: translateX(10%) rotate(2deg); }
|
|
10590
|
+
75% { transform: translateX(-5%) rotate(-1deg); }
|
|
10591
|
+
}
|
|
10592
|
+
|
|
10593
|
+
/* Continuous Animations */
|
|
10594
|
+
@keyframes float {
|
|
10595
|
+
0%, 100% { transform: translateY(0px); }
|
|
10596
|
+
50% { transform: translateY(-1rem); }
|
|
10597
|
+
}
|
|
10598
|
+
|
|
10599
|
+
@keyframes breath {
|
|
10600
|
+
0%, 100% { transform: scale(1); opacity: 1; }
|
|
10601
|
+
50% { transform: scale(1.05); opacity: 0.8; }
|
|
10602
|
+
}
|
|
10603
|
+
|
|
10604
|
+
@keyframes wave {
|
|
10605
|
+
0%, 100% { transform: translateX(0); }
|
|
10606
|
+
50% { transform: translateX(0.5rem); }
|
|
10607
|
+
}
|
|
10608
|
+
|
|
10609
|
+
@keyframes glow {
|
|
10610
|
+
0%, 100% { box-shadow: 0 0 0.5rem rgba(var(--primary-rgb), 0.5); }
|
|
10611
|
+
50% { box-shadow: 0 0 2rem rgba(var(--primary-rgb), 0.8); }
|
|
10612
|
+
}
|
|
10613
|
+
|
|
10614
|
+
@keyframes ping {
|
|
10615
|
+
75%, 100% { transform: scale(2); opacity: 0; }
|
|
10616
|
+
}
|