From 6686921067042600b16082baa46cde8253f31a4d Mon Sep 17 00:00:00 2001 From: Shinni <69644134+ShinniUwU@users.noreply.github.com> Date: Fri, 1 Mar 2024 17:20:15 +0200 Subject: [PATCH] Add files via upload --- css.css | 29 ++++++++++++ index.html | 58 +++++++++++------------ js.js | 133 ++++++++++++++++++++++++++++++++++++++++------------- 3 files changed, 160 insertions(+), 60 deletions(-) diff --git a/css.css b/css.css index 71d3db5..ac22a19 100644 --- a/css.css +++ b/css.css @@ -89,6 +89,28 @@ img:hover { border-radius: 5px; box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); z-index: 1000; + animation: fadeIn 0.5s ease forwards; +} + +@keyframes fadeIn { + from { + opacity: 0; + transform: translateY(20px); /* Move the chat box slightly downward */ + } + to { + opacity: 1; + transform: translateY(0); /* Move the chat box back to its original position */ + } +} +@keyframes fadeOut { + from { + opacity: 1; + transform: translateY(0); /* Start from the original position */ + } + to { + opacity: 0; + transform: translateY(20px); /* Move slightly downward */ + } } #closeChat { @@ -156,3 +178,10 @@ img:hover { opacity: 0; } } + + + +#datingTime { + font-size: 24px; /* Adjust the font size as needed */ + margin-bottom: 10px; /* Add margin to separate it from the "Time on HRT" section */ +} diff --git a/index.html b/index.html index 0d6fc0e..ff95922 100644 --- a/index.html +++ b/index.html @@ -18,7 +18,8 @@