first initial commit

This commit is contained in:
2026-02-07 22:27:31 +08:00
commit 07786f8eb0
18 changed files with 6035 additions and 0 deletions

13
assets/css/screen.css Normal file
View File

@@ -0,0 +1,13 @@
@keyframes marquee-custom {
0% { transform: translateX(0); }
100% { transform: translateX(-100%); }
}
.animate-marquee-custom { animation: marquee-custom 20s linear infinite; }
@keyframes slide-down {
from { opacity: 0; transform: translateY(-10px); }
to { opacity: 1; transform: translateY(0); }
}
.animate-slide-down {
animation: slide-down 0.2s ease-out forwards;
}