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

View File

@ -0,0 +1,14 @@
@keyframes slideOutLeft {
from {
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
transform: translate3d(-100%, 0, 0);
}
}
.slideOutLeft {
animation-name: slideOutLeft;
}