From ca4a9aa92d651eb13b948e82fb1f029f1edb3e2d Mon Sep 17 00:00:00 2001 From: Carter Myers <206+cmyers@users.noreply.github.mieweb.com> Date: Mon, 20 Oct 2025 14:33:52 -0700 Subject: [PATCH] Add styles for sign up button and section Added CSS rules for #signUpBtn and .signup-section to style the sign up button and provide spacing for the sign up section. Includes hover effects and button appearance enhancements. --- create-a-container/public/style.css | 41 ++++++++++++++++++++++++++++- 1 file changed, 40 insertions(+), 1 deletion(-) diff --git a/create-a-container/public/style.css b/create-a-container/public/style.css index 3b637655..a75b954b 100644 --- a/create-a-container/public/style.css +++ b/create-a-container/public/style.css @@ -191,4 +191,43 @@ select:focus { .navbar .logout-button:hover { background-color: #c0392b; -} \ No newline at end of file +} + +#signUpBtn { + width: 100%; + padding: 0.8rem; + background-color: #3498db; + border: none; + border-radius: 6px; + color: white; + font-weight: bold; + cursor: pointer; + font-size: 1rem; + transition: background-color 0.3s; +} + +#signUpBtn:hover { + background-color: #2980b9; +} + +#signUpBtn { + width: 100%; + padding: 0.8rem; + background-color: #3498db; + border: none; + border-radius: 6px; + color: white; + font-weight: bold; + cursor: pointer; + font-size: 1rem; + transition: background-color 0.3s; +} + +#signUpBtn:hover { + background-color: #2980b9; +} + +.signup-section { + margin-top: 1.5rem; +} +