From 391ad330eb3df739a04bbb9045708438540cd61c Mon Sep 17 00:00:00 2001 From: Laiba-Akram Date: Wed, 19 Oct 2022 14:27:41 +0500 Subject: [PATCH] Change and Add Form UI Design --- 7-bank-project/solution/index.html | 10 +++++----- 7-bank-project/solution/styles.css | 15 +++++++++++++-- 2 files changed, 18 insertions(+), 7 deletions(-) diff --git a/7-bank-project/solution/index.html b/7-bank-project/solution/index.html index 9b97d2e9..7d8dbea7 100644 --- a/7-bank-project/solution/index.html +++ b/7-bank-project/solution/index.html @@ -24,7 +24,7 @@

Login

- +
@@ -32,13 +32,13 @@

Register

- + - + - + - +
diff --git a/7-bank-project/solution/styles.css b/7-bank-project/solution/styles.css index 38c760dd..148b6f4d 100644 --- a/7-bank-project/solution/styles.css +++ b/7-bank-project/solution/styles.css @@ -143,7 +143,11 @@ button:focus { } .login-content { - background-color: var(--background); + background: rgba(255, 255, 255, 0.05); + border-radius: 15px; + box-shadow: 0 15px 35px rgba(0,0,0,0.2); + backdrop-filter: blur(10px); + color: var(--primary); padding: var(--space-sm); } @@ -158,7 +162,7 @@ button:focus { .login-separator > span { position: relative; top: -0.5em; - background-color: var(--background); + color: black; padding: var(--space-sm); } @@ -349,3 +353,10 @@ button:focus { align-self: center; } } +.form-control { + border: none; + background: transparent; + border-bottom: 1px solid black; + color: black; + + } \ No newline at end of file