funuicss 3.7.5 → 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.
Files changed (2) hide show
  1. package/css/fun.css +497 -158
  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
-
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
973
 
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;
@@ -10275,3 +10117,500 @@ z-index: 10;
10275
10117
  -webkit-text-fill-color: transparent;
10276
10118
  -webkit-background-clip: text;
10277
10119
  }
10120
+
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
+ }
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "3.7.5",
2
+ "version": "3.7.6",
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",