From ed74f2cffa902a3e9aeb614f8dcf65f04658a597 Mon Sep 17 00:00:00 2001 From: Bobby <30593201+luciferreeves@users.noreply.github.com> Date: Fri, 19 Dec 2025 18:52:39 +0530 Subject: error controllers, types and templates and layouts --- static/css/main.css | 86 ++++++++++++++++++++++++++++++++++++++++++++++++++++ static/css/style.css | 86 ---------------------------------------------------- 2 files changed, 86 insertions(+), 86 deletions(-) create mode 100644 static/css/main.css delete mode 100644 static/css/style.css (limited to 'static/css') diff --git a/static/css/main.css b/static/css/main.css new file mode 100644 index 0000000..683a620 --- /dev/null +++ b/static/css/main.css @@ -0,0 +1,86 @@ +* { + margin: 0; + padding: 0; + box-sizing: border-box; +} + +body { + font-family: 'Verdana', sans-serif; + background: #fff5f8; +} + +.login-page { + display: flex; + align-items: center; + justify-content: center; + min-height: 100vh; +} + +.login-container { + background: white; + padding: 2rem; + border: 2px solid #ffccee; + border-radius: 8px; + max-width: 400px; + width: 100%; +} + +.login-container h1 { + color: #663366; + text-align: center; + margin-bottom: 0.5rem; +} + +.subtitle { + text-align: center; + color: #ff99cc; + margin-bottom: 2rem; + font-style: italic; +} + +.error { + background: #ffcccc; + color: #cc0000; + padding: 0.75rem; + border-radius: 4px; + margin-bottom: 1rem; +} + +.field { + margin-bottom: 1rem; +} + +.field label { + display: block; + color: #663366; + margin-bottom: 0.25rem; +} + +.field input { + width: 100%; + padding: 0.5rem; + border: 1px solid #ffccee; + border-radius: 4px; +} + +button { + width: 100%; + padding: 0.75rem; + background: #ff99cc; + color: white; + border: none; + border-radius: 4px; + cursor: pointer; + font-size: 1rem; +} + +button:hover { + background: #ff66aa; +} + +footer { + margin-top: 2rem; + text-align: center; + font-size: 0.75rem; + color: #999; +} \ No newline at end of file diff --git a/static/css/style.css b/static/css/style.css deleted file mode 100644 index 683a620..0000000 --- a/static/css/style.css +++ /dev/null @@ -1,86 +0,0 @@ -* { - margin: 0; - padding: 0; - box-sizing: border-box; -} - -body { - font-family: 'Verdana', sans-serif; - background: #fff5f8; -} - -.login-page { - display: flex; - align-items: center; - justify-content: center; - min-height: 100vh; -} - -.login-container { - background: white; - padding: 2rem; - border: 2px solid #ffccee; - border-radius: 8px; - max-width: 400px; - width: 100%; -} - -.login-container h1 { - color: #663366; - text-align: center; - margin-bottom: 0.5rem; -} - -.subtitle { - text-align: center; - color: #ff99cc; - margin-bottom: 2rem; - font-style: italic; -} - -.error { - background: #ffcccc; - color: #cc0000; - padding: 0.75rem; - border-radius: 4px; - margin-bottom: 1rem; -} - -.field { - margin-bottom: 1rem; -} - -.field label { - display: block; - color: #663366; - margin-bottom: 0.25rem; -} - -.field input { - width: 100%; - padding: 0.5rem; - border: 1px solid #ffccee; - border-radius: 4px; -} - -button { - width: 100%; - padding: 0.75rem; - background: #ff99cc; - color: white; - border: none; - border-radius: 4px; - cursor: pointer; - font-size: 1rem; -} - -button:hover { - background: #ff66aa; -} - -footer { - margin-top: 2rem; - text-align: center; - font-size: 0.75rem; - color: #999; -} \ No newline at end of file -- cgit v1.2.3