From d4a6fb60db3c3efe823dd7f380f07219f20a7fbb Mon Sep 17 00:00:00 2001 From: Yesn't <131057815+YesTheProxy@users.noreply.github.com> Date: Tue, 7 May 2024 18:46:41 -0400 Subject: [PATCH] Update index.html --- index.html | 99 ++++++++++++++++++++++++++++++++++++++++++------------ 1 file changed, 78 insertions(+), 21 deletions(-) diff --git a/index.html b/index.html index 2fde229..997018c 100644 --- a/index.html +++ b/index.html @@ -49,6 +49,22 @@ .github-button:hover { background-color: #555; } + + .youtube-button { + display: inline-block; + padding: 12px 24px; + background-color: #ff0000; + color: #fff; + text-decoration: none; + border-radius: 4px; + font-size: 18px; + transition: background-color 0.3s ease; + box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); + } + + .youtube-button:hover { + background-color: #ff3333; + } .tab { display: inline-block; @@ -103,6 +119,44 @@ .about-us-content { margin-top: 40px; } + + /* Visual Enhancements */ + .logo img { + filter: brightness(120%); + } + + .github-button, .youtube-button { + margin-right: 10px; + } + + .github-button:hover, .youtube-button:hover { + transform: scale(1.05); + } + + .github-button:active, .youtube-button:active { + transform: scale(0.95); + } + + .github-button, .youtube-button, .tab { + cursor: pointer; + } + + .youtube-button { + background-color: #ff0000; + color: #fff; + } + + .youtube-button:hover { + background-color: #ff3333; + } + + .about-us-heading { + color: #800080; + } + + .about-us p { + color: #333; + }