From 038fc87fed3fbaa29f71acdb1bd63e29bc50bc6f Mon Sep 17 00:00:00 2001 From: deepend-tildeclub <58404188+deepend-tildeclub@users.noreply.github.com> Date: Thu, 29 Aug 2024 13:51:03 -0600 Subject: [PATCH] Update theme.css --- theme.css | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/theme.css b/theme.css index aab7d3a..cc8149c 100644 --- a/theme.css +++ b/theme.css @@ -148,7 +148,7 @@ kbd { } /* General button styles */ -.btn-primary { +.btn { background-color: #00ffcc; color: #121212; border: 2px solid #00ffcc; @@ -156,11 +156,12 @@ kbd { transition: all 0.3s ease; padding: 10px 30px; font-size: 1rem; /* Match font size with the rest of the site */ + cursor: pointer; } -.btn-primary:hover { +.btn:hover { background-color: #00ffcc; - color: #121212; /* Ensure the text color turns black on hover */ + color: #121212; /* Ensure the text color remains black on hover */ box-shadow: 0px 0px 20px #00ffcc, 0px 0px 30px #00ffcc, 0px 0px 40px #00ffcc; }