feat: implement responsive UI layouts and collapsible control panels across application pages

This commit is contained in:
z0rayy
2026-06-11 05:28:31 +07:00
parent b027f02cf0
commit 4e73e17656
7 changed files with 435 additions and 83 deletions
+9 -1
View File
@@ -7,7 +7,7 @@
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet" />
<style>
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', sans-serif; background: #0f172a; color: #f1f5f9; display: flex; align-items: center; justify-content: center; height: 100vh; }
body { font-family: 'Inter', sans-serif; background: #0f172a; color: #f1f5f9; display: flex; align-items: center; justify-content: center; min-height: 100vh; padding: 24px; }
.login-container { background: #1e293b; padding: 40px; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.5); width: 100%; max-width: 400px; position: relative; }
.login-container h2 { margin-bottom: 24px; text-align: center; color: #3b82f6; }
.form-group { margin-bottom: 20px; }
@@ -26,6 +26,14 @@
.form-section { display: none; }
.form-section.active { display: block; }
@media (max-width: 480px) {
body { align-items: flex-start; padding: 18px 14px; }
.login-container { padding: 28px 20px; border-radius: 10px; }
.login-container h2 { font-size: 22px; margin-bottom: 20px; }
.form-group { margin-bottom: 16px; }
.form-group input, .btn { min-height: 44px; }
}
</style>
</head>
<body>