From 1c88fdb956d91fa20dac673b9d79ec3400ec2f02 Mon Sep 17 00:00:00 2001 From: Matthew Patrick Date: Sun, 26 Sep 2021 17:09:27 +0700 Subject: [PATCH] login.html - Changed Input Boxes to have a dark background and white text --- login.html | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/login.html b/login.html index 9f0967c..06176ce 100644 --- a/login.html +++ b/login.html @@ -30,6 +30,26 @@ border-bottom-right-radius: 20px; } + .input-group-text { + background-color: #212226; + color: white; + } + + .form-control { + background-color: #212226; + color: white; + } + + .form-control:valid { + background-color: #212226; + color: white; + } + + .form-control:invalid { + background-color: #2f0001; + color: white; + } + button[type="submit"] { margin-bottom: 4%; }