Better search bar

This commit is contained in:
FEARmeR 2023-05-20 15:32:02 +01:00
parent fd3b57c77e
commit d1a7e27b0d

View File

@ -82,7 +82,7 @@ const search = async () => {
/* Changes the font size */ /* Changes the font size */
font-size: 16px; font-size: 16px;
/* Changes the background color of the button */ /* Changes the background color of the button */
background-color: #007BFF; background-color: #3d9132;
/* Changes the color of the text inside the button */ /* Changes the color of the text inside the button */
color: white; color: white;
/* Makes the border corners rounded */ /* Makes the border corners rounded */
@ -95,7 +95,7 @@ const search = async () => {
.searchButton:hover { .searchButton:hover {
/* Changes the background color of the button when hovering over it */ /* Changes the background color of the button when hovering over it */
background-color: #0056b3; background-color: #25581e;
} }
</style> </style>