feat: add blink keyframe animation

This commit is contained in:
2026-03-31 02:24:16 +02:00
parent a1019daab8
commit d55e41992d

View File

@@ -130,3 +130,13 @@ body {
.prose :not(pre) > code::after { .prose :not(pre) > code::after {
content: none !important; content: none !important;
} }
/* ── Corner ribbon animation ── */
@keyframes blink {
0%, 100% { opacity: 1; }
50% { opacity: 0.4; }
}
.animate-blink {
animation: blink 0.8s ease-in-out infinite;
}