Update theme.css

This commit is contained in:
deepend-tildeclub 2024-08-29 13:42:20 -06:00 committed by GitHub
parent 308a0013fb
commit ad4d1e7909
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 17 additions and 0 deletions

View File

@ -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;