From 704059519296c9cb6d2b5d3380be77cbace51727 Mon Sep 17 00:00:00 2001 From: Alonso Ninalaya Date: Tue, 23 Jun 2020 14:17:42 -0400 Subject: [PATCH] I have added changes --- alonso'sWork.html | 71 ++++++++++++++++++++++++++++++++++++++ css/registration-style.css | 48 ++++++++++++++++++++++++++ css/style.css | 1 - login-interface.html | 20 +++++++++++ 4 files changed, 139 insertions(+), 1 deletion(-) create mode 100644 alonso'sWork.html create mode 100644 css/registration-style.css create mode 100644 login-interface.html diff --git a/alonso'sWork.html b/alonso'sWork.html new file mode 100644 index 0000000..48ca028 --- /dev/null +++ b/alonso'sWork.html @@ -0,0 +1,71 @@ + + + + + Box Model + + +

Box Model Visual

+
+
+ Inner DIV +
+ +
+ Inner DIV2 +
+
+ +
+
+ Inner DIV +
+ +
+ Inner DIV2 +
+
+ + \ No newline at end of file diff --git a/css/registration-style.css b/css/registration-style.css new file mode 100644 index 0000000..412261e --- /dev/null +++ b/css/registration-style.css @@ -0,0 +1,48 @@ +@import url(https://fonts.googleapis.com/css?family=Montserrat); + +body { + background-color: #9CCC65; + font-family: montserrat, arial, verdana; +} + +.registrationCard { + background: white; + border: 0 none; + border-radius: 3px; + box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4); + padding: 20px 30px; + box-sizing: border-box; + width: 20%; + position: relative; + margin-top: 16%; + margin-left: 40%; +} + +#forgotPasswordLink { + margin-left: 5rem; + color: orange; + cursor: pointer; +} + +#username, #password, #loginButton { + padding: 15px; + border: 1px solid #ccc; + border-radius: 3px; + margin-bottom: 10px; + width: 100%; + box-sizing: border-box; + font-family: montserrat; + color: #2C3E50; + font-size: 13px; +} + +#loginButton { + cursor: pointer; + background-color: #81D4FA; +} + +#icon { + position: relative; + font-size: 100px; + left: 40%; +} diff --git a/css/style.css b/css/style.css index d17d83a..b905bd0 100644 --- a/css/style.css +++ b/css/style.css @@ -2,7 +2,6 @@ body { background-color: navy; } - object { height: 100vh; width: 100vh; diff --git a/login-interface.html b/login-interface.html new file mode 100644 index 0000000..f2be6fd --- /dev/null +++ b/login-interface.html @@ -0,0 +1,20 @@ + + + + + + + + + + + +
+ + + + + Forgot Password? +
+ + \ No newline at end of file