buttons to switch back and forth between search and image search

This commit is contained in:
abrendan
2024-02-15 16:03:08 +00:00
parent 3c55cd8964
commit f7dfba418f
4 changed files with 37 additions and 2 deletions

View File

@@ -139,3 +139,35 @@ h1 {
border-radius: 6px;
}
.image-search-button {
padding: 0.5rem 1rem;
background-color: #000000;
color: #fff;
border: 1px solid #000000;
margin-left: 8px; /* Spacing between buttons */
cursor: pointer;
border-radius: 6px;
font-size: 1rem;
text-align: center;
}
.image-search-button:hover {
background-color: #6e6e6e;
border: 1px solid #8a8a8a;
}
.text-search-button {
padding: 0.5rem 1rem;
background-color: #000000;
color: #fff;
border: 1px solid #000000;
margin-left: 8px; /* Spacing between buttons */
cursor: pointer;
border-radius: 6px;
font-size: 1rem;
text-align: center;
}
.text-search-button:hover {
background-color: #6e6e6e;
border: 1px solid #8a8a8a;
}