summaryrefslogtreecommitdiff
path: root/static/css
diff options
context:
space:
mode:
authorBobby <[email protected]>2025-12-19 18:01:24 +0530
committerBobby <[email protected]>2025-12-19 18:01:24 +0530
commitb1bfec1ce2987d9fe0cc52e5ae9115977fdf8c24 (patch)
tree7080b7dc97522ffe0837a1e0b2965489d7e67664 /static/css
parent767297e28d47ee9cf3722054e41caa837f0e68d2 (diff)
downloadlain-b1bfec1ce2987d9fe0cc52e5ae9115977fdf8c24.tar.xz
lain-b1bfec1ce2987d9fe0cc52e5ae9115977fdf8c24.zip
added utils, templates, routes, types, middleware, processors and a whole lot of things for a basic login page
Diffstat (limited to 'static/css')
-rw-r--r--static/css/style.css86
1 files changed, 86 insertions, 0 deletions
diff --git a/static/css/style.css b/static/css/style.css
new file mode 100644
index 0000000..683a620
--- /dev/null
+++ b/static/css/style.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