make buttons much clearer when hovered

This commit is contained in:
2026-07-20 18:47:45 +10:00
parent 78aae0714c
commit 77ceecaf0c

View File

@@ -21,6 +21,12 @@ button, input, textarea {
color: lime;
background-color: black;
border: 1px solid lime;
cursor: pointer;
}
button:hover {
background-color: lime;
color: black;
}
textarea {