From dc0d5ca437c81d030bb8ebf1009315b54ce67e2a Mon Sep 17 00:00:00 2001 From: tektaxi <45189395+tektaxi@users.noreply.github.com> Date: Thu, 26 Nov 2020 20:33:48 -0500 Subject: [PATCH] updated css color variables --- public/css/home.css | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/public/css/home.css b/public/css/home.css index e985a472..84820eb9 100644 --- a/public/css/home.css +++ b/public/css/home.css @@ -48,7 +48,10 @@ noscript p { --gray2: #666666; --gray3: #333; + --transparent-gray: rgba(255, 255, 255, 0.3); + --black: #000000; + --transparent-black: rgba(0, 0, 0, 0.6); --blue: #2196F3; @@ -311,7 +314,7 @@ button { /* Style the tab content */ .tabcontent { - background: rgba(255, 255, 255, 0.3); + background: var(--transparent-gray); display: none; padding: 6px 12px; border: 1px solid var(--gray);