2026-05-19 14:36:03 +02:00
|
|
|
/* Lakehouse Dashboard - Colorful Palantir-style Theme */
|
2026-05-19 13:03:34 +02:00
|
|
|
:root {
|
|
|
|
|
--background-color: #0a0e1a;
|
|
|
|
|
--card-background: #111827;
|
|
|
|
|
--card-hover: #1f2937;
|
|
|
|
|
--text-primary: #f9fafb;
|
|
|
|
|
--text-secondary: #9ca3af;
|
|
|
|
|
--accent-blue: #3b82f6;
|
|
|
|
|
--accent-purple: #8b5cf6;
|
|
|
|
|
--accent-pink: #ec4899;
|
|
|
|
|
--accent-green: #10b981;
|
|
|
|
|
--accent-orange: #f59e0b;
|
|
|
|
|
--accent-cyan: #06b6d4;
|
2026-05-19 13:47:54 +02:00
|
|
|
--accent-red: #ef4444;
|
2026-05-19 14:36:03 +02:00
|
|
|
--accent-yellow: #fbbf24;
|
2026-05-19 13:03:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
body {
|
|
|
|
|
background-color: var(--background-color);
|
|
|
|
|
color: var(--text-primary);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.service-card {
|
|
|
|
|
background: linear-gradient(135deg, var(--card-background) 0%, #1a2332 100%);
|
2026-05-19 14:36:03 +02:00
|
|
|
border: 1px solid rgba(59, 130, 246, 0.3);
|
2026-05-19 13:03:34 +02:00
|
|
|
transition: all 0.3s ease;
|
2026-05-19 13:47:54 +02:00
|
|
|
border-radius: 12px;
|
2026-05-19 14:12:01 +02:00
|
|
|
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
|
2026-05-19 13:03:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.service-card:hover {
|
|
|
|
|
background: linear-gradient(135deg, var(--card-hover) 0%, #2d3748 100%);
|
|
|
|
|
border-color: var(--accent-blue);
|
2026-05-19 14:12:01 +02:00
|
|
|
transform: translateY(-4px);
|
2026-05-19 14:36:03 +02:00
|
|
|
box-shadow: 0 20px 40px rgba(59, 130, 246, 0.5);
|
2026-05-19 13:03:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.group-header {
|
2026-05-19 13:47:54 +02:00
|
|
|
background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple), var(--accent-pink));
|
2026-05-19 13:03:34 +02:00
|
|
|
-webkit-background-clip: text;
|
|
|
|
|
-webkit-text-fill-color: transparent;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
text-transform: uppercase;
|
2026-05-19 14:12:01 +02:00
|
|
|
letter-spacing: 2px;
|
|
|
|
|
font-size: 1.3em;
|
|
|
|
|
margin-bottom: 20px;
|
|
|
|
|
padding-bottom: 10px;
|
|
|
|
|
border-bottom: 2px solid rgba(59, 130, 246, 0.3);
|
2026-05-19 13:03:34 +02:00
|
|
|
}
|
|
|
|
|
|
2026-05-19 14:36:03 +02:00
|
|
|
/* Widget status colors */
|
|
|
|
|
.widget-status-up {
|
|
|
|
|
color: var(--accent-green) !important;
|
2026-05-19 13:47:54 +02:00
|
|
|
}
|
|
|
|
|
|
2026-05-19 14:36:03 +02:00
|
|
|
.widget-status-down {
|
|
|
|
|
color: var(--accent-red) !important;
|
2026-05-19 14:12:01 +02:00
|
|
|
}
|
|
|
|
|
|
2026-05-19 14:36:03 +02:00
|
|
|
.widget-status-unknown {
|
|
|
|
|
color: var(--accent-orange) !important;
|
2026-05-19 14:12:01 +02:00
|
|
|
}
|
|
|
|
|
|
2026-05-19 14:36:03 +02:00
|
|
|
/* Animated background for specific groups */
|
|
|
|
|
[data-group*="Data Pipeline"] .group-header {
|
|
|
|
|
background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #ffe66d);
|
|
|
|
|
-webkit-background-clip: text;
|
|
|
|
|
-webkit-text-fill-color: transparent;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[data-group*"Source Systems"] .group-header {
|
|
|
|
|
background: linear-gradient(90deg, #f38181, #aa96da, #fcbad3);
|
|
|
|
|
-webkit-background-clip: text;
|
|
|
|
|
-webkit-text-fill-color: transparent;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[data-group*"Analytics"] .group-header {
|
|
|
|
|
background: linear-gradient(90deg, #6c5ce7, #00cec9, #e84393);
|
|
|
|
|
-webkit-background-clip: text;
|
|
|
|
|
-webkit-text-fill-color: transparent;
|
2026-05-19 13:47:54 +02:00
|
|
|
}
|
|
|
|
|
|
2026-05-19 14:36:03 +02:00
|
|
|
[data-group*"Data Engineering"] .group-header {
|
|
|
|
|
background: linear-gradient(90deg, #8b5cf6, #ec4899, #10b981);
|
|
|
|
|
-webkit-background-clip: text;
|
|
|
|
|
-webkit-text-fill-color: transparent;
|
2026-05-19 13:47:54 +02:00
|
|
|
}
|
|
|
|
|
|
2026-05-19 14:12:01 +02:00
|
|
|
/* Smooth scrolling */
|
|
|
|
|
html {
|
|
|
|
|
scroll-behavior: smooth;
|
2026-05-19 13:47:54 +02:00
|
|
|
}
|
|
|
|
|
|
2026-05-19 14:12:01 +02:00
|
|
|
/* Custom scrollbar */
|
|
|
|
|
::-webkit-scrollbar {
|
|
|
|
|
width: 10px;
|
2026-05-19 13:47:54 +02:00
|
|
|
}
|
|
|
|
|
|
2026-05-19 14:12:01 +02:00
|
|
|
::-webkit-scrollbar-track {
|
|
|
|
|
background: var(--background-color);
|
2026-05-19 13:47:54 +02:00
|
|
|
}
|
|
|
|
|
|
2026-05-19 14:12:01 +02:00
|
|
|
::-webkit-scrollbar-thumb {
|
|
|
|
|
background: var(--accent-blue);
|
|
|
|
|
border-radius: 5px;
|
2026-05-19 13:47:54 +02:00
|
|
|
}
|
|
|
|
|
|
2026-05-19 14:12:01 +02:00
|
|
|
::-webkit-scrollbar-thumb:hover {
|
|
|
|
|
background: var(--accent-purple);
|
2026-05-19 13:47:54 +02:00
|
|
|
}
|
2026-05-19 14:36:03 +02:00
|
|
|
|
|
|
|
|
/* Icon styling */
|
|
|
|
|
svg {
|
|
|
|
|
filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.5));
|
|
|
|
|
}
|