carfdevcss 0.0.1 → 0.0.3
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 +173 -0
package/package.json
CHANGED
package/src/index.css
CHANGED
|
@@ -853,3 +853,176 @@
|
|
|
853
853
|
@layer utilities {
|
|
854
854
|
@tailwind utilities;
|
|
855
855
|
}
|
|
856
|
+
|
|
857
|
+
@theme inline {
|
|
858
|
+
--animate-bouncing: bouncing 1s ease-in-out both;
|
|
859
|
+
--animate-fade-in-up: fade-in-up 0.6s ease-in-out both;
|
|
860
|
+
|
|
861
|
+
@keyframes bouncing {
|
|
862
|
+
0% {
|
|
863
|
+
transform: translateY(0);
|
|
864
|
+
}
|
|
865
|
+
50% {
|
|
866
|
+
transform: translateY(-10px);
|
|
867
|
+
}
|
|
868
|
+
100% {
|
|
869
|
+
transform: translateY(0);
|
|
870
|
+
}
|
|
871
|
+
}
|
|
872
|
+
|
|
873
|
+
@keyframes fade-in-up {
|
|
874
|
+
0% {
|
|
875
|
+
opacity: 0;
|
|
876
|
+
transform: translateY(20px);
|
|
877
|
+
}
|
|
878
|
+
100% {
|
|
879
|
+
opacity: 1;
|
|
880
|
+
transform: translateY(0);
|
|
881
|
+
}
|
|
882
|
+
}
|
|
883
|
+
}
|
|
884
|
+
|
|
885
|
+
/* ============================================
|
|
886
|
+
Utility Classes - Animation Delay
|
|
887
|
+
============================================ */
|
|
888
|
+
|
|
889
|
+
@utility animate-delay-* {
|
|
890
|
+
animation-delay: calc(--value(integer) * 1ms);
|
|
891
|
+
animation-delay: --value(--tw-anim-delay-*, [duration], [*]);
|
|
892
|
+
}
|
|
893
|
+
|
|
894
|
+
/* ============================================
|
|
895
|
+
Utility Classes - Animation Duration
|
|
896
|
+
============================================ */
|
|
897
|
+
|
|
898
|
+
@utility animate-duration-* {
|
|
899
|
+
animation-duration: calc(--value(integer) * 1ms);
|
|
900
|
+
animation-duration: --value(--tw-anim-duration-*, [duration], [*]);
|
|
901
|
+
}
|
|
902
|
+
|
|
903
|
+
/* ============================================
|
|
904
|
+
Utility Classes - Animation Iteration Count
|
|
905
|
+
============================================ */
|
|
906
|
+
|
|
907
|
+
@utility animate-iteration-count-* {
|
|
908
|
+
animation-iteration-count: --value(
|
|
909
|
+
--tw-anim-iteration-count-*,
|
|
910
|
+
number,
|
|
911
|
+
[number],
|
|
912
|
+
[*]
|
|
913
|
+
);
|
|
914
|
+
}
|
|
915
|
+
|
|
916
|
+
/* ============================================
|
|
917
|
+
Utility Classes - Animation Fill Mode
|
|
918
|
+
============================================ */
|
|
919
|
+
|
|
920
|
+
@utility animate-fill-mode-* {
|
|
921
|
+
animation-fill-mode: --value(--tw-anim-fill-mode-*, [*]);
|
|
922
|
+
}
|
|
923
|
+
|
|
924
|
+
/* ============================================
|
|
925
|
+
Utility Classes - Animation Steps
|
|
926
|
+
============================================ */
|
|
927
|
+
|
|
928
|
+
@utility animate-steps-* {
|
|
929
|
+
animation-timing-function: steps(
|
|
930
|
+
--value(--tw-anim-steps-*, integer, [integer])
|
|
931
|
+
);
|
|
932
|
+
}
|
|
933
|
+
|
|
934
|
+
/* ============================================
|
|
935
|
+
Utility Classes - Animation Timing Functions
|
|
936
|
+
============================================ */
|
|
937
|
+
|
|
938
|
+
@utility animate-ease {
|
|
939
|
+
animation-timing-function: ease;
|
|
940
|
+
}
|
|
941
|
+
|
|
942
|
+
@utility animate-ease-in {
|
|
943
|
+
animation-timing-function: ease-in;
|
|
944
|
+
}
|
|
945
|
+
|
|
946
|
+
@utility animate-ease-out {
|
|
947
|
+
animation-timing-function: ease-out;
|
|
948
|
+
}
|
|
949
|
+
|
|
950
|
+
@utility animate-ease-in-out {
|
|
951
|
+
animation-timing-function: ease-in-out;
|
|
952
|
+
}
|
|
953
|
+
|
|
954
|
+
@utility animate-linear {
|
|
955
|
+
animation-timing-function: linear;
|
|
956
|
+
}
|
|
957
|
+
|
|
958
|
+
/* ============================================
|
|
959
|
+
Utility Classes - Animation Bezier Curves
|
|
960
|
+
============================================ */
|
|
961
|
+
|
|
962
|
+
@utility animate-bezier-* {
|
|
963
|
+
animation-timing-function: --value(--tw-anim-bezier-*, [*]);
|
|
964
|
+
}
|
|
965
|
+
|
|
966
|
+
/* ============================================
|
|
967
|
+
Utility Classes - Animation Direction
|
|
968
|
+
============================================ */
|
|
969
|
+
|
|
970
|
+
@utility animate-direction-normal {
|
|
971
|
+
animation-direction: normal;
|
|
972
|
+
}
|
|
973
|
+
|
|
974
|
+
@utility animate-direction-reverse {
|
|
975
|
+
animation-direction: reverse;
|
|
976
|
+
}
|
|
977
|
+
|
|
978
|
+
@utility animate-direction-alternate {
|
|
979
|
+
animation-direction: alternate;
|
|
980
|
+
}
|
|
981
|
+
|
|
982
|
+
@utility animate-direction-alternate-reverse {
|
|
983
|
+
animation-direction: alternate-reverse;
|
|
984
|
+
}
|
|
985
|
+
|
|
986
|
+
/* ============================================
|
|
987
|
+
Utility Classes - Animation Play State
|
|
988
|
+
============================================ */
|
|
989
|
+
|
|
990
|
+
@utility animate-play-running {
|
|
991
|
+
animation-play-state: running;
|
|
992
|
+
}
|
|
993
|
+
|
|
994
|
+
@utility animate-play-paused {
|
|
995
|
+
animation-play-state: paused;
|
|
996
|
+
}
|
|
997
|
+
|
|
998
|
+
/* ============================================
|
|
999
|
+
Utility Classes - Animation Timeline
|
|
1000
|
+
============================================ */
|
|
1001
|
+
|
|
1002
|
+
@utility timeline-* {
|
|
1003
|
+
animation-timeline: --value(--tw-timeline-*, [ident], [*]) !important;
|
|
1004
|
+
}
|
|
1005
|
+
|
|
1006
|
+
/* ============================================
|
|
1007
|
+
Utility Classes - Scroll Timeline Axis
|
|
1008
|
+
============================================ */
|
|
1009
|
+
|
|
1010
|
+
@utility scroll-timeline-axis-* {
|
|
1011
|
+
scroll-timeline-axis: --value(--tw-scroll-timeline-axis-*, [ident], [*]);
|
|
1012
|
+
}
|
|
1013
|
+
|
|
1014
|
+
/* ============================================
|
|
1015
|
+
Utility Classes - View Timeline Axis
|
|
1016
|
+
============================================ */
|
|
1017
|
+
|
|
1018
|
+
@utility view-timeline-axis-* {
|
|
1019
|
+
view-timeline-axis: --value(--tw-view-timeline-axis-*, [ident], [*]);
|
|
1020
|
+
}
|
|
1021
|
+
|
|
1022
|
+
/* ============================================
|
|
1023
|
+
Utility Classes - Animation Range
|
|
1024
|
+
============================================ */
|
|
1025
|
+
|
|
1026
|
+
@utility animate-range-* {
|
|
1027
|
+
animation-range: --value(--tw-anim-range-*, [*]);
|
|
1028
|
+
}
|