fun improvements (#1)
Some checks failed
Build and Deploy Blog / build-and-deploy-local (push) Failing after 11s

Reviewed-on: #1
This commit was merged in pull request #1.
This commit is contained in:
2026-03-31 00:50:16 +00:00
parent 902521e1f3
commit 1ba5ee1b41
13 changed files with 424 additions and 66 deletions

View File

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