funuicss 3.7.5 → 3.7.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/css/fun.css +500 -159
  2. package/package.json +1 -1
package/css/fun.css CHANGED
@@ -970,165 +970,7 @@ link:hover {
970
970
 
971
971
 
972
972
 
973
- .text-minified , .text-md{
974
- font-size: var(--minifiedFontSize);
975
- line-height: 1rem;
976
- }
977
973
 
978
- /* Content formatting */
979
- .article {
980
- line-height: 1.7rem;
981
- letter-spacing: normal;
982
- }
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; }
1113
-
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%; }
1128
- @media (max-width: 600px) {
1129
- .container { margin: 0 5%; }
1130
- }
1131
- .page { min-height: 80vh; padding: 2rem 0; }
1132
974
  /*buttons*/
1133
975
  .button {
1134
976
  border: none;
@@ -1139,7 +981,7 @@ link:hover {
1139
981
  cursor: pointer;
1140
982
  font-size: var(--minifiedFontSize);
1141
983
  position: relative;
1142
- overflow: visible !important;
984
+ overflow: visible;
1143
985
  z-index: 1;
1144
986
  line-height: 1 !important;
1145
987
  height: var(--inputButtonHeight);
@@ -1181,6 +1023,7 @@ link:hover {
1181
1023
  background-color: transparent;
1182
1024
  position: relative;
1183
1025
  transition: 0.3s;
1026
+ overflow: hidden !important;
1184
1027
  }
1185
1028
  .button_fill_span {
1186
1029
  position: absolute;
@@ -1213,6 +1056,7 @@ link:hover {
1213
1056
  transform: scale(1, 1);
1214
1057
  }
1215
1058
 
1059
+
1216
1060
  .raisedBtn , .raised{
1217
1061
  box-shadow: var(--raised);
1218
1062
  }
@@ -10275,3 +10119,500 @@ z-index: 10;
10275
10119
  -webkit-text-fill-color: transparent;
10276
10120
  -webkit-background-clip: text;
10277
10121
  }
10122
+
10123
+
10124
+
10125
+
10126
+
10127
+ /* HELPERS */
10128
+
10129
+ .text-minified , .text-md{
10130
+ font-size: var(--minifiedFontSize);
10131
+ line-height: 1rem;
10132
+ }
10133
+ /* Content formatting */
10134
+ .article {
10135
+ line-height: 1.7rem;
10136
+ letter-spacing: normal;
10137
+ }
10138
+
10139
+ /* Typography */
10140
+ .text-bold { font-weight: bold !important; }
10141
+ .text-bolder { font-weight: bolder !important; }
10142
+ .lightText { font-weight: 300 !important; }
10143
+ .lighterText { font-weight: 200 !important; }
10144
+ .underlineText { text-decoration: underline; }
10145
+ .emp { font-style: italic; }
10146
+ .italicText { font-style: italic; }
10147
+ .uppercase { text-transform: uppercase; }
10148
+ .lowercase { text-transform: lowercase; }
10149
+ .capitalize { text-transform: capitalize; }
10150
+ .monospace { font-family: monospace !important; }
10151
+
10152
+ /* Scroll */
10153
+ .scroll-y { overflow-y: auto !important; overflow-x: visible !important; }
10154
+ .scroll-x { overflow-x: auto !important; overflow-y: visible !important; }
10155
+ .scroll { overflow: auto !important; }
10156
+ .vertical-scroll { overflow-y: scroll; }
10157
+ .horizontal-scroll { overflow-x: scroll; }
10158
+
10159
+ /* Helpers */
10160
+ .glassy { backdrop-filter: blur(0.3rem); background-color: transparent !important; }
10161
+ .transparent { background-color: transparent !important; }
10162
+ .flat { border-radius: 0rem !important; }
10163
+ .no-padding { padding: 0px !important; }
10164
+ .no-margin { margin: 0px; }
10165
+ .line-through { text-decoration: line-through; }
10166
+ .underline { text-decoration: underline; }
10167
+ .overline { text-decoration: overline; }
10168
+ .wavy { text-decoration: wavy; }
10169
+ .borderless { border: none; }
10170
+ .border { border: var(--border); }
10171
+ .hide { display: none; }
10172
+ .show { display: block; }
10173
+ .center { margin: 0px auto; }
10174
+ .float-right { float: right; }
10175
+ .float-left { float: left; }
10176
+ .clear-both { clear: both; }
10177
+ .responsive { width: 100%; height: auto; }
10178
+
10179
+ /* Text Alignment */
10180
+ .text-center { text-align: center !important; }
10181
+ .text-left { text-align: left !important; }
10182
+ .text-right { text-align: right !important; }
10183
+ .text-justify { text-align: justify !important; }
10184
+
10185
+ /* Sections */
10186
+ .section { margin-top: 1rem; margin-bottom: 1rem; }
10187
+ .minSection { margin-top: 0.5rem; margin-bottom: 0.5rem; }
10188
+ .maxSection { margin-top: 2rem; margin-bottom: 2rem; }
10189
+
10190
+ /* Opacity */
10191
+ .opacity-1, .hover-opacity-1:hover { opacity: 1; }
10192
+ .opacity-2, .hover-opacity-2:hover { opacity: 0.9; }
10193
+ .opacity-3, .hover-opacity-3:hover { opacity: 0.8; }
10194
+ .opacity-4, .hover-opacity-4:hover { opacity: 0.7; }
10195
+ .opacity-5, .hover-opacity-5:hover { opacity: 0.6; }
10196
+ .opacity-6, .hover-opacity-6:hover { opacity: 0.5; }
10197
+ .opacity-7, .hover-opacity-7:hover { opacity: 0.4; }
10198
+ .opacity-8, .hover-opacity-8:hover { opacity: 0.2; }
10199
+ .opacity-9, .hover-opacity-9:hover { opacity: 0.1; }
10200
+
10201
+ /* Borders */
10202
+ .hr, .bb { border-bottom: var(--border); }
10203
+ .vr, .bl { border-left: var(--border); }
10204
+ .bt { border-top: var(--border); }
10205
+ .br { border-right: var(--border); }
10206
+ .top-border { border-top: var(--border); }
10207
+ .bottom-border { border-bottom: var(--border); }
10208
+ .right-border { border-right: var(--border); }
10209
+ .left-border { border-left: var(--border); }
10210
+
10211
+ /* Border Radius */
10212
+ .rounded-0 { border-radius: 0rem !important; }
10213
+ .rounded-1 { border-radius: 0.125rem !important; }
10214
+ .rounded-2 { border-radius: 0.25rem !important; }
10215
+ .rounded-3 { border-radius: 0.375rem !important; }
10216
+ .rounded-4 { border-radius: 0.5rem !important; }
10217
+ .rounded-5 { border-radius: 0.625rem !important; }
10218
+ .rounded-6 { border-radius: 0.75rem !important; }
10219
+ .rounded-8 { border-radius: 1rem !important; }
10220
+ .rounded-10 { border-radius: 1.25rem !important; }
10221
+ .rounded-12 { border-radius: 1.5rem !important; }
10222
+ .rounded-16 { border-radius: 2rem !important; }
10223
+ .rounded-20 { border-radius: 2.5rem !important; }
10224
+ .rounded-24 { border-radius: 3rem !important; }
10225
+ .rounded-full { border-radius: 9999px !important; }
10226
+
10227
+ /* Individual Corner Radius */
10228
+ .rounded-t-0 { border-top-left-radius: 0rem !important; border-top-right-radius: 0rem !important; }
10229
+ .rounded-t-1 { border-top-left-radius: 0.125rem !important; border-top-right-radius: 0.125rem !important; }
10230
+ .rounded-t-2 { border-top-left-radius: 0.25rem !important; border-top-right-radius: 0.25rem !important; }
10231
+ .rounded-t-4 { border-top-left-radius: 0.5rem !important; border-top-right-radius: 0.5rem !important; }
10232
+ .rounded-t-8 { border-top-left-radius: 1rem !important; border-top-right-radius: 1rem !important; }
10233
+
10234
+ .rounded-b-0 { border-bottom-left-radius: 0rem !important; border-bottom-right-radius: 0rem !important; }
10235
+ .rounded-b-1 { border-bottom-left-radius: 0.125rem !important; border-bottom-right-radius: 0.125rem !important; }
10236
+ .rounded-b-2 { border-bottom-left-radius: 0.25rem !important; border-bottom-right-radius: 0.25rem !important; }
10237
+ .rounded-b-4 { border-bottom-left-radius: 0.5rem !important; border-bottom-right-radius: 0.5rem !important; }
10238
+ .rounded-b-8 { border-bottom-left-radius: 1rem !important; border-bottom-right-radius: 1rem !important; }
10239
+
10240
+ .rounded-l-0 { border-top-left-radius: 0rem !important; border-bottom-left-radius: 0rem !important; }
10241
+ .rounded-l-1 { border-top-left-radius: 0.125rem !important; border-bottom-left-radius: 0.125rem !important; }
10242
+ .rounded-l-2 { border-top-left-radius: 0.25rem !important; border-bottom-left-radius: 0.25rem !important; }
10243
+ .rounded-l-4 { border-top-left-radius: 0.5rem !important; border-bottom-left-radius: 0.5rem !important; }
10244
+ .rounded-l-8 { border-top-left-radius: 1rem !important; border-bottom-left-radius: 1rem !important; }
10245
+
10246
+ .rounded-r-0 { border-top-right-radius: 0rem !important; border-bottom-right-radius: 0rem !important; }
10247
+ .rounded-r-1 { border-top-right-radius: 0.125rem !important; border-bottom-right-radius: 0.125rem !important; }
10248
+ .rounded-r-2 { border-top-right-radius: 0.25rem !important; border-bottom-right-radius: 0.25rem !important; }
10249
+ .rounded-r-4 { border-top-right-radius: 0.5rem !important; border-bottom-right-radius: 0.5rem !important; }
10250
+ .rounded-r-8 { border-top-right-radius: 1rem !important; border-bottom-right-radius: 1rem !important; }
10251
+
10252
+ /* Individual Corners */
10253
+ .rounded-tl-0 { border-top-left-radius: 0rem !important; }
10254
+ .rounded-tl-1 { border-top-left-radius: 0.125rem !important; }
10255
+ .rounded-tl-2 { border-top-left-radius: 0.25rem !important; }
10256
+ .rounded-tl-4 { border-top-left-radius: 0.5rem !important; }
10257
+ .rounded-tl-8 { border-top-left-radius: 1rem !important; }
10258
+
10259
+ .rounded-tr-0 { border-top-right-radius: 0rem !important; }
10260
+ .rounded-tr-1 { border-top-right-radius: 0.125rem !important; }
10261
+ .rounded-tr-2 { border-top-right-radius: 0.25rem !important; }
10262
+ .rounded-tr-4 { border-top-right-radius: 0.5rem !important; }
10263
+ .rounded-tr-8 { border-top-right-radius: 1rem !important; }
10264
+
10265
+ .rounded-bl-0 { border-bottom-left-radius: 0rem !important; }
10266
+ .rounded-bl-1 { border-bottom-left-radius: 0.125rem !important; }
10267
+ .rounded-bl-2 { border-bottom-left-radius: 0.25rem !important; }
10268
+ .rounded-bl-4 { border-bottom-left-radius: 0.5rem !important; }
10269
+ .rounded-bl-8 { border-bottom-left-radius: 1rem !important; }
10270
+
10271
+ .rounded-br-0 { border-bottom-right-radius: 0rem !important; }
10272
+ .rounded-br-1 { border-bottom-right-radius: 0.125rem !important; }
10273
+ .rounded-br-2 { border-bottom-right-radius: 0.25rem !important; }
10274
+ .rounded-br-4 { border-bottom-right-radius: 0.5rem !important; }
10275
+ .rounded-br-8 { border-bottom-right-radius: 1rem !important; }
10276
+
10277
+ /* Z-Index */
10278
+ .z-index-1 { z-index: 1; }
10279
+ .z-index-2 { z-index: 2; }
10280
+ .z-index-3 { z-index: 3; }
10281
+ .z-index-4 { z-index: 4; }
10282
+ .z-index-5 { z-index: 5; }
10283
+ .z-index-6 { z-index: 6; }
10284
+ .z-index-7 { z-index: 7; }
10285
+ .z-index-8 { z-index: 8; }
10286
+ .z-index-9 { z-index: 9; }
10287
+ .z-index-10 { z-index: 10; }
10288
+
10289
+ /* Positioning */
10290
+ .top-right { position: absolute; top: 0px; right: 0px; }
10291
+ .top-left { position: absolute; top: 0px; left: 0px; }
10292
+ .top { position: absolute; top: 0px; }
10293
+ .bottom-right { position: absolute; bottom: 0px; right: 0px; }
10294
+ .bottom-left { position: absolute; bottom: 0px; left: 0px; }
10295
+ .bottom { position: absolute; bottom: 0px; }
10296
+ .middle { display: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }
10297
+ .relative { position: relative; }
10298
+ .fixed { position: fixed; }
10299
+ .sticky { position: sticky; }
10300
+ .absolute { position: absolute; }
10301
+ .sticky-top { position: -webkit-sticky; position: sticky; top: 0px; z-index: var(--navBarZindex); width: 100%; }
10302
+ .fixed-top { position: fixed; top: 0px; z-index: var(--navBarZindex); width: 100%; }
10303
+ .fixedBottom { position: fixed; bottom: 0; left: 0; width: 100%; z-index: var(--navBarZindex); }
10304
+ .fixedTop { position: fixed; bottom: 0; top: 0; width: 100%; z-index: var(--navBarZindex); }
10305
+
10306
+ /* Display */
10307
+ .block { display: block; }
10308
+ .inline-block { display: inline-block; }
10309
+ .content-middle { display: flex; justify-content: center; align-items: center; height: 100%; width: 100%; }
10310
+ .central { display: flex; align-items: center; justify-content: center; }
10311
+
10312
+ /* Flexbox */
10313
+ .row-flex { display: flex !important; flex-direction: row !important; align-items: center; }
10314
+ .row-flex.gap { grid-gap: 0.5rem; gap: 0.2rem; }
10315
+ .row-flex.space-between { justify-content: space-between; }
10316
+ .row-flex.stretch { align-items: stretch !important; }
10317
+ .row-flex.space-around { justify-content: space-around; }
10318
+ .row-flex.center { justify-content: center; }
10319
+
10320
+ /* Shadows */
10321
+ .shadow { box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2); }
10322
+ .hover-shadow { transition: 0.3s; }
10323
+ .hover-shadow:hover { box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2); }
10324
+ .shadow-bingo { box-shadow: 10px 20px 20px 10px rgba(225, 225, 225, 0.5), 0px 40px 40px 0px rgba(225, 225, 255, 0.6); }
10325
+
10326
+ /* Fit */
10327
+ .fit { height: 100%; width: 100%; }
10328
+ .fit-width { width: fit-content; }
10329
+ .fit-height { height: fit-content; }
10330
+
10331
+ /* Rounded */
10332
+ .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; }
10333
+ .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; }
10334
+
10335
+ /* Hover Effects */
10336
+ .hoverable { transition: 0.1s linear; }
10337
+ .hoverable:hover { background-color: var(--hoverable) !important; }
10338
+ .hoverable-border { border: 0.1rem solid transparent; transition: 0.3s ease-in-out; }
10339
+ .hoverable-border:hover { border: var(--border); }
10340
+
10341
+ /* Cursor */
10342
+ .cursor-pointer { cursor: pointer; }
10343
+ .cursor-copy { cursor: copy; }
10344
+ .cursor-none { cursor: none; }
10345
+ .cursor-move { cursor: move; }
10346
+
10347
+ /* Containers */
10348
+ .container { margin: 0 10%; }
10349
+ @media (max-width: 600px) {
10350
+ .container { margin: 0 5%; }
10351
+ }
10352
+ .page { min-height: 80vh; padding: 2rem 0; }
10353
+
10354
+
10355
+ /* ===== BLUR EFFECTS ===== */
10356
+ .blur-0 { filter: blur(0) !important; }
10357
+ .blur-xs { filter: blur(0.125rem) !important; }
10358
+ .blur-sm { filter: blur(0.25rem) !important; }
10359
+ .blur-md { filter: blur(0.5rem) !important; }
10360
+ .blur-lg { filter: blur(1rem) !important; }
10361
+ .blur-xl { filter: blur(1.5rem) !important; }
10362
+ .blur-2xl { filter: blur(2rem) !important; }
10363
+
10364
+ /* Backdrop Blur */
10365
+ .backdrop-blur-0 { backdrop-filter: blur(0) !important; }
10366
+ .backdrop-blur-xs { backdrop-filter: blur(0.125rem) !important; }
10367
+ .backdrop-blur-sm { backdrop-filter: blur(0.25rem) !important; }
10368
+ .backdrop-blur-md { backdrop-filter: blur(0.5rem) !important; }
10369
+ .backdrop-blur-lg { backdrop-filter: blur(1rem) !important; }
10370
+ .backdrop-blur-xl { backdrop-filter: blur(1.5rem) !important; }
10371
+ .backdrop-blur-2xl { backdrop-filter: blur(2rem) !important; }
10372
+
10373
+
10374
+ /* ===== ENTRANCE ANIMATIONS ===== */
10375
+ /* Fade In */
10376
+ .fade-in { animation: fadeIn 0.6s ease-in-out !important; }
10377
+ .fade-in-up { animation: fadeInUp 0.8s ease-out !important; }
10378
+ .fade-in-down { animation: fadeInDown 0.8s ease-out !important; }
10379
+ .fade-in-left { animation: fadeInLeft 0.8s ease-out !important; }
10380
+ .fade-in-right { animation: fadeInRight 0.8s ease-out !important; }
10381
+
10382
+ /* Slide In */
10383
+ .slide-in-up { animation: slideInUp 0.8s ease-out !important; }
10384
+ .slide-in-down { animation: slideInDown 0.8s ease-out !important; }
10385
+ .slide-in-left { animation: slideInLeft 0.8s ease-out !important; }
10386
+ .slide-in-right { animation: slideInRight 0.8s ease-out !important; }
10387
+
10388
+ /* Zoom In */
10389
+ .zoom-in { animation: zoomIn 0.6s ease-out !important; }
10390
+ .zoom-in-up { animation: zoomInUp 0.8s ease-out !important; }
10391
+ .zoom-in-down { animation: zoomInDown 0.8s ease-out !important; }
10392
+ .zoom-in-left { animation: zoomInLeft 0.8s ease-out !important; }
10393
+ .zoom-in-right { animation: zoomInRight 0.8s ease-out !important; }
10394
+
10395
+ /* Bounce In */
10396
+ .bounce-in { animation: bounceIn 0.8s ease-out !important; }
10397
+ .bounce-in-up { animation: bounceInUp 0.8s ease-out !important; }
10398
+ .bounce-in-down { animation: bounceInDown 0.8s ease-out !important; }
10399
+ .bounce-in-left { animation: bounceInLeft 0.8s ease-out !important; }
10400
+ .bounce-in-right { animation: bounceInRight 0.8s ease-out !important; }
10401
+
10402
+ /* Flip In */
10403
+ .flip-in-x { animation: flipInX 0.8s ease-out !important; }
10404
+ .flip-in-y { animation: flipInY 0.8s ease-out !important; }
10405
+
10406
+ /* Rotate In */
10407
+ .rotate-in { animation: rotateIn 0.8s ease-out !important; }
10408
+ .rotate-in-up { animation: rotateInUp 0.8s ease-out !important; }
10409
+ .rotate-in-down { animation: rotateInDown 0.8s ease-out !important; }
10410
+
10411
+ /* Special Entrance */
10412
+ .roll-in { animation: rollIn 0.8s ease-out !important; }
10413
+ .light-speed-in { animation: lightSpeedIn 0.8s ease-out !important; }
10414
+ .swing-in { animation: swingIn 0.8s ease-out !important; }
10415
+ .wobble-in { animation: wobbleIn 0.8s ease-out !important; }
10416
+ .pulse-in { animation: pulseIn 0.8s ease-out !important; }
10417
+
10418
+ /* ===== HOVER ANIMATIONS ===== */
10419
+ /* Scale Hover */
10420
+ .hover-scale { transition: transform 0.3s ease !important; }
10421
+ .hover-scale:hover { transform: scale(1.05) !important; }
10422
+ .hover-scale-lg { transition: transform 0.3s ease !important; }
10423
+ .hover-scale-lg:hover { transform: scale(1.1) !important; }
10424
+ .hover-scale-sm { transition: transform 0.3s ease !important; }
10425
+ .hover-scale-sm:hover { transform: scale(1.02) !important; }
10426
+
10427
+ /* Lift Hover */
10428
+ .hover-lift { transition: all 0.3s ease !important; }
10429
+ .hover-lift:hover { transform: translateY(-0.5rem) !important; box-shadow: var(--card) !important; }
10430
+ .hover-lift-lg { transition: all 0.3s ease !important; }
10431
+ .hover-lift-lg:hover { transform: translateY(-1rem) !important; box-shadow: var(--card) !important; }
10432
+
10433
+ /* Glow Hover */
10434
+ .hover-glow { transition: all 0.3s ease !important; }
10435
+ .hover-glow:hover { box-shadow: 0 0 2rem rgba(var(--primary-rgb), 0.4) !important; transform: translateY(-0.25rem) !important; }
10436
+
10437
+ /* Shake Hover */
10438
+ .hover-shake:hover { animation: shake 0.5s ease-in-out !important; }
10439
+ .hover-wobble:hover { animation: wobble 0.5s ease-in-out !important; }
10440
+ .hover-bounce:hover { animation: bounce 0.5s ease-in-out !important; }
10441
+
10442
+ /* Border Hover */
10443
+ .hover-border-grow { transition: all 0.3s ease !important; border: 2px solid transparent !important; }
10444
+ .hover-border-grow:hover { border-color: var(--gradient) !important; transform: scale(1.02) !important; }
10445
+
10446
+ /* Text Hover */
10447
+ .hover-text-glow:hover { text-shadow: 0 0 1rem currentColor !important; }
10448
+ .hover-text-lift:hover { transform: translateY(-0.125rem) !important; text-shadow: var(--card) !important; }
10449
+
10450
+ /* ===== CONTINUOUS ANIMATIONS ===== */
10451
+ .animate-float { animation: float 3s ease-in-out infinite !important; }
10452
+ .animate-pulse-slow { animation: pulse 3s ease-in-out infinite !important; }
10453
+ .animate-bounce-slow { animation: bounce 2s ease-in-out infinite !important; }
10454
+ .animate-spin-slow { animation: spin 3s linear infinite !important; }
10455
+ .animate-ping-slow { animation: ping 3s ease-out infinite !important; }
10456
+
10457
+ .animate-breath { animation: breath 4s ease-in-out infinite !important; }
10458
+ .animate-wave { animation: wave 2s ease-in-out infinite !important; }
10459
+ .animate-glow { animation: glow 2s ease-in-out infinite !important; }
10460
+
10461
+ /* ===== ANIMATION KEYFRAMES ===== */
10462
+ @keyframes fadeIn {
10463
+ from { opacity: 0; }
10464
+ to { opacity: 1; }
10465
+ }
10466
+
10467
+ @keyframes fadeInUp {
10468
+ from { opacity: 0; transform: translateY(2rem); }
10469
+ to { opacity: 1; transform: translateY(0); }
10470
+ }
10471
+
10472
+ @keyframes fadeInDown {
10473
+ from { opacity: 0; transform: translateY(-2rem); }
10474
+ to { opacity: 1; transform: translateY(0); }
10475
+ }
10476
+
10477
+ @keyframes fadeInLeft {
10478
+ from { opacity: 0; transform: translateX(-2rem); }
10479
+ to { opacity: 1; transform: translateX(0); }
10480
+ }
10481
+
10482
+ @keyframes fadeInRight {
10483
+ from { opacity: 0; transform: translateX(2rem); }
10484
+ to { opacity: 1; transform: translateX(0); }
10485
+ }
10486
+
10487
+ @keyframes slideInUp {
10488
+ from { transform: translateY(100%); }
10489
+ to { transform: translateY(0); }
10490
+ }
10491
+
10492
+ @keyframes slideInDown {
10493
+ from { transform: translateY(-100%); }
10494
+ to { transform: translateY(0); }
10495
+ }
10496
+
10497
+ @keyframes slideInLeft {
10498
+ from { transform: translateX(-100%); }
10499
+ to { transform: translateX(0); }
10500
+ }
10501
+
10502
+ @keyframes slideInRight {
10503
+ from { transform: translateX(100%); }
10504
+ to { transform: translateX(0); }
10505
+ }
10506
+
10507
+ @keyframes zoomIn {
10508
+ from { opacity: 0; transform: scale(0.5); }
10509
+ to { opacity: 1; transform: scale(1); }
10510
+ }
10511
+
10512
+ @keyframes zoomInUp {
10513
+ from { opacity: 0; transform: scale(0.5) translateY(2rem); }
10514
+ to { opacity: 1; transform: scale(1) translateY(0); }
10515
+ }
10516
+
10517
+ @keyframes bounceIn {
10518
+ 0% { opacity: 0; transform: scale(0.3); }
10519
+ 50% { opacity: 1; transform: scale(1.05); }
10520
+ 70% { transform: scale(0.9); }
10521
+ 100% { opacity: 1; transform: scale(1); }
10522
+ }
10523
+
10524
+ @keyframes bounceInUp {
10525
+ 0% { opacity: 0; transform: translateY(2rem) scale(0.3); }
10526
+ 50% { opacity: 1; transform: translateY(-1rem) scale(1.05); }
10527
+ 70% { transform: translateY(0.5rem) scale(0.9); }
10528
+ 100% { opacity: 1; transform: translateY(0) scale(1); }
10529
+ }
10530
+
10531
+ @keyframes flipInX {
10532
+ from { transform: perspective(400px) rotateX(90deg); opacity: 0; }
10533
+ to { transform: perspective(400px) rotateX(0deg); opacity: 1; }
10534
+ }
10535
+
10536
+ @keyframes flipInY {
10537
+ from { transform: perspective(400px) rotateY(90deg); opacity: 0; }
10538
+ to { transform: perspective(400px) rotateY(0deg); opacity: 1; }
10539
+ }
10540
+
10541
+ @keyframes rotateIn {
10542
+ from { transform: rotate(-180deg); opacity: 0; }
10543
+ to { transform: rotate(0deg); opacity: 1; }
10544
+ }
10545
+
10546
+ @keyframes rollIn {
10547
+ from { opacity: 0; transform: translateX(-100%) rotate(-120deg); }
10548
+ to { opacity: 1; transform: translateX(0px) rotate(0deg); }
10549
+ }
10550
+
10551
+ @keyframes lightSpeedIn {
10552
+ from { transform: translate3d(100%, 0, 0) skewX(-30deg); opacity: 0; }
10553
+ 60% { transform: skewX(20deg); opacity: 1; }
10554
+ 80% { transform: skewX(-5deg); }
10555
+ to { transform: translate3d(0, 0, 0); }
10556
+ }
10557
+
10558
+ @keyframes swingIn {
10559
+ 20% { transform: rotate3d(0, 0, 1, 15deg); }
10560
+ 40% { transform: rotate3d(0, 0, 1, -10deg); }
10561
+ 60% { transform: rotate3d(0, 0, 1, 5deg); }
10562
+ 80% { transform: rotate3d(0, 0, 1, -5deg); }
10563
+ to { transform: rotate3d(0, 0, 1, 0deg); }
10564
+ }
10565
+
10566
+ @keyframes wobbleIn {
10567
+ from { opacity: 0; transform: scale3d(0.1, 0.1, 0.1) rotate3d(0, 0, 1, -45deg); }
10568
+ 50% { opacity: 1; transform: scale3d(1.05, 1.05, 1.05) rotate3d(0, 0, 1, 15deg); }
10569
+ 70% { transform: scale3d(0.95, 0.95, 0.95) rotate3d(0, 0, 1, -10deg); }
10570
+ to { opacity: 1; transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, 0deg); }
10571
+ }
10572
+
10573
+ @keyframes pulseIn {
10574
+ 0% { opacity: 0; transform: scale(0.5); }
10575
+ 50% { opacity: 1; transform: scale(1.1); }
10576
+ 100% { opacity: 1; transform: scale(1); }
10577
+ }
10578
+
10579
+ /* Hover Keyframes */
10580
+ @keyframes shake {
10581
+ 0%, 100% { transform: translateX(0); }
10582
+ 20%, 60% { transform: translateX(-0.5rem); }
10583
+ 40%, 80% { transform: translateX(0.5rem); }
10584
+ }
10585
+
10586
+ @keyframes wobble {
10587
+ 0%, 100% { transform: translateX(0%); }
10588
+ 15% { transform: translateX(-25%) rotate(-5deg); }
10589
+ 30% { transform: translateX(20%) rotate(3deg); }
10590
+ 45% { transform: translateX(-15%) rotate(-3deg); }
10591
+ 60% { transform: translateX(10%) rotate(2deg); }
10592
+ 75% { transform: translateX(-5%) rotate(-1deg); }
10593
+ }
10594
+
10595
+ /* Continuous Animations */
10596
+ @keyframes float {
10597
+ 0%, 100% { transform: translateY(0px); }
10598
+ 50% { transform: translateY(-1rem); }
10599
+ }
10600
+
10601
+ @keyframes breath {
10602
+ 0%, 100% { transform: scale(1); opacity: 1; }
10603
+ 50% { transform: scale(1.05); opacity: 0.8; }
10604
+ }
10605
+
10606
+ @keyframes wave {
10607
+ 0%, 100% { transform: translateX(0); }
10608
+ 50% { transform: translateX(0.5rem); }
10609
+ }
10610
+
10611
+ @keyframes glow {
10612
+ 0%, 100% { box-shadow: 0 0 0.5rem rgba(var(--primary-rgb), 0.5); }
10613
+ 50% { box-shadow: 0 0 2rem rgba(var(--primary-rgb), 0.8); }
10614
+ }
10615
+
10616
+ @keyframes ping {
10617
+ 75%, 100% { transform: scale(2); opacity: 0; }
10618
+ }
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "3.7.5",
2
+ "version": "3.7.7",
3
3
  "name": "funuicss",
4
4
  "description": "React and Next.js component UI Library for creating Easy and good looking websites with fewer lines of code. Elevate your web development experience with our cutting-edge React/Next.js component UI Library. Craft stunning websites effortlessly, boasting both seamless functionality and aesthetic appeal—all achieved with minimal lines of code. Unleash the power of simplicity and style in your projects!",
5
5
  "main": "index.js",