From 2a10f639a9270a4d463bcbd3f90b794d92d686fb Mon Sep 17 00:00:00 2001 From: sweatshirt0 Date: Sat, 18 Feb 2023 13:26:58 -0500 Subject: [PATCH] form creation and css styling path 1. --- pages/landing.html | 8 ++++ styles/styles.css | 104 +++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 112 insertions(+) diff --git a/pages/landing.html b/pages/landing.html index 21b03e5..c71e861 100644 --- a/pages/landing.html +++ b/pages/landing.html @@ -18,6 +18,14 @@

Your favorite content creator's paradise

+
+ +
diff --git a/styles/styles.css b/styles/styles.css index e69de29..0c56af8 100644 --- a/styles/styles.css +++ b/styles/styles.css @@ -0,0 +1,104 @@ +body { + font-family: monospace; +} + +.nav-wrapper { + background-color: blue; + padding: 15px; +} + +.nav-wrapper a { + color: #fff; + margin-left: 15px; + margin-right: 15px; + text-decoration: none; + font-size: 1rem; +} + +.nav-wrapper a:hover { + text-decoration: underline; +} + +.title-wrapper { + position: relative; + top: 150px; + left: 40px; + font-size: 1rem; +} + +.subtitle-wrapper { + position: relative; + top: 155px; + left: 40px; + font-size: 0.95rem; +} + +.login-form-wrapper { + position: relative; + left: 50%; + width: 420px; + border: 1px solid lightgrey; + border-radius: 5px; + padding-top: 15px; + padding-bottom: 15px; + padding-left: 5px; + padding-right: 5px; + box-shadow: 8px 8px 8px lightgrey; +} + +.username { + /*position: relative;*/ + width: 85%; + display: flex; + margin-left: auto; + margin-right: auto; + padding: 12px; + border: 1px solid lightgrey; + border-radius: 5px; + font-size: 1.1rem; +} + +.password { + width: 85%; + display: flex; + margin-left: auto; + margin-right: auto; + padding: 12px; + border: 1px solid lightgrey; + border-radius: 5px; + font-size: 1.1rem; +} + +.submit { + width: 85%; + display: flex; + margin-left: auto; + margin-right: auto; + padding: 15px; + border: 1px solid lightgrey; + border-radius: 5px; + font-size: 1.1rem; + font-weight: bold; + background-color: blue; + color: #fff; +} + +.registration-button { + width: 85%; + display: flex; + margin-left: auto; + margin-right: auto; + padding: 15px; + border: 1px solid lightgrey; + border-radius: 5px; + background-color: #4af626; +} + +.sign-up-link { + color: black; + text-decoration: none; + font-size: 1.1rem; + font-weight: bold; + margin-left: auto; + margin-right: auto; +}