made image search prettier

This commit is contained in:
hnhx 2022-02-20 16:48:00 +01:00
parent e504fedbf4
commit 6e7272bf27
2 changed files with 2 additions and 3 deletions

View File

@ -83,7 +83,7 @@
$alt = $result["alt"]; $alt = $result["alt"];
echo "<a title=\"$alt\" href=\"data:image/jpeg;base64,$src\" target=\"_blank\">"; echo "<a title=\"$alt\" href=\"data:image/jpeg;base64,$src\" target=\"_blank\">";
echo "<img src=\"data:image/jpeg;base64,$src\">"; echo "<img src=\"data:image/jpeg;base64,$src\" width=\"350\" height=\"200\">";
echo "</a>"; echo "</a>";
} }

View File

@ -198,7 +198,7 @@ img {
margin-top:1px; margin-top:1px;
} }
.result-container h2:hover { .result-container h2:hover {
text-decoration: underline; text-decoration: underline;
} }
@ -215,7 +215,6 @@ img {
margin-bottom:30px; margin-bottom:30px;
max-height: 100vh; max-height: 100vh;
max-width: 84%;
} }
/* .image-result-container END */ /* .image-result-container END */