File upload.

This commit is contained in:
2025-05-12 22:27:17 +08:00
parent d646cf779d
commit bea9e24e98
7 changed files with 383 additions and 29 deletions

View File

@@ -110,4 +110,18 @@ body {
.animate-appearance-in {
animation: appearance-in 250ms ease-out normal both;
}
.move-up-animation {
animation: moveUpAndDown 2s infinite;
position: relative;
}
@keyframes moveUpAndDown {
0% {
top: 0;
}
100% {
top: -100%;
}
}