From 77ceecaf0cddbc8ab6ef672af261c7fa5c0e369e Mon Sep 17 00:00:00 2001 From: SpookyDervish Date: Mon, 20 Jul 2026 18:47:45 +1000 Subject: [PATCH] make buttons much clearer when hovered --- client/style.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/client/style.css b/client/style.css index 1458d17..700e94b 100644 --- a/client/style.css +++ b/client/style.css @@ -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 {