From 93736f6a4ea559418d9f81fc52cdae8fb45f241b Mon Sep 17 00:00:00 2001 From: Neeru <161798182+neeru24@users.noreply.github.com> Date: Sat, 12 Oct 2024 22:08:17 +0530 Subject: [PATCH] Update style.css Signed-off-by: Neeru <161798182+neeru24@users.noreply.github.com> --- public/css/style.css | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/public/css/style.css b/public/css/style.css index 768675c1..1b0a8e82 100644 --- a/public/css/style.css +++ b/public/css/style.css @@ -361,6 +361,12 @@ a{ color: white; font-weight: 700; text-transform: uppercase; + transition: text-shadow 0.3s ease-in-out, transform 0.3s ease-in-out; /* Smooth transition */ +} + +.about h1:hover { + text-shadow: 0 0 10px white, 0 0 20px white; + transform: scale(1.05); } /* --------------- Dashboard CSS --------------- */ @@ -1725,8 +1731,13 @@ form { .about .about-us-logo { width: 400px; + transition: transform 0.3s ease-in-out; } +.about-image:hover .about-us-logo { + transform: scale(1.1); /* Increase size to 110% */ + } + .about-content .about-image { overflow: visible; width: 600px;