Add search css

This commit is contained in:
Raven Scott 2024-09-26 01:34:56 -04:00
parent 8e02173583
commit 3af344a12c

View File

@ -186,3 +186,19 @@ footer {
padding-top: 1.2rem !important; padding-top: 1.2rem !important;
padding-bottom: 1.5rem !important; padding-bottom: 1.5rem !important;
} }
/* Search Button Styles */
.input-group .btn-primary {
font-size: 1.25rem;
padding: 10px 20px;
color: #ffffff;
border: 2px solid #000000;
background-color: #000000;
transition: background-color 0.3s ease, color 0.3s ease;
}
.input-group .btn-primary:hover {
background-color: #2c5364;
border-color: #2c5364;
color: #ffffff;
}