yeah we good for now

This commit is contained in:
martyTF 2026-06-19 18:24:27 +02:00
parent bf4e947853
commit da877dd4f4
15 changed files with 151 additions and 49 deletions

14
animation.css Normal file
View file

@ -0,0 +1,14 @@
@keyframes shiftcontent {
0% {
transform: translate(0%);
}
49% {
transform: translateY(-100%);
}
50% {
transform: translateY(100%);
}
100% {
transform: translateY(0%);
}
}