From b98ec50f77423053ded2d5204019ae548f496351 Mon Sep 17 00:00:00 2001 From: inventionpro <109528211+inventionpro@users.noreply.github.com> Date: Sat, 20 Jul 2024 23:02:25 +0200 Subject: [PATCH] Update style.css --- style.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/style.css b/style.css index b555f02..4626f48 100644 --- a/style.css +++ b/style.css @@ -44,6 +44,11 @@ body { textarea { resize: none; } +.appear { + animation-name: appear; + animation-duration: 1s; + animation-iteration-count: 1; +} @keyframes appear { from {opacity: 0;} to {opacity: 1;}