fun improvements #1

Merged
GKaszewski merged 21 commits from fun into main 2026-03-31 00:50:17 +00:00
Showing only changes of commit d55e41992d - Show all commits

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;
}