Update styles.css

This commit is contained in:
gr00tie 2023-11-14 13:40:05 +01:00 committed by GitHub
parent 839c24b4c1
commit b59feb8e58
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -198,7 +198,7 @@ body {
/* Override other elements as needed for the hacker theme */ /* Override other elements as needed for the hacker theme */
nav { nav {
background: #121212; /* Dark background for navigation */ background: #121212; /* Dark background for navigation */
/* border-bottom: 1px solid #33ff33; Bright green border for accent */ /* border-bottom: 1px solid #e69109; Bright green border for accent */
} }
/* Ensure links stand out */ /* Ensure links stand out */
@ -211,15 +211,15 @@ a {
.btn { .btn {
font-family: 'Courier New', monospace; font-family: 'Courier New', monospace;
background: #222; /* Dark background for buttons */ background: #222; /* Dark background for buttons */
color: #33ff33; /* Bright green text */ color: #e69109; /* Bright green text */
border: 1px solid #33ff33; /* Border to match text color */ border: 1px solid #e69109; /* Border to match text color */
padding: 10px 20px; padding: 10px 20px;
text-transform: uppercase; text-transform: uppercase;
transition: background-color 0.3s ease, color 0.3s ease; transition: background-color 0.3s ease, color 0.3s ease;
} }
.btn:hover { .btn:hover {
background: #33ff33; /* Bright green background on hover */ background: #e69109; /* Bright green background on hover */
color: #000; /* Dark text on hover */ color: #000; /* Dark text on hover */
cursor: pointer; cursor: pointer;
} }