This commit is contained in:
Tim Zöller 2025-12-04 18:46:20 +01:00
parent 7d07653d2a
commit 5b0648f0d0
2 changed files with 170 additions and 53 deletions

View file

@ -83,11 +83,18 @@ body {
/* Metrics display */
.metric-card {
background: linear-gradient(135deg, var(--light-color) 0%, #e0e0ff 100%);
border-radius: var(--border-radius);
padding: 1rem;
text-align: center;
border: 2px solid var(--primary-color);
background: white;
border-radius: 0.375rem;
padding: 0.75rem 1rem;
text-align: left;
border-left: 3px solid var(--primary-color);
transition: all 0.2s ease;
}
.metric-card:hover {
border-left-color: var(--secondary-color);
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
transform: translateY(-2px);
}
.metric-value {