From 4bd48501d538ba7750e5ca8ebb88c44320e55336 Mon Sep 17 00:00:00 2001 From: sapnilbiswas Date: Tue, 13 Jan 2026 13:28:01 +0530 Subject: [PATCH 1/5] Update Center& Ade --- index.html | 17 ++++++++++---- style.css | 69 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 81 insertions(+), 5 deletions(-) diff --git a/index.html b/index.html index 23206b2..df4695a 100644 --- a/index.html +++ b/index.html @@ -1,20 +1,27 @@ + - Document + Login Form + + -
+ -
+ -
+ + + + - + + \ No newline at end of file diff --git a/style.css b/style.css index e69de29..38f7ff4 100644 --- a/style.css +++ b/style.css @@ -0,0 +1,69 @@ +/* Reset and Base Styles */ +* { + box-sizing: border-box; + margin: 0; + padding: 0; +} + +body { + font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; + background-color: #f0f2f5; + display: flex; + justify-content: center; + align-items: center; + min-height: 100vh; +} + +/* Form Container */ +form { + background-color: #ffffff; + padding: 2rem; + border-radius: 8px; + box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); + width: 100%; + max-width: 400px; + display: flex; + flex-direction: column; + gap: 1rem; +} + +/* Form Elements */ +label { + font-weight: 600; + color: #333; + margin-bottom: 0.25rem; +} + +input[type="text"], +input[type="password"], +input[type="number"] { + padding: 0.75rem; + border: 1px solid #ccc; + border-radius: 4px; + font-size: 1rem; + transition: border-color 0.2s; +} + +input[type="text"]:focus, +input[type="password"]:focus, +input[type="number"]:focus { + border-color: #007bff; + outline: none; +} + +button[type="submit"] { + background-color: #007bff; + color: white; + padding: 0.75rem; + border: none; + border-radius: 4px; + font-size: 1rem; + font-weight: 600; + cursor: pointer; + transition: background-color 0.2s; + margin-top: 1rem; +} + +button[type="submit"]:hover { + background-color: #0056b3; +} \ No newline at end of file From 07b3f921351b2cd5c816680d9ee45b4ded310e6a Mon Sep 17 00:00:00 2001 From: sapnilbiswas Date: Tue, 13 Jan 2026 13:29:12 +0530 Subject: [PATCH 2/5] Update --- index.html | 4 ---- 1 file changed, 4 deletions(-) diff --git a/index.html b/index.html index df4695a..94f7671 100644 --- a/index.html +++ b/index.html @@ -9,17 +9,13 @@ - - - - From 122f73daa670849626c99051fed70334029ed51a Mon Sep 17 00:00:00 2001 From: sapnilbiswas Date: Tue, 13 Jan 2026 13:34:24 +0530 Subject: [PATCH 3/5] Refined Update --- .vscode/settings.json | 3 +++ style.css | 10 ---------- 2 files changed, 3 insertions(+), 10 deletions(-) create mode 100644 .vscode/settings.json diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..6f3a291 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "liveServer.settings.port": 5501 +} \ No newline at end of file diff --git a/style.css b/style.css index 38f7ff4..6091da5 100644 --- a/style.css +++ b/style.css @@ -1,10 +1,8 @@ -/* Reset and Base Styles */ * { box-sizing: border-box; margin: 0; padding: 0; } - body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; background-color: #f0f2f5; @@ -13,8 +11,6 @@ body { align-items: center; min-height: 100vh; } - -/* Form Container */ form { background-color: #ffffff; padding: 2rem; @@ -26,14 +22,11 @@ form { flex-direction: column; gap: 1rem; } - -/* Form Elements */ label { font-weight: 600; color: #333; margin-bottom: 0.25rem; } - input[type="text"], input[type="password"], input[type="number"] { @@ -43,14 +36,12 @@ input[type="number"] { font-size: 1rem; transition: border-color 0.2s; } - input[type="text"]:focus, input[type="password"]:focus, input[type="number"]:focus { border-color: #007bff; outline: none; } - button[type="submit"] { background-color: #007bff; color: white; @@ -63,7 +54,6 @@ button[type="submit"] { transition: background-color 0.2s; margin-top: 1rem; } - button[type="submit"]:hover { background-color: #0056b3; } \ No newline at end of file From 9188d7e6125de13528d1860c665b9caffb2e1da2 Mon Sep 17 00:00:00 2001 From: sapnilbiswas Date: Tue, 13 Jan 2026 13:38:19 +0530 Subject: [PATCH 4/5] Update --- .vscode/settings.json | 3 --- 1 file changed, 3 deletions(-) delete mode 100644 .vscode/settings.json diff --git a/.vscode/settings.json b/.vscode/settings.json deleted file mode 100644 index 6f3a291..0000000 --- a/.vscode/settings.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "liveServer.settings.port": 5501 -} \ No newline at end of file From 55627964d91f01a7e4afe6ef627f01c9c74e20a5 Mon Sep 17 00:00:00 2001 From: sapnilbiswas Date: Tue, 13 Jan 2026 19:33:18 +0530 Subject: [PATCH 5/5] Updated favicon --- index.html | 1 + 1 file changed, 1 insertion(+) diff --git a/index.html b/index.html index 94f7671..be3fc86 100644 --- a/index.html +++ b/index.html @@ -5,6 +5,7 @@ Login Form +