funuicss 3.7.14 → 3.7.16
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 +665 -0
- package/index.d.ts +2 -0
- package/index.js +5 -1
- package/package.json +1 -1
- package/ui/feature/Feature.d.ts +130 -0
- package/ui/feature/Feature.js +380 -0
- package/ui/footer/Footer.d.ts +89 -0
- package/ui/footer/Footer.js +329 -0
- package/ui/icons/Dynamic.d.ts +12 -0
- package/ui/icons/Dynamic.js +163 -0
- package/ui/theme/theme.d.ts +1 -0
- package/ui/theme/theme.js +571 -23
- package/ui/vista/Vista.js +8 -12
- package/utils/componentUtils.d.ts +126 -19
- package/utils/componentUtils.js +994 -57
package/css/fun.css
CHANGED
|
@@ -5449,6 +5449,242 @@ background-color: rgba(0, 0, 0, 0.2);
|
|
|
5449
5449
|
|
|
5450
5450
|
|
|
5451
5451
|
|
|
5452
|
+
/* feature Section */
|
|
5453
|
+
/* Feature Section Base Styles */
|
|
5454
|
+
.feature-section {
|
|
5455
|
+
position: relative;
|
|
5456
|
+
width: 100%;
|
|
5457
|
+
}
|
|
5458
|
+
|
|
5459
|
+
.feature-section__container {
|
|
5460
|
+
width: 100%;
|
|
5461
|
+
}
|
|
5462
|
+
|
|
5463
|
+
/* Header Styles */
|
|
5464
|
+
.feature-section__header {
|
|
5465
|
+
text-align: center;
|
|
5466
|
+
}
|
|
5467
|
+
|
|
5468
|
+
.feature-section__subtitle {
|
|
5469
|
+
opacity: 0.8;
|
|
5470
|
+
}
|
|
5471
|
+
|
|
5472
|
+
.feature-section__main-title {
|
|
5473
|
+
line-height: 1.2;
|
|
5474
|
+
}
|
|
5475
|
+
|
|
5476
|
+
.feature-section__section-description {
|
|
5477
|
+
line-height: 1.6;
|
|
5478
|
+
opacity: 0.8;
|
|
5479
|
+
}
|
|
5480
|
+
|
|
5481
|
+
/* Icon Styles */
|
|
5482
|
+
.feature-section__icon-container {
|
|
5483
|
+
display: flex;
|
|
5484
|
+
align-items: center;
|
|
5485
|
+
}
|
|
5486
|
+
|
|
5487
|
+
.feature-section__icon-wrapper {
|
|
5488
|
+
display: inline-flex;
|
|
5489
|
+
align-items: center;
|
|
5490
|
+
justify-content: center;
|
|
5491
|
+
}
|
|
5492
|
+
|
|
5493
|
+
.feature-section__icon,
|
|
5494
|
+
.feature-section__checkmark {
|
|
5495
|
+
transition: all 0.3s ease;
|
|
5496
|
+
}
|
|
5497
|
+
|
|
5498
|
+
.feature-section__image {
|
|
5499
|
+
border-radius: 50%;
|
|
5500
|
+
object-fit: cover;
|
|
5501
|
+
}
|
|
5502
|
+
|
|
5503
|
+
/* Item Styles */
|
|
5504
|
+
.feature-section__item {
|
|
5505
|
+
height: 100%;
|
|
5506
|
+
}
|
|
5507
|
+
|
|
5508
|
+
.feature-section__title {
|
|
5509
|
+
font-weight: 600;
|
|
5510
|
+
line-height: 1.3;
|
|
5511
|
+
}
|
|
5512
|
+
|
|
5513
|
+
.feature-section__description {
|
|
5514
|
+
line-height: 1.5;
|
|
5515
|
+
opacity: 0.8;
|
|
5516
|
+
}
|
|
5517
|
+
|
|
5518
|
+
.feature-section__additional-content {
|
|
5519
|
+
line-height: 1.6;
|
|
5520
|
+
}
|
|
5521
|
+
|
|
5522
|
+
/* Card Styles */
|
|
5523
|
+
.feature-section__card {
|
|
5524
|
+
transition: all 0.3s ease;
|
|
5525
|
+
height: 100%;
|
|
5526
|
+
box-shadow: var(--card);
|
|
5527
|
+
}
|
|
5528
|
+
|
|
5529
|
+
.feature-section__card--hover-lift:hover {
|
|
5530
|
+
transform: translateY(-4px);
|
|
5531
|
+
box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
|
|
5532
|
+
}
|
|
5533
|
+
|
|
5534
|
+
.feature-section__card--hover-glow:hover {
|
|
5535
|
+
box-shadow: 0 0 20px rgba(var(--primary-rgb, 59, 130, 246), 0.15);
|
|
5536
|
+
}
|
|
5537
|
+
|
|
5538
|
+
.feature-section__card--hover-scale:hover {
|
|
5539
|
+
transform: scale(1.02);
|
|
5540
|
+
}
|
|
5541
|
+
|
|
5542
|
+
/* Grid Layout */
|
|
5543
|
+
.feature-section__grid {
|
|
5544
|
+
display: grid;
|
|
5545
|
+
width: 100%;
|
|
5546
|
+
}
|
|
5547
|
+
|
|
5548
|
+
.feature-section__grid-item {
|
|
5549
|
+
height: 100%;
|
|
5550
|
+
}
|
|
5551
|
+
|
|
5552
|
+
/* Centered Layout */
|
|
5553
|
+
.feature-section--centered .feature-section__item {
|
|
5554
|
+
text-align: center;
|
|
5555
|
+
max-width: 48rem;
|
|
5556
|
+
margin: 0 auto;
|
|
5557
|
+
}
|
|
5558
|
+
|
|
5559
|
+
.feature-section--centered .feature-section__icon-container {
|
|
5560
|
+
justify-content: center;
|
|
5561
|
+
}
|
|
5562
|
+
|
|
5563
|
+
/* Checklist Layout */
|
|
5564
|
+
.feature-section--checklist .feature-section__item {
|
|
5565
|
+
display: flex;
|
|
5566
|
+
align-items: flex-start;
|
|
5567
|
+
gap: 1rem;
|
|
5568
|
+
text-align: left;
|
|
5569
|
+
}
|
|
5570
|
+
|
|
5571
|
+
.feature-section--checklist .feature-section__icon-container {
|
|
5572
|
+
margin-bottom: 0;
|
|
5573
|
+
flex-shrink: 0;
|
|
5574
|
+
}
|
|
5575
|
+
|
|
5576
|
+
.feature-section--checklist .feature-section__title {
|
|
5577
|
+
margin-bottom: 0.25rem;
|
|
5578
|
+
}
|
|
5579
|
+
|
|
5580
|
+
/* CTA Styles */
|
|
5581
|
+
.feature-section__item-cta {
|
|
5582
|
+
transition: all 0.2s ease;
|
|
5583
|
+
}
|
|
5584
|
+
|
|
5585
|
+
.feature-section__item-cta:hover {
|
|
5586
|
+
opacity: 0.9;
|
|
5587
|
+
}
|
|
5588
|
+
|
|
5589
|
+
.feature-section__cta-container {
|
|
5590
|
+
text-align: center;
|
|
5591
|
+
}
|
|
5592
|
+
|
|
5593
|
+
/* Carousel Layout */
|
|
5594
|
+
.feature-section--carousel .feature-section__content {
|
|
5595
|
+
width: 100%;
|
|
5596
|
+
}
|
|
5597
|
+
|
|
5598
|
+
.feature-section__carousel-slide {
|
|
5599
|
+
padding: 0 0.5rem;
|
|
5600
|
+
}
|
|
5601
|
+
|
|
5602
|
+
/* Responsive Styles */
|
|
5603
|
+
@media (max-width: 640px) {
|
|
5604
|
+
.feature-section__grid {
|
|
5605
|
+
grid-template-columns: 1fr !important;
|
|
5606
|
+
gap: 2rem !important;
|
|
5607
|
+
}
|
|
5608
|
+
|
|
5609
|
+
.feature-section__container {
|
|
5610
|
+
padding: 0 0.75rem;
|
|
5611
|
+
}
|
|
5612
|
+
|
|
5613
|
+
.feature-section__header {
|
|
5614
|
+
margin-bottom: 2rem;
|
|
5615
|
+
}
|
|
5616
|
+
|
|
5617
|
+
.feature-section__main-title {
|
|
5618
|
+
font-size: 1.5rem;
|
|
5619
|
+
}
|
|
5620
|
+
|
|
5621
|
+
.feature-section__section-description {
|
|
5622
|
+
font-size: 1rem;
|
|
5623
|
+
}
|
|
5624
|
+
}
|
|
5625
|
+
|
|
5626
|
+
@media (min-width: 641px) and (max-width: 768px) {
|
|
5627
|
+
.feature-section__grid {
|
|
5628
|
+
grid-template-columns: repeat(2, 1fr) !important;
|
|
5629
|
+
}
|
|
5630
|
+
|
|
5631
|
+
.feature-section--checklist .feature-section__grid {
|
|
5632
|
+
grid-template-columns: 1fr !important;
|
|
5633
|
+
}
|
|
5634
|
+
}
|
|
5635
|
+
|
|
5636
|
+
@media (min-width: 769px) and (max-width: 1024px) {
|
|
5637
|
+
.feature-section__grid {
|
|
5638
|
+
grid-template-columns: repeat(2, 1fr) !important;
|
|
5639
|
+
}
|
|
5640
|
+
|
|
5641
|
+
.feature-section__grid[data-columns="3"] {
|
|
5642
|
+
grid-template-columns: repeat(3, 1fr) !important;
|
|
5643
|
+
}
|
|
5644
|
+
|
|
5645
|
+
.feature-section__grid[data-columns="4"] {
|
|
5646
|
+
grid-template-columns: repeat(2, 1fr) !important;
|
|
5647
|
+
}
|
|
5648
|
+
}
|
|
5649
|
+
|
|
5650
|
+
@media (min-width: 1025px) {
|
|
5651
|
+
.feature-section__grid {
|
|
5652
|
+
grid-template-columns: repeat(3, 1fr) !important;
|
|
5653
|
+
}
|
|
5654
|
+
|
|
5655
|
+
.feature-section__grid[data-columns="2"] {
|
|
5656
|
+
grid-template-columns: repeat(2, 1fr) !important;
|
|
5657
|
+
}
|
|
5658
|
+
|
|
5659
|
+
.feature-section__grid[data-columns="4"] {
|
|
5660
|
+
grid-template-columns: repeat(4, 1fr) !important;
|
|
5661
|
+
}
|
|
5662
|
+
|
|
5663
|
+
.feature-section__grid[data-columns="5"] {
|
|
5664
|
+
grid-template-columns: repeat(5, 1fr) !important;
|
|
5665
|
+
}
|
|
5666
|
+
|
|
5667
|
+
.feature-section__grid[data-columns="6"] {
|
|
5668
|
+
grid-template-columns: repeat(6, 1fr) !important;
|
|
5669
|
+
}
|
|
5670
|
+
}
|
|
5671
|
+
|
|
5672
|
+
/* Print Styles */
|
|
5673
|
+
@media print {
|
|
5674
|
+
.feature-section {
|
|
5675
|
+
break-inside: avoid;
|
|
5676
|
+
}
|
|
5677
|
+
|
|
5678
|
+
.feature-section__card {
|
|
5679
|
+
border: 1px solid #ddd !important;
|
|
5680
|
+
box-shadow: none !important;
|
|
5681
|
+
}
|
|
5682
|
+
|
|
5683
|
+
.feature-section__item-cta {
|
|
5684
|
+
display: none;
|
|
5685
|
+
}
|
|
5686
|
+
}
|
|
5687
|
+
|
|
5452
5688
|
|
|
5453
5689
|
|
|
5454
5690
|
|
|
@@ -8728,6 +8964,435 @@ z-index: 10;
|
|
|
8728
8964
|
}
|
|
8729
8965
|
|
|
8730
8966
|
|
|
8967
|
+
|
|
8968
|
+
|
|
8969
|
+
|
|
8970
|
+
|
|
8971
|
+
/* Footer Base Styles */
|
|
8972
|
+
.funui-footer {
|
|
8973
|
+
width: 100%;
|
|
8974
|
+
position: relative;
|
|
8975
|
+
}
|
|
8976
|
+
|
|
8977
|
+
.funui-footer__container {
|
|
8978
|
+
width: 100%;
|
|
8979
|
+
margin-left: auto;
|
|
8980
|
+
margin-right: auto;
|
|
8981
|
+
padding-left: 1rem;
|
|
8982
|
+
padding-right: 1rem;
|
|
8983
|
+
}
|
|
8984
|
+
|
|
8985
|
+
/* Top Section */
|
|
8986
|
+
.funui-footer__top {
|
|
8987
|
+
display: grid;
|
|
8988
|
+
gap: 2rem;
|
|
8989
|
+
padding-top: 2rem;
|
|
8990
|
+
padding-bottom: 2rem;
|
|
8991
|
+
}
|
|
8992
|
+
|
|
8993
|
+
/* Brand Section */
|
|
8994
|
+
.funui-footer__brand {
|
|
8995
|
+
display: flex;
|
|
8996
|
+
flex-direction: column;
|
|
8997
|
+
gap: 1rem;
|
|
8998
|
+
}
|
|
8999
|
+
|
|
9000
|
+
.funui-footer__logo-link {
|
|
9001
|
+
display: inline-block;
|
|
9002
|
+
text-decoration: none;
|
|
9003
|
+
transition: opacity 0.2s ease;
|
|
9004
|
+
}
|
|
9005
|
+
|
|
9006
|
+
.funui-footer__logo-link:hover {
|
|
9007
|
+
opacity: 0.8;
|
|
9008
|
+
}
|
|
9009
|
+
|
|
9010
|
+
.funui-footer__logo-image {
|
|
9011
|
+
max-width: 100%;
|
|
9012
|
+
height: auto;
|
|
9013
|
+
}
|
|
9014
|
+
|
|
9015
|
+
.funui-footer__description {
|
|
9016
|
+
line-height: 1.6;
|
|
9017
|
+
}
|
|
9018
|
+
|
|
9019
|
+
.funui-footer__description p {
|
|
9020
|
+
margin: 0;
|
|
9021
|
+
}
|
|
9022
|
+
|
|
9023
|
+
/* Contact Info */
|
|
9024
|
+
.funui-footer__contact {
|
|
9025
|
+
display: flex;
|
|
9026
|
+
flex-direction: column;
|
|
9027
|
+
gap: 0.75rem;
|
|
9028
|
+
}
|
|
9029
|
+
|
|
9030
|
+
.funui-footer__contact-item {
|
|
9031
|
+
display: flex;
|
|
9032
|
+
align-items: flex-start;
|
|
9033
|
+
gap: 0.5rem;
|
|
9034
|
+
font-size: 0.875rem;
|
|
9035
|
+
}
|
|
9036
|
+
|
|
9037
|
+
.funui-footer__contact-icon {
|
|
9038
|
+
display: flex;
|
|
9039
|
+
align-items: center;
|
|
9040
|
+
flex-shrink: 0;
|
|
9041
|
+
margin-top: 0.125rem;
|
|
9042
|
+
}
|
|
9043
|
+
|
|
9044
|
+
.funui-footer__contact-link {
|
|
9045
|
+
color: inherit;
|
|
9046
|
+
text-decoration: none;
|
|
9047
|
+
transition: color 0.2s ease;
|
|
9048
|
+
}
|
|
9049
|
+
|
|
9050
|
+
.funui-footer__contact-link:hover {
|
|
9051
|
+
color: var(--primary);
|
|
9052
|
+
text-decoration: underline;
|
|
9053
|
+
}
|
|
9054
|
+
|
|
9055
|
+
.funui-footer__contact-text {
|
|
9056
|
+
line-height: 1.4;
|
|
9057
|
+
}
|
|
9058
|
+
|
|
9059
|
+
/* Social Links */
|
|
9060
|
+
.funui-footer__socials {
|
|
9061
|
+
display: flex;
|
|
9062
|
+
gap: 0.75rem;
|
|
9063
|
+
flex-wrap: wrap;
|
|
9064
|
+
}
|
|
9065
|
+
|
|
9066
|
+
.funui-footer__social-link {
|
|
9067
|
+
display: inline-flex;
|
|
9068
|
+
align-items: center;
|
|
9069
|
+
justify-content: center;
|
|
9070
|
+
width: 2.5rem;
|
|
9071
|
+
height: 2.5rem;
|
|
9072
|
+
border-radius: 50%;
|
|
9073
|
+
color: inherit;
|
|
9074
|
+
background-color: var(--lighter);
|
|
9075
|
+
transition: all 0.2s ease;
|
|
9076
|
+
text-decoration: none;
|
|
9077
|
+
}
|
|
9078
|
+
|
|
9079
|
+
.funui-footer__social-link:hover {
|
|
9080
|
+
color: var(--primary);
|
|
9081
|
+
transform: translateY(-2px);
|
|
9082
|
+
}
|
|
9083
|
+
|
|
9084
|
+
.funui-footer__social-icon {
|
|
9085
|
+
display: flex;
|
|
9086
|
+
align-items: center;
|
|
9087
|
+
justify-content: center;
|
|
9088
|
+
}
|
|
9089
|
+
|
|
9090
|
+
/* Link Sections */
|
|
9091
|
+
.funui-footer__section {
|
|
9092
|
+
display: flex;
|
|
9093
|
+
flex-direction: column;
|
|
9094
|
+
gap: 1rem;
|
|
9095
|
+
}
|
|
9096
|
+
|
|
9097
|
+
.funui-footer__section-title {
|
|
9098
|
+
font-size: 0.875rem;
|
|
9099
|
+
font-weight: 600;
|
|
9100
|
+
text-transform: uppercase;
|
|
9101
|
+
letter-spacing: 0.05em;
|
|
9102
|
+
margin: 0;
|
|
9103
|
+
color: inherit;
|
|
9104
|
+
opacity: 0.9;
|
|
9105
|
+
}
|
|
9106
|
+
|
|
9107
|
+
.funui-footer__links {
|
|
9108
|
+
list-style: none;
|
|
9109
|
+
padding: 0;
|
|
9110
|
+
margin: 0;
|
|
9111
|
+
display: flex;
|
|
9112
|
+
flex-direction: column;
|
|
9113
|
+
gap: 0.75rem;
|
|
9114
|
+
}
|
|
9115
|
+
|
|
9116
|
+
.funui-footer__link-item {
|
|
9117
|
+
margin: 0;
|
|
9118
|
+
}
|
|
9119
|
+
|
|
9120
|
+
.funui-footer__link {
|
|
9121
|
+
display: inline-flex;
|
|
9122
|
+
align-items: center;
|
|
9123
|
+
gap: 0.5rem;
|
|
9124
|
+
color: inherit;
|
|
9125
|
+
text-decoration: none;
|
|
9126
|
+
font-size: 0.875rem;
|
|
9127
|
+
transition: color 0.2s ease;
|
|
9128
|
+
}
|
|
9129
|
+
|
|
9130
|
+
.funui-footer__link:hover {
|
|
9131
|
+
color: var(--primary) !important;
|
|
9132
|
+
text-decoration: underline;
|
|
9133
|
+
}
|
|
9134
|
+
|
|
9135
|
+
.funui-footer__link-icon {
|
|
9136
|
+
display: inline-flex;
|
|
9137
|
+
align-items: center;
|
|
9138
|
+
}
|
|
9139
|
+
|
|
9140
|
+
/* Divider */
|
|
9141
|
+
/* .funui-footer__divider {
|
|
9142
|
+
width: 100%;
|
|
9143
|
+
height: 1px;
|
|
9144
|
+
background-color: var(--borderColor) !important;
|
|
9145
|
+
opacity: 0.1;
|
|
9146
|
+
margin: 0;
|
|
9147
|
+
} */
|
|
9148
|
+
|
|
9149
|
+
/* Bottom Section */
|
|
9150
|
+
.funui-footer__bottom {
|
|
9151
|
+
display: flex;
|
|
9152
|
+
flex-direction: column;
|
|
9153
|
+
gap: 1rem;
|
|
9154
|
+
padding-top: 1.5rem;
|
|
9155
|
+
padding-bottom: 1.5rem;
|
|
9156
|
+
font-size: 0.875rem;
|
|
9157
|
+
}
|
|
9158
|
+
|
|
9159
|
+
.funui-footer__copyright {
|
|
9160
|
+
color: inherit;
|
|
9161
|
+
opacity: 0.8;
|
|
9162
|
+
}
|
|
9163
|
+
|
|
9164
|
+
.funui-footer__legal {
|
|
9165
|
+
display: flex;
|
|
9166
|
+
flex-wrap: wrap;
|
|
9167
|
+
gap: 1.5rem;
|
|
9168
|
+
}
|
|
9169
|
+
|
|
9170
|
+
.funui-footer__legal-link {
|
|
9171
|
+
color: inherit;
|
|
9172
|
+
text-decoration: none;
|
|
9173
|
+
transition: color 0.2s ease;
|
|
9174
|
+
}
|
|
9175
|
+
|
|
9176
|
+
.funui-footer__legal-link:hover {
|
|
9177
|
+
color: var(--primary);
|
|
9178
|
+
text-decoration: underline;
|
|
9179
|
+
}
|
|
9180
|
+
|
|
9181
|
+
/* Screen Reader Only */
|
|
9182
|
+
.sr-only {
|
|
9183
|
+
position: absolute;
|
|
9184
|
+
width: 1px;
|
|
9185
|
+
height: 1px;
|
|
9186
|
+
padding: 0;
|
|
9187
|
+
margin: -1px;
|
|
9188
|
+
overflow: hidden;
|
|
9189
|
+
clip: rect(0, 0, 0, 0);
|
|
9190
|
+
white-space: nowrap;
|
|
9191
|
+
border: 0;
|
|
9192
|
+
}
|
|
9193
|
+
|
|
9194
|
+
/* Responsive Layouts */
|
|
9195
|
+
|
|
9196
|
+
/* Default Layout (Desktop First) */
|
|
9197
|
+
.funui-footer--default .funui-footer__top {
|
|
9198
|
+
grid-template-columns: minmax(250px, 1fr) repeat(auto-fit, minmax(150px, 1fr));
|
|
9199
|
+
}
|
|
9200
|
+
|
|
9201
|
+
/* Centered Layout */
|
|
9202
|
+
.funui-footer--centered {
|
|
9203
|
+
text-align: center;
|
|
9204
|
+
}
|
|
9205
|
+
|
|
9206
|
+
.funui-footer--centered .funui-footer__top {
|
|
9207
|
+
grid-template-columns: 1fr;
|
|
9208
|
+
}
|
|
9209
|
+
|
|
9210
|
+
.funui-footer--centered .funui-footer__brand {
|
|
9211
|
+
align-items: center;
|
|
9212
|
+
max-width: 600px;
|
|
9213
|
+
margin-left: auto;
|
|
9214
|
+
margin-right: auto;
|
|
9215
|
+
}
|
|
9216
|
+
|
|
9217
|
+
.funui-footer--centered .funui-footer__contact-item {
|
|
9218
|
+
justify-content: center;
|
|
9219
|
+
}
|
|
9220
|
+
|
|
9221
|
+
.funui-footer--centered .funui-footer__socials {
|
|
9222
|
+
justify-content: center;
|
|
9223
|
+
}
|
|
9224
|
+
|
|
9225
|
+
.funui-footer--centered .funui-footer__bottom {
|
|
9226
|
+
align-items: center;
|
|
9227
|
+
text-align: center;
|
|
9228
|
+
}
|
|
9229
|
+
|
|
9230
|
+
/* Compact Layout */
|
|
9231
|
+
.funui-footer--compact .funui-footer__top {
|
|
9232
|
+
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
|
|
9233
|
+
}
|
|
9234
|
+
|
|
9235
|
+
/* Stacked Layout */
|
|
9236
|
+
.funui-footer--stacked .funui-footer__top {
|
|
9237
|
+
grid-template-columns: 1fr;
|
|
9238
|
+
}
|
|
9239
|
+
|
|
9240
|
+
.funui-footer--stacked .funui-footer__section {
|
|
9241
|
+
text-align: center;
|
|
9242
|
+
}
|
|
9243
|
+
|
|
9244
|
+
.funui-footer--stacked .funui-footer__section-title {
|
|
9245
|
+
margin-bottom: 0.5rem;
|
|
9246
|
+
}
|
|
9247
|
+
|
|
9248
|
+
.funui-footer--stacked .funui-footer__links {
|
|
9249
|
+
align-items: center;
|
|
9250
|
+
}
|
|
9251
|
+
|
|
9252
|
+
/* Responsive Breakpoints */
|
|
9253
|
+
|
|
9254
|
+
/* Tablet (768px and up) */
|
|
9255
|
+
@media (min-width: 768px) {
|
|
9256
|
+
.funui-footer__container {
|
|
9257
|
+
padding-left: 1.5rem;
|
|
9258
|
+
padding-right: 1.5rem;
|
|
9259
|
+
}
|
|
9260
|
+
|
|
9261
|
+
.funui-footer__top {
|
|
9262
|
+
gap: 3rem;
|
|
9263
|
+
}
|
|
9264
|
+
|
|
9265
|
+
.funui-footer--default .funui-footer__top {
|
|
9266
|
+
grid-template-columns: minmax(300px, 1fr) repeat(auto-fit, minmax(180px, 1fr));
|
|
9267
|
+
}
|
|
9268
|
+
|
|
9269
|
+
.funui-footer__bottom {
|
|
9270
|
+
flex-direction: row;
|
|
9271
|
+
justify-content: space-between;
|
|
9272
|
+
align-items: center;
|
|
9273
|
+
}
|
|
9274
|
+
|
|
9275
|
+
.funui-footer--centered .funui-footer__bottom {
|
|
9276
|
+
flex-direction: column;
|
|
9277
|
+
gap: 1.5rem;
|
|
9278
|
+
}
|
|
9279
|
+
}
|
|
9280
|
+
|
|
9281
|
+
/* Desktop (1024px and up) */
|
|
9282
|
+
@media (min-width: 1024px) {
|
|
9283
|
+
.funui-footer__container {
|
|
9284
|
+
padding-left: 2rem;
|
|
9285
|
+
padding-right: 2rem;
|
|
9286
|
+
}
|
|
9287
|
+
|
|
9288
|
+
.funui-footer__top {
|
|
9289
|
+
padding-top: 3rem;
|
|
9290
|
+
padding-bottom: 3rem;
|
|
9291
|
+
}
|
|
9292
|
+
|
|
9293
|
+
.funui-footer--default .funui-footer__top {
|
|
9294
|
+
grid-template-columns: minmax(350px, 1fr) repeat(auto-fit, minmax(200px, 1fr));
|
|
9295
|
+
}
|
|
9296
|
+
}
|
|
9297
|
+
|
|
9298
|
+
/* Mobile (below 640px) */
|
|
9299
|
+
@media (max-width: 639px) {
|
|
9300
|
+
.funui-footer {
|
|
9301
|
+
padding-left: 1rem;
|
|
9302
|
+
padding-right: 1rem;
|
|
9303
|
+
}
|
|
9304
|
+
|
|
9305
|
+
.funui-footer__container {
|
|
9306
|
+
padding-left: 0;
|
|
9307
|
+
padding-right: 0;
|
|
9308
|
+
}
|
|
9309
|
+
|
|
9310
|
+
.funui-footer__top {
|
|
9311
|
+
grid-template-columns: 1fr !important;
|
|
9312
|
+
gap: 2rem;
|
|
9313
|
+
}
|
|
9314
|
+
|
|
9315
|
+
.funui-footer__section {
|
|
9316
|
+
text-align: center;
|
|
9317
|
+
}
|
|
9318
|
+
|
|
9319
|
+
.funui-footer__links {
|
|
9320
|
+
align-items: center;
|
|
9321
|
+
}
|
|
9322
|
+
|
|
9323
|
+
.funui-footer__contact-item {
|
|
9324
|
+
justify-content: center;
|
|
9325
|
+
}
|
|
9326
|
+
|
|
9327
|
+
.funui-footer__socials {
|
|
9328
|
+
justify-content: center;
|
|
9329
|
+
}
|
|
9330
|
+
|
|
9331
|
+
.funui-footer__legal {
|
|
9332
|
+
justify-content: center;
|
|
9333
|
+
}
|
|
9334
|
+
|
|
9335
|
+
.funui-footer__bottom {
|
|
9336
|
+
text-align: center;
|
|
9337
|
+
gap: 1rem;
|
|
9338
|
+
}
|
|
9339
|
+
}
|
|
9340
|
+
|
|
9341
|
+
/* Small Mobile (below 480px) */
|
|
9342
|
+
@media (max-width: 479px) {
|
|
9343
|
+
.funui-footer__socials {
|
|
9344
|
+
gap: 0.5rem;
|
|
9345
|
+
}
|
|
9346
|
+
|
|
9347
|
+
.funui-footer__social-link {
|
|
9348
|
+
width: 2rem;
|
|
9349
|
+
height: 2rem;
|
|
9350
|
+
}
|
|
9351
|
+
|
|
9352
|
+
.funui-footer__legal {
|
|
9353
|
+
gap: 1rem;
|
|
9354
|
+
justify-content: center;
|
|
9355
|
+
}
|
|
9356
|
+
|
|
9357
|
+
.funui-footer__description {
|
|
9358
|
+
text-align: center;
|
|
9359
|
+
}
|
|
9360
|
+
}
|
|
9361
|
+
|
|
9362
|
+
/* Accessibility Improvements */
|
|
9363
|
+
.funui-footer__link:focus-visible,
|
|
9364
|
+
.funui-footer__social-link:focus-visible,
|
|
9365
|
+
.funui-footer__legal-link:focus-visible,
|
|
9366
|
+
.funui-footer__contact-link:focus-visible {
|
|
9367
|
+
outline: 2px solid currentColor;
|
|
9368
|
+
outline-offset: 2px;
|
|
9369
|
+
border-radius: 2px;
|
|
9370
|
+
}
|
|
9371
|
+
|
|
9372
|
+
@media print {
|
|
9373
|
+
.funui-footer {
|
|
9374
|
+
border-top: 1px solid var(--borderColor);
|
|
9375
|
+
background-color: transparent !important;
|
|
9376
|
+
color: #000 !important;
|
|
9377
|
+
}
|
|
9378
|
+
|
|
9379
|
+
.funui-footer__social-link,
|
|
9380
|
+
.funui-footer__link:hover,
|
|
9381
|
+
.funui-footer__legal-link:hover {
|
|
9382
|
+
color: #000 !important;
|
|
9383
|
+
text-decoration: none;
|
|
9384
|
+
}
|
|
9385
|
+
|
|
9386
|
+
.funui-footer__social-link {
|
|
9387
|
+
background-color: transparent !important;
|
|
9388
|
+
border: 1px solid var(--borderColor);
|
|
9389
|
+
}
|
|
9390
|
+
}
|
|
9391
|
+
|
|
9392
|
+
|
|
9393
|
+
|
|
9394
|
+
|
|
9395
|
+
|
|
8731
9396
|
/* colors */
|
|
8732
9397
|
.gradient,
|
|
8733
9398
|
.hover-gradient:hover {
|
package/index.d.ts
CHANGED
|
@@ -56,6 +56,8 @@ export { default as FlexItem } from "./ui/flex/FlexItem";
|
|
|
56
56
|
export { default as ScrollToTop } from "./ui/scrolltotop/ScrollToTop";
|
|
57
57
|
export { default as Select } from "./ui/select/Select";
|
|
58
58
|
export { default as FileUpload } from "./ui/input/FileUpload";
|
|
59
|
+
export { default as Footer } from "./ui/footer/Footer";
|
|
60
|
+
export { default as Feature } from "./ui/feature/Feature";
|
|
59
61
|
export { default as Cookie } from "./js/Cookie";
|
|
60
62
|
export { useVariable, useAsset, useAssetType, useAssetValue, useAssets, useVariables, } from "./ui/theme/theme";
|
|
61
63
|
export { FunGet } from "./js/Fun";
|
package/index.js
CHANGED
|
@@ -4,7 +4,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
4
4
|
};
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
6
|
exports.View = exports.ScrollInView = exports.Accordion = exports.Flex = exports.RichText = exports.Carousel = exports.Video = exports.SideBar = exports.ChartPie = exports.Lines = exports.Bars = exports.FullCenteredPage = exports.CircleGroup = exports.Circle = exports.Hr = exports.Section = exports.RowFlex = exports.Tip = exports.AppBar = exports.ToolTip = exports.Notification = exports.FunLoader = exports.ProgressBar = exports.DropMenu = exports.DropItem = exports.Dropdown = exports.DropDown = exports.DropUp = exports.UnAuthorized = exports.NotFound = exports.StepLine = exports.StepHeader = exports.Step = exports.StepContainer = exports.Div = exports.Text = exports.List = exports.Table = exports.Modal = exports.Loader = exports.SearchableInput = exports.Input = exports.Col = exports.Grid = exports.Container = exports.BreadCrumb = exports.Card = exports.Button = exports.ThemeProvider = exports.Alert = void 0;
|
|
7
|
-
exports.GoogleAnalytics = exports.FunGet = exports.useVariables = exports.useAssets = exports.useAssetValue = exports.useAssetType = exports.useAsset = exports.useVariable = exports.Cookie = exports.FileUpload = exports.Select = exports.ScrollToTop = exports.FlexItem = exports.Slider = exports.Vista = exports.Calendar = exports.DatePicker = void 0;
|
|
7
|
+
exports.GoogleAnalytics = exports.FunGet = exports.useVariables = exports.useAssets = exports.useAssetValue = exports.useAssetType = exports.useAsset = exports.useVariable = exports.Cookie = exports.Feature = exports.Footer = exports.FileUpload = exports.Select = exports.ScrollToTop = exports.FlexItem = exports.Slider = exports.Vista = exports.Calendar = exports.DatePicker = void 0;
|
|
8
8
|
var Alert_1 = require("./ui/alert/Alert");
|
|
9
9
|
Object.defineProperty(exports, "Alert", { enumerable: true, get: function () { return __importDefault(Alert_1).default; } });
|
|
10
10
|
var theme_1 = require("./ui/theme/theme");
|
|
@@ -121,6 +121,10 @@ var Select_1 = require("./ui/select/Select");
|
|
|
121
121
|
Object.defineProperty(exports, "Select", { enumerable: true, get: function () { return __importDefault(Select_1).default; } });
|
|
122
122
|
var FileUpload_1 = require("./ui/input/FileUpload");
|
|
123
123
|
Object.defineProperty(exports, "FileUpload", { enumerable: true, get: function () { return __importDefault(FileUpload_1).default; } });
|
|
124
|
+
var Footer_1 = require("./ui/footer/Footer");
|
|
125
|
+
Object.defineProperty(exports, "Footer", { enumerable: true, get: function () { return __importDefault(Footer_1).default; } });
|
|
126
|
+
var Feature_1 = require("./ui/feature/Feature");
|
|
127
|
+
Object.defineProperty(exports, "Feature", { enumerable: true, get: function () { return __importDefault(Feature_1).default; } });
|
|
124
128
|
// js
|
|
125
129
|
var Cookie_1 = require("./js/Cookie");
|
|
126
130
|
Object.defineProperty(exports, "Cookie", { enumerable: true, get: function () { return __importDefault(Cookie_1).default; } });
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "3.7.
|
|
2
|
+
"version": "3.7.16",
|
|
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",
|