This commit is contained in:
2025-09-13 20:51:04 +02:00
parent 9ae2f3bbcb
commit 5cff4fe86d
21 changed files with 311 additions and 96 deletions

View File

@@ -73,6 +73,11 @@
}
}
@keyframes blink {
0%, 100% { opacity: 1; }
50% { opacity: 0.3; }
}
@keyframes bounce-y {
0%, 100% {
transform: translateY(-10%);
@@ -95,6 +100,16 @@
}
@layer utilities {
.animate-blink {
animation: blink 2s infinite;
}
.bg-stat-gradient {
background: linear-gradient(to bottom, #9089fc, #93c5fd);
}
}
@theme inline {
--animate-marquee: marquee var(--marquee-duration) linear infinite;