feat(website): wording and style

This commit is contained in:
Simon
2026-02-14 18:54:43 +08:00
parent e5cf60df1b
commit b1be05309b
10 changed files with 909 additions and 697 deletions

View File

@@ -377,6 +377,24 @@ td {
background-position: bottom center;
}
}
--animate-marquee: marquee var(--duration) infinite linear;
--animate-marquee-vertical: marquee-vertical var(--duration) linear infinite;
@keyframes marquee {
from {
transform: translateX(0);
}
to {
transform: translateX(calc(-100% - var(--gap)));
}
}
@keyframes marquee-vertical {
from {
transform: translateY(0);
}
to {
transform: translateY(calc(-100% - var(--gap)));
}
}
}
/* shadcn dark mode */