From 8f145cafc21abe526bc3661c6b8634b246031579 Mon Sep 17 00:00:00 2001 From: Matthew Patrick Date: Sun, 26 Sep 2021 17:08:24 +0700 Subject: [PATCH] register.html - Changed Input Boxes to have a dark background and white text --- register.html | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/register.html b/register.html index 8e89ed4..92b0de0 100644 --- a/register.html +++ b/register.html @@ -23,6 +23,26 @@ background-color: #1b1c1e; } + .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; + } + .nav-color { background-color: #212226; }