From 71962c851869e5ebf1dbb4a9dac3ac1ce5f35e6c Mon Sep 17 00:00:00 2001 From: Abhishek Sharma Date: Fri, 25 Oct 2024 14:25:22 +0530 Subject: [PATCH 1/2] Update index.html added hover feature in testimonial cards --- index.html | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/index.html b/index.html index b888a2b..e55086f 100644 --- a/index.html +++ b/index.html @@ -123,6 +123,13 @@ font-style: italic; } + .testimonial-card:hover { + transform: translateY(-10px) scale(1.1); + box-shadow: 0 4px 8px #0073b1; + z-index: 3; + } + + /* Chatbot Styles */ .chatbot-container { position: fixed; From 913cfd6699bab17c36c199382b9208b13cb293eb Mon Sep 17 00:00:00 2001 From: Abhishek Sharma Date: Fri, 25 Oct 2024 14:28:30 +0530 Subject: [PATCH 2/2] Update in index.html --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index e55086f..b5842b0 100644 --- a/index.html +++ b/index.html @@ -124,7 +124,7 @@ } .testimonial-card:hover { - transform: translateY(-10px) scale(1.1); + transform: translateY(-10px) scale(1); box-shadow: 0 4px 8px #0073b1; z-index: 3; }