Merge pull request #37 from somoso/patch-2

Fix theming for all browsers
This commit is contained in:
Spike 2021-01-08 12:56:00 -08:00 committed by GitHub
commit 747d5a7c67
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -205,6 +205,8 @@ select, #search {
padding: 0 15px;
height: 40px;
appearance: none;
-webkit-appearance: none;
-moz-appearance: none;
border-radius: 5px 0px 0px 5px;
}
@ -659,6 +661,11 @@ input[type="submit"]:hover { color: var(--accent); }
margin-top: 20px;
}
input[type="submit"] {
appearance: none;
-webkit-appearance: none;
-moz-appearance: none;
}
/* Markdown */
.md > *:not(:first-child) {