initial commit

This commit is contained in:
2024-04-26 16:34:18 +02:00
commit 1590b3f36a
119 changed files with 6787 additions and 0 deletions

21
node_modules/animate.css/source/flippers/flipOutX.css generated vendored Normal file
View File

@ -0,0 +1,21 @@
@keyframes flipOutX {
from {
transform: perspective(400px);
}
30% {
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
opacity: 1;
}
to {
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
opacity: 0;
}
}
.flipOutX {
animation-duration: calc(var(--animate-duration) * 0.75);
animation-name: flipOutX;
backface-visibility: visible !important;
}