🎨 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,3 +1,5 @@
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
* {
margin: 0;
padding: 0;
@@ -5,23 +7,28 @@
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
font-family: 'Inter', sans-serif;
background: #0a0a0f;
color: #ffffff;
min-height: 100vh;
color: #333;
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%);
}
.header {
background: rgba(255, 255, 255, 0.95);
background: rgba(26, 26, 46, 0.95);
padding: 20px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
display: flex;
justify-content: space-between;
align-items: center;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.header h1 {
color: #1e3c72;
color: #ffffff;
font-size: 2em;
}
@@ -104,11 +111,12 @@ body {
}
.card {
background: white;
background: rgba(26, 26, 46, 0.95);
border-radius: 10px;
padding: 20px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
transition: transform 0.3s ease;
border: 1px solid rgba(255, 255, 255, 0.1);
}
.card:hover {
@@ -135,32 +143,34 @@ body {
}
.stat-card {
background: white;
background: rgba(26, 26, 46, 0.95);
padding: 20px;
border-radius: 10px;
text-align: center;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
border: 1px solid rgba(255, 255, 255, 0.1);
}
.stat-number {
font-size: 2.5em;
font-weight: bold;
color: #1e3c72;
color: #00d4ff;
margin-bottom: 5px;
}
.stat-label {
color: #666;
color: #8892b0;
font-size: 0.9em;
}
.data-table {
width: 100%;
border-collapse: collapse;
background: white;
background: rgba(26, 26, 46, 0.95);
border-radius: 10px;
overflow: hidden;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
border: 1px solid rgba(255, 255, 255, 0.1);
}
.data-table th,