From 08e75a79ba01b728908c6a8c03b804a6ee075763 Mon Sep 17 00:00:00 2001 From: sweatshirt0 Date: Mon, 20 Feb 2023 17:23:55 -0500 Subject: [PATCH] landing page form signup button css patch and minor nav bar css patch; completed form css patch. --- styles/styles.css | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/styles/styles.css b/styles/styles.css index 5d69e14..74179d2 100644 --- a/styles/styles.css +++ b/styles/styles.css @@ -13,6 +13,7 @@ body { margin-left: 15px; margin-right: 15px; font-size: 1rem; + font-weight: bold; } .nav-wrapper a:hover { @@ -56,7 +57,7 @@ body { } .loggin-submit { - position: relative; + position: relative; display: flex; margin-left: auto; margin-right: auto; @@ -69,3 +70,19 @@ body { color: #fff; font-weight: bold; } + +.signup-button { + position: relative; + display: flex; + margin-left: auto; + margin-right: auto; + justify-content: center; + width: 90%; + border: 1px solid lightgrey; + border-radius: 5px; + padding: 15px; + font-size: 1.1rem; + background-color: #4af626; + color: #111; + font-weight: bold; +}