twntyx-css 1.0.6 → 1.0.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.
- package/llm/index.json +2 -2
- package/package.json +1 -1
- package/styles/animation.css +5 -132
package/llm/index.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"llmSchemaVersion": "1.0.0",
|
|
3
|
-
"designSystemVersion": "1.0.
|
|
3
|
+
"designSystemVersion": "1.0.7",
|
|
4
4
|
"packageName": "twntyx-css",
|
|
5
5
|
"apiModel": "html-class",
|
|
6
|
-
"sourceFingerprint": "
|
|
6
|
+
"sourceFingerprint": "edc2ab201c2009b080557686438a6f36046b978edb2a8a34abd944be502d8401",
|
|
7
7
|
"files": {
|
|
8
8
|
"schema": "schema.json",
|
|
9
9
|
"tokens": "tokens.json",
|
package/package.json
CHANGED
package/styles/animation.css
CHANGED
|
@@ -304,12 +304,6 @@
|
|
|
304
304
|
both;
|
|
305
305
|
--animate-shake-bottom: shake-bottom 0.6s
|
|
306
306
|
cubic-bezier(0.455, 0.03, 0.515, 0.955) both;
|
|
307
|
-
--animate-claim-diamond-rotate: claimDiamondRotate 1s
|
|
308
|
-
cubic-bezier(0, 0.4, 0, 1) both infinite;
|
|
309
|
-
--animate-claim-diamond-left: claimDiamondLeft 1s cubic-bezier(0, 0.4, 0, 1)
|
|
310
|
-
both infinite;
|
|
311
|
-
--animate-claim-diamond-right: claimDiamondRight 1s cubic-bezier(0, 0.4, 0, 1)
|
|
312
|
-
both infinite;
|
|
313
307
|
--animate-claim-radar: claimRadar 3s cubic-bezier(0, 0.4, 0, 1) both infinite;
|
|
314
308
|
--animate-radar: radar 2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
|
|
315
309
|
--animate-photobooth-in: photoboothIn 1s cubic-bezier(0, 0.4, 0, 1) both 0.5s;
|
|
@@ -819,35 +813,6 @@
|
|
|
819
813
|
}
|
|
820
814
|
}
|
|
821
815
|
|
|
822
|
-
@keyframes claimDiamondLeft {
|
|
823
|
-
0% {
|
|
824
|
-
transform: translateX(-20rem);
|
|
825
|
-
}
|
|
826
|
-
100% {
|
|
827
|
-
transform: translateX(-1rem);
|
|
828
|
-
}
|
|
829
|
-
}
|
|
830
|
-
|
|
831
|
-
@keyframes claimDiamondRight {
|
|
832
|
-
0% {
|
|
833
|
-
transform: translateX(20rem);
|
|
834
|
-
}
|
|
835
|
-
100% {
|
|
836
|
-
transform: translateX(1rem);
|
|
837
|
-
}
|
|
838
|
-
}
|
|
839
|
-
|
|
840
|
-
@keyframes claimDiamondRotate {
|
|
841
|
-
0% {
|
|
842
|
-
transform: rotate(-45deg);
|
|
843
|
-
opacity: 1;
|
|
844
|
-
}
|
|
845
|
-
100% {
|
|
846
|
-
transform: rotate(-45deg);
|
|
847
|
-
opacity: 0;
|
|
848
|
-
}
|
|
849
|
-
}
|
|
850
|
-
|
|
851
816
|
@keyframes shake-bottom {
|
|
852
817
|
0%,
|
|
853
818
|
100% {
|
|
@@ -875,48 +840,6 @@
|
|
|
875
840
|
}
|
|
876
841
|
}
|
|
877
842
|
|
|
878
|
-
@keyframes xpEventInLeft {
|
|
879
|
-
0% {
|
|
880
|
-
transform: translateX(-2rem);
|
|
881
|
-
opacity: 0;
|
|
882
|
-
}
|
|
883
|
-
100% {
|
|
884
|
-
transform: translateX(0);
|
|
885
|
-
opacity: 1;
|
|
886
|
-
}
|
|
887
|
-
}
|
|
888
|
-
@keyframes xpEventInRight {
|
|
889
|
-
0% {
|
|
890
|
-
transform: translateX(100%);
|
|
891
|
-
opacity: 0;
|
|
892
|
-
}
|
|
893
|
-
100% {
|
|
894
|
-
transform: translateX(0);
|
|
895
|
-
opacity: 1;
|
|
896
|
-
}
|
|
897
|
-
}
|
|
898
|
-
|
|
899
|
-
@keyframes xpEventInHeight {
|
|
900
|
-
0% {
|
|
901
|
-
height: 0;
|
|
902
|
-
}
|
|
903
|
-
100% {
|
|
904
|
-
height: 1.75rem;
|
|
905
|
-
}
|
|
906
|
-
}
|
|
907
|
-
|
|
908
|
-
@keyframes xpRewardInScale {
|
|
909
|
-
0% {
|
|
910
|
-
transform: scale(0) rotate(15deg);
|
|
911
|
-
opacity: 0;
|
|
912
|
-
}
|
|
913
|
-
100% {
|
|
914
|
-
transform: scale(1) rotate(0deg);
|
|
915
|
-
rotate: 0deg;
|
|
916
|
-
opacity: 1;
|
|
917
|
-
}
|
|
918
|
-
}
|
|
919
|
-
|
|
920
843
|
@keyframes progressbarHighlight {
|
|
921
844
|
0% {
|
|
922
845
|
transform: translateX(-100%);
|
|
@@ -932,17 +855,6 @@
|
|
|
932
855
|
}
|
|
933
856
|
}
|
|
934
857
|
|
|
935
|
-
@keyframes letterInBottom {
|
|
936
|
-
0% {
|
|
937
|
-
opacity: 0;
|
|
938
|
-
transform: translateY(50%) scale(0.95) rotate(15deg);
|
|
939
|
-
}
|
|
940
|
-
100% {
|
|
941
|
-
opacity: 1;
|
|
942
|
-
transform: translateY(0) scale(1) rotate(0deg);
|
|
943
|
-
}
|
|
944
|
-
}
|
|
945
|
-
|
|
946
858
|
@keyframes cashTop {
|
|
947
859
|
0% {
|
|
948
860
|
transform: translateY(0);
|
|
@@ -965,39 +877,6 @@
|
|
|
965
877
|
}
|
|
966
878
|
}
|
|
967
879
|
|
|
968
|
-
@keyframes xpEventInOpacity {
|
|
969
|
-
0%,
|
|
970
|
-
100% {
|
|
971
|
-
opacity: 0;
|
|
972
|
-
}
|
|
973
|
-
15%,
|
|
974
|
-
70% {
|
|
975
|
-
opacity: 1;
|
|
976
|
-
}
|
|
977
|
-
}
|
|
978
|
-
|
|
979
|
-
@keyframes xpEventInScale {
|
|
980
|
-
0% {
|
|
981
|
-
transform: scale(1.2);
|
|
982
|
-
filter: blur(1rem);
|
|
983
|
-
opacity: 0;
|
|
984
|
-
}
|
|
985
|
-
100% {
|
|
986
|
-
transform: scale(1);
|
|
987
|
-
filter: blur(0rem);
|
|
988
|
-
opacity: 1;
|
|
989
|
-
}
|
|
990
|
-
}
|
|
991
|
-
|
|
992
|
-
@keyframes xpEventInTranslate {
|
|
993
|
-
0% {
|
|
994
|
-
transform: translateY(0);
|
|
995
|
-
}
|
|
996
|
-
100% {
|
|
997
|
-
transform: translateY(-100%);
|
|
998
|
-
}
|
|
999
|
-
}
|
|
1000
|
-
|
|
1001
880
|
@keyframes dropdownIn {
|
|
1002
881
|
0% {
|
|
1003
882
|
transform: scale(0.95);
|
|
@@ -1352,15 +1231,7 @@
|
|
|
1352
1231
|
transform: translateY(-12%);
|
|
1353
1232
|
}
|
|
1354
1233
|
}
|
|
1355
|
-
|
|
1356
|
-
0%,
|
|
1357
|
-
100% {
|
|
1358
|
-
transform: translateY(0);
|
|
1359
|
-
}
|
|
1360
|
-
50% {
|
|
1361
|
-
transform: translateY(-0.625rem);
|
|
1362
|
-
}
|
|
1363
|
-
}
|
|
1234
|
+
|
|
1364
1235
|
@keyframes float {
|
|
1365
1236
|
0% {
|
|
1366
1237
|
transform: translateY(5%);
|
|
@@ -2025,12 +1896,14 @@
|
|
|
2025
1896
|
@keyframes explosion {
|
|
2026
1897
|
0% {
|
|
2027
1898
|
transform: scale(1);
|
|
2028
|
-
box-shadow: inset 0 0 0 1.5rem
|
|
1899
|
+
box-shadow: inset 0 0 0 1.5rem
|
|
1900
|
+
color-mix(in srgb, var(--color-brand-default) 100%, transparent 100%);
|
|
2029
1901
|
filter: brightness(150%);
|
|
2030
1902
|
}
|
|
2031
1903
|
100% {
|
|
2032
1904
|
transform: scale(2);
|
|
2033
|
-
box-shadow: inset 0 0 0 0
|
|
1905
|
+
box-shadow: inset 0 0 0 0
|
|
1906
|
+
color-mix(in srgb, var(--color-brand-default) 100%, transparent 100%);
|
|
2034
1907
|
filter: brightness(100%);
|
|
2035
1908
|
}
|
|
2036
1909
|
}
|