From 8f1d07a768b763c6ca1cc22fae27b3a68d64fb69 Mon Sep 17 00:00:00 2001 From: lichenblankie Date: Fri, 5 Jun 2026 04:29:39 +0000 Subject: [PATCH] add fade-in transition to content --- themes/tinyweb-site.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/themes/tinyweb-site.html b/themes/tinyweb-site.html index 8f8db57..a07bc34 100644 --- a/themes/tinyweb-site.html +++ b/themes/tinyweb-site.html @@ -88,7 +88,8 @@ background: #f5f5f5; color: #444; } - .content { width: 100%; } + .content { width: 100%; animation: fadeIn 0.3s ease; } + @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } } h1 { font-size: 32px; font-weight: bold;