From 24351ded1e49d9e141154d6e94c999ed6af15e41 Mon Sep 17 00:00:00 2001 From: Arthur Lu Date: Thu, 12 Jan 2023 15:21:08 -0800 Subject: [PATCH] add grey backgroudn to disabled inputs --- css/form.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/css/form.css b/css/form.css index 838006e..54ab5cd 100644 --- a/css/form.css +++ b/css/form.css @@ -30,12 +30,20 @@ input:focus { outline: none; } +input:disabled { + background-color: #606060; +} + select { border: solid white 1px; background-color: black; color: white; } +select:disabled { + background-color: #606060; +} + button { margin-top: 0px; }