🎨 Unify design across all pages to match dashboard theme

- Updated adminlogin.css to use dark theme with Inter font
- Updated generator.css to use dark theme with Inter font
- Updated admin-dashboard.css to use dark theme with Inter font
- All pages now use consistent:
  * Dark background with radial gradients
  * Inter font family
  * Dark containers with glassmorphism effect
  * White text on dark backgrounds
  * Consistent color scheme (#00d4ff accents, #8892b0 secondary text)
  * Unified border and shadow styling
- Improved visual consistency across entire application
This commit is contained in:
2025-09-08 21:52:40 +02:00
parent ee910aecf0
commit 9ad828a6eb
3 changed files with 112 additions and 52 deletions

View File

@@ -1,31 +1,39 @@
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html, body {
html,
body {
height: 100%;
margin: 0;
padding: 0;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
font-family: 'Inter', sans-serif;
background: #0a0a0f;
color: #ffffff;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 20px;
background-image:
radial-gradient(circle at 20% 80%, #1a1a2e 0%, transparent 50%),
radial-gradient(circle at 80% 20%, #16213e 0%, transparent 50%),
radial-gradient(circle at 40% 40%, #0f3460 0%, transparent 50%);
}
.login-container {
background: rgba(255, 255, 255, 0.95);
background: rgba(26, 26, 46, 0.95);
backdrop-filter: blur(10px);
border-radius: 20px;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
padding: 40px;
max-width: 400px;
width: 100%;
@@ -35,6 +43,7 @@ body {
display: flex;
flex-direction: column;
justify-content: center;
border: 1px solid rgba(255, 255, 255, 0.1);
}
.login-container::before {
@@ -50,14 +59,22 @@ body {
}
@keyframes gradientShift {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
h1 {
text-align: center;
color: #333;
color: #ffffff;
margin-bottom: 30px;
font-size: 2em;
font-weight: 300;
@@ -171,7 +188,7 @@ input:hover {
display: inline-block;
width: 20px;
height: 20px;
border: 3px solid rgba(255,255,255,.3);
border: 3px solid rgba(255, 255, 255, .3);
border-radius: 50%;
border-top-color: #fff;
animation: spin 1s ease-in-out infinite;
@@ -179,7 +196,9 @@ input:hover {
}
@keyframes spin {
to { transform: rotate(360deg); }
to {
transform: rotate(360deg);
}
}
.info-text {
@@ -195,7 +214,7 @@ input:hover {
padding: 30px 20px;
margin: 10px;
}
h1 {
font-size: 1.6em;
}
@@ -266,10 +285,10 @@ input:hover {
text-align: center;
gap: 1.5rem;
}
.footer-links {
flex-wrap: wrap;
justify-content: center;
gap: 1.5rem;
}
}
}