From a6b1c0f6e8e0b49566b53141832fcc7b0d4699b8 Mon Sep 17 00:00:00 2001 From: Mike Smith <89040888+smiggiddy@users.noreply.github.com> Date: Mon, 6 Nov 2023 10:42:36 -0500 Subject: [PATCH] feat: remove placeholders/add text colors --- signup_form/css/style.css | 4 +++- signup_form/index.html | 4 ++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/signup_form/css/style.css b/signup_form/css/style.css index 13d358c..1887e41 100644 --- a/signup_form/css/style.css +++ b/signup_form/css/style.css @@ -1,6 +1,7 @@ :root { --main-bg: #C4DFDF; --light-bg: #F8F6F4; + --text-color: rgb(22, 72, 99); } @@ -19,7 +20,6 @@ } */ - .form { width: 60vw; } @@ -102,6 +102,7 @@ .logo h1 { font-weight: 900; font-size: 3rem; + color: var(--light-bg); } } @@ -110,4 +111,5 @@ body { padding: 0; font-family: 'Montserrat', sans-serif; font-size: 16px; + color: var(--text-color); } diff --git a/signup_form/index.html b/signup_form/index.html index 6cdfbb4..3ef43b0 100644 --- a/signup_form/index.html +++ b/signup_form/index.html @@ -24,11 +24,11 @@