From b60ee7fb0d73d62f87eb5645091484bdeb49a61c Mon Sep 17 00:00:00 2001 From: ShaikHafiza <138603502+ShaikHafiza@users.noreply.github.com> Date: Thu, 17 Oct 2024 22:39:02 +0530 Subject: [PATCH] Created Smooth Transition Hover Effects in Book a Cab/Auto Section --- chatbot.css | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/chatbot.css b/chatbot.css index 32c8d3d7..c668b07b 100644 --- a/chatbot.css +++ b/chatbot.css @@ -147,4 +147,17 @@ body { .review-form{ margin: 20px; -} \ No newline at end of file +} + +.review-form:hover{ + transition: background-color 0.3s ease, transform 0.3s ease; + box-shadow: 0 4px 8px 0 rgba(13, 71, 216, 0.2), 0 6px 20px 0 rgba(14, 14, 219, 0.19); +} + +#name,#destination,#rating,#review,#complaint{ + border: 2px solid rgb(187, 124, 202); +} + +#name:hover,#destination:hover,#rating:hover,#review:hover,#complaint:hover{ + border: 2px solid rgb(180, 104, 175); +}