From 9dbcfd3fe27ebdad7cc91260150f990c3ef13417 Mon Sep 17 00:00:00 2001 From: Mastan Sayyad Date: Sun, 25 Aug 2024 22:57:05 +0530 Subject: [PATCH 1/3] Update index.html --- Website/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Website/index.html b/Website/index.html index e9e35aeb7..5cb2ea573 100644 --- a/Website/index.html +++ b/Website/index.html @@ -192,7 +192,7 @@

Recommendation Models

- +
Welcome to RecodeHive - Machine Learning Repos, How can we help you?
From dedaf4582861f0d6d3d6ccd9e951ed96388d129a Mon Sep 17 00:00:00 2001 From: Mastan Sayyad Date: Sun, 25 Aug 2024 22:57:09 +0530 Subject: [PATCH 2/3] Update styles.css --- Website/styles.css | 49 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) diff --git a/Website/styles.css b/Website/styles.css index 09d300211..e585358e1 100644 --- a/Website/styles.css +++ b/Website/styles.css @@ -598,8 +598,57 @@ button#toggle-languages:hover { animation: fadeIn 1s ease-in-out; } +.floating { + animation: floating 3s ease-in-out infinite; +} + +@keyframes floating { + 0% { + transform: translateY(0); + } + 50% { + transform: translateY(-7px); + } + 100% { + transform: translateY(0); + } +} + +.tooltip { + visibility: hidden; + background-color: #0D6EFD; + color: white; + text-align: center; + border-radius: 10px; + padding: 9px; + font-size: 15px; + position: absolute; + bottom: 70px; + right: -130px; + transform: translateX(-50%); + width: 270px; + box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1); + z-index: 1; + opacity: 0; + transition: opacity 0.3s; +} + +.chatbot-button:hover .tooltip { + visibility: visible; + opacity: 1; +} + +/* Hided tooltip on touch devices */ +@media (hover: none) and (pointer: coarse), (max-width: 767px) { + .tooltip { + display: none; + } +} + .chatbot.active { display: flex; + margin-right: -18px; + margin-bottom: 60px; } .chatbot-header { From 1fd9b165bfc4c1e05a9bdf7dbb1c9739891d6d1a Mon Sep 17 00:00:00 2001 From: Mastan Sayyad Date: Sun, 25 Aug 2024 23:07:48 +0530 Subject: [PATCH 3/3] Update styles.css --- Website/styles.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Website/styles.css b/Website/styles.css index e585358e1..c77547b13 100644 --- a/Website/styles.css +++ b/Website/styles.css @@ -648,7 +648,7 @@ button#toggle-languages:hover { .chatbot.active { display: flex; margin-right: -18px; - margin-bottom: 60px; + margin-bottom: 50px; } .chatbot-header {