added requesting option

This commit is contained in:
Ludwig Lehnert
2026-03-28 08:43:04 +01:00
parent 12e4bcddc6
commit 48bfe69d09
14 changed files with 730 additions and 5 deletions

View File

@@ -259,6 +259,35 @@ p {
color: #0c4f4a;
}
.badge {
display: inline-flex;
align-items: center;
border-radius: 999px;
border: 1px solid transparent;
padding: 0.18rem 0.5rem;
font-size: 0.76rem;
font-weight: 700;
letter-spacing: 0.02em;
}
.badge.primary {
background: #e5f5ef;
border-color: #bce6d9;
color: #0c4f4a;
}
.badge.success {
background: #e6f7ec;
border-color: #bee8ce;
color: #1c6b42;
}
.badge.danger {
background: #fee7e4;
border-color: #fbc0b8;
color: #a72d20;
}
.metric-grid {
display: grid;
gap: 0.8rem;