carfdevcss 0.0.1 → 0.0.2
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/package.json +1 -1
- package/src/index.css +157 -0
package/package.json
CHANGED
package/src/index.css
CHANGED
|
@@ -518,6 +518,8 @@
|
|
|
518
518
|
--animate-ping: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
|
|
519
519
|
--animate-pulse: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
|
|
520
520
|
--animate-bounce: bounce 1s infinite;
|
|
521
|
+
--animate-bouncing: bouncing 1s ease-in-out both;
|
|
522
|
+
--animate-fade-in-up: fade-in-up 0.6s ease-in-out both;
|
|
521
523
|
|
|
522
524
|
@keyframes spin {
|
|
523
525
|
to {
|
|
@@ -552,6 +554,29 @@
|
|
|
552
554
|
}
|
|
553
555
|
}
|
|
554
556
|
|
|
557
|
+
@keyframes bouncing {
|
|
558
|
+
0% {
|
|
559
|
+
transform: translateY(0);
|
|
560
|
+
}
|
|
561
|
+
50% {
|
|
562
|
+
transform: translateY(-10px);
|
|
563
|
+
}
|
|
564
|
+
100% {
|
|
565
|
+
transform: translateY(0);
|
|
566
|
+
}
|
|
567
|
+
}
|
|
568
|
+
|
|
569
|
+
@keyframes fade-in-up {
|
|
570
|
+
0% {
|
|
571
|
+
opacity: 0;
|
|
572
|
+
transform: translateY(20px);
|
|
573
|
+
}
|
|
574
|
+
100% {
|
|
575
|
+
opacity: 1;
|
|
576
|
+
transform: translateY(0);
|
|
577
|
+
}
|
|
578
|
+
}
|
|
579
|
+
|
|
555
580
|
--blur-xs: 4px;
|
|
556
581
|
--blur-sm: 8px;
|
|
557
582
|
--blur-md: 12px;
|
|
@@ -853,3 +878,135 @@
|
|
|
853
878
|
@layer utilities {
|
|
854
879
|
@tailwind utilities;
|
|
855
880
|
}
|
|
881
|
+
|
|
882
|
+
/* ============================================
|
|
883
|
+
Utility Classes - Animation Delay
|
|
884
|
+
============================================ */
|
|
885
|
+
|
|
886
|
+
@utility animate-delay-* {
|
|
887
|
+
animation-delay: calc(--value(integer) * 1ms);
|
|
888
|
+
animation-delay: --value(--tw-anim-delay-*, [duration], [*]);
|
|
889
|
+
}
|
|
890
|
+
|
|
891
|
+
/* ============================================
|
|
892
|
+
Utility Classes - Animation Duration
|
|
893
|
+
============================================ */
|
|
894
|
+
|
|
895
|
+
@utility animate-duration-* {
|
|
896
|
+
animation-duration: calc(--value(integer) * 1ms);
|
|
897
|
+
animation-duration: --value(--tw-anim-duration-*, [duration], [*]);
|
|
898
|
+
}
|
|
899
|
+
|
|
900
|
+
/* ============================================
|
|
901
|
+
Utility Classes - Animation Fill Mode
|
|
902
|
+
============================================ */
|
|
903
|
+
|
|
904
|
+
@utility animate-fill-mode-* {
|
|
905
|
+
animation-fill-mode: --value(--tw-anim-fill-mode-*, [*]);
|
|
906
|
+
}
|
|
907
|
+
|
|
908
|
+
/* ============================================
|
|
909
|
+
Utility Classes - Animation Steps
|
|
910
|
+
============================================ */
|
|
911
|
+
|
|
912
|
+
@utility animate-steps-* {
|
|
913
|
+
animation-timing-function: steps(
|
|
914
|
+
--value(--tw-anim-steps-*, integer, [integer])
|
|
915
|
+
);
|
|
916
|
+
}
|
|
917
|
+
|
|
918
|
+
/* ============================================
|
|
919
|
+
Utility Classes - Animation Timing Functions
|
|
920
|
+
============================================ */
|
|
921
|
+
|
|
922
|
+
@utility animate-ease {
|
|
923
|
+
animation-timing-function: ease;
|
|
924
|
+
}
|
|
925
|
+
|
|
926
|
+
@utility animate-ease-in {
|
|
927
|
+
animation-timing-function: ease-in;
|
|
928
|
+
}
|
|
929
|
+
|
|
930
|
+
@utility animate-ease-out {
|
|
931
|
+
animation-timing-function: ease-out;
|
|
932
|
+
}
|
|
933
|
+
|
|
934
|
+
@utility animate-ease-in-out {
|
|
935
|
+
animation-timing-function: ease-in-out;
|
|
936
|
+
}
|
|
937
|
+
|
|
938
|
+
@utility animate-linear {
|
|
939
|
+
animation-timing-function: linear;
|
|
940
|
+
}
|
|
941
|
+
|
|
942
|
+
/* ============================================
|
|
943
|
+
Utility Classes - Animation Bezier Curves
|
|
944
|
+
============================================ */
|
|
945
|
+
|
|
946
|
+
@utility animate-bezier-* {
|
|
947
|
+
animation-timing-function: --value(--tw-anim-bezier-*, [*]);
|
|
948
|
+
}
|
|
949
|
+
|
|
950
|
+
/* ============================================
|
|
951
|
+
Utility Classes - Animation Direction
|
|
952
|
+
============================================ */
|
|
953
|
+
|
|
954
|
+
@utility animate-direction-normal {
|
|
955
|
+
animation-direction: normal;
|
|
956
|
+
}
|
|
957
|
+
|
|
958
|
+
@utility animate-direction-reverse {
|
|
959
|
+
animation-direction: reverse;
|
|
960
|
+
}
|
|
961
|
+
|
|
962
|
+
@utility animate-direction-alternate {
|
|
963
|
+
animation-direction: alternate;
|
|
964
|
+
}
|
|
965
|
+
|
|
966
|
+
@utility animate-direction-alternate-reverse {
|
|
967
|
+
animation-direction: alternate-reverse;
|
|
968
|
+
}
|
|
969
|
+
|
|
970
|
+
/* ============================================
|
|
971
|
+
Utility Classes - Animation Play State
|
|
972
|
+
============================================ */
|
|
973
|
+
|
|
974
|
+
@utility animate-play-running {
|
|
975
|
+
animation-play-state: running;
|
|
976
|
+
}
|
|
977
|
+
|
|
978
|
+
@utility animate-play-paused {
|
|
979
|
+
animation-play-state: paused;
|
|
980
|
+
}
|
|
981
|
+
|
|
982
|
+
/* ============================================
|
|
983
|
+
Utility Classes - Animation Timeline
|
|
984
|
+
============================================ */
|
|
985
|
+
|
|
986
|
+
@utility timeline-* {
|
|
987
|
+
animation-timeline: --value(--tw-timeline-*, [ident], [*]) !important;
|
|
988
|
+
}
|
|
989
|
+
|
|
990
|
+
/* ============================================
|
|
991
|
+
Utility Classes - Scroll Timeline Axis
|
|
992
|
+
============================================ */
|
|
993
|
+
|
|
994
|
+
@utility scroll-timeline-axis-* {
|
|
995
|
+
scroll-timeline-axis: --value(--tw-scroll-timeline-axis-*, [ident], [*]);
|
|
996
|
+
}
|
|
997
|
+
|
|
998
|
+
/* ============================================
|
|
999
|
+
Utility Classes - View Timeline Axis
|
|
1000
|
+
============================================ */
|
|
1001
|
+
|
|
1002
|
+
@utility view-timeline-axis-* {
|
|
1003
|
+
view-timeline-axis: --value(--tw-view-timeline-axis-*, [ident], [*]);
|
|
1004
|
+
}
|
|
1005
|
+
|
|
1006
|
+
/* ============================================
|
|
1007
|
+
Utility Classes - Animation Range
|
|
1008
|
+
============================================ */
|
|
1009
|
+
|
|
1010
|
+
@utility animate-range-* {
|
|
1011
|
+
animation-range: --value(--tw-anim-range-*, [*]);
|
|
1012
|
+
}
|