From 06c73ef05a312d9a2585e6ce706542175f08c9b7 Mon Sep 17 00:00:00 2001 From: Poushmita Date: Thu, 21 Nov 2024 16:53:05 +0530 Subject: [PATCH] alignment of Dark Mode Button --- Css-files/login-register.css | 8 +- Html-files/login.html | 330 ++++++++++++++++++++++++++++------- Html-files/services.html | 2 +- Html-files/signup.html | 281 +++++++++++++++++++++++++++++ 4 files changed, 556 insertions(+), 65 deletions(-) diff --git a/Css-files/login-register.css b/Css-files/login-register.css index dcba9385..cb20ba2a 100644 --- a/Css-files/login-register.css +++ b/Css-files/login-register.css @@ -1,5 +1,9 @@ @import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;700&display=swap'); +*{ + box-sizing: content-box; +} + body { margin: 0; font-family: 'Noto Sans', sans-serif; @@ -18,7 +22,7 @@ body { display: flex; justify-content: center; align-items: center; - gap: 2rem; /* Add spacing between sections */ + gap: 1rem; /* Add spacing between sections */ } .left-login { @@ -29,6 +33,7 @@ body { align-items: center; flex-direction: column; position: relative; + z-index: 1000; } .home-btn { @@ -91,6 +96,7 @@ body { justify-content: center; align-items: center; animation: fadeIn 2s ease-in-out; + z-index: 1000; } @keyframes fadeIn { diff --git a/Html-files/login.html b/Html-files/login.html index 0d36877e..5f8a9ffd 100644 --- a/Html-files/login.html +++ b/Html-files/login.html @@ -24,10 +24,146 @@