From ad4d1e7909d70cbae4243b19b7bdcb4005329fc9 Mon Sep 17 00:00:00 2001 From: deepend-tildeclub <58404188+deepend-tildeclub@users.noreply.github.com> Date: Thu, 29 Aug 2024 13:42:20 -0600 Subject: [PATCH] Update theme.css --- theme.css | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/theme.css b/theme.css index 9b52285..aab7d3a 100644 --- a/theme.css +++ b/theme.css @@ -147,6 +147,23 @@ kbd { box-shadow: 0px 0px 20px #00ffcc, 0px 0px 30px #00ffcc, 0px 0px 40px #00ffcc; } +/* General button styles */ +.btn-primary { + background-color: #00ffcc; + color: #121212; + border: 2px solid #00ffcc; + text-transform: uppercase; + transition: all 0.3s ease; + padding: 10px 30px; + font-size: 1rem; /* Match font size with the rest of the site */ +} + +.btn-primary:hover { + background-color: #00ffcc; + color: #121212; /* Ensure the text color turns black on hover */ + box-shadow: 0px 0px 20px #00ffcc, 0px 0px 30px #00ffcc, 0px 0px 40px #00ffcc; +} + /* Footer */ #footer { height: 43px;