diff --git a/backend/workflows/templates/workflows/home.html b/backend/workflows/templates/workflows/home.html index ccac5c6..dc0715b 100644 --- a/backend/workflows/templates/workflows/home.html +++ b/backend/workflows/templates/workflows/home.html @@ -36,7 +36,7 @@ } .shell { - width: min(1220px, 100%); + width: min(1380px, 100%); margin: 0 auto; background: var(--panel); border: 1px solid var(--line); @@ -71,26 +71,74 @@ } .hero { - padding: 22px; + padding: 24px; border-bottom: 1px solid var(--line); background: - linear-gradient(135deg, rgba(0, 0, 120, 0.06), rgba(0, 0, 120, 0) 48%), - linear-gradient(180deg, #ffffff, #f8fbff); + linear-gradient(135deg, rgba(0, 0, 120, 0.08), rgba(0, 0, 120, 0) 44%), + linear-gradient(180deg, rgba(255,255,255,0.96), rgba(246,250,255,0.92)); + } + + .hero-grid { + display: grid; + grid-template-columns: 1fr; + gap: 18px; + align-items: stretch; + } + + .hero-card, + .hero-sidecard { + border: 1px solid rgba(217, 227, 238, 0.94); + background: rgba(255,255,255,0.92); + border-radius: 22px; + box-shadow: inset 0 1px 0 rgba(255,255,255,0.92); + } + + .hero-card { + padding: 24px; + background: + radial-gradient(100% 140% at 10% 10%, rgba(31,79,214,0.12), rgba(31,79,214,0)), + linear-gradient(180deg, rgba(255,255,255,0.98), rgba(247,250,255,0.95)); + } + + .hero-sidecard { + padding: 18px; + display: flex; + flex-direction: column; + justify-content: space-between; + background: + radial-gradient(120% 120% at 100% 0%, rgba(163,32,32,0.10), rgba(163,32,32,0)), + linear-gradient(180deg, rgba(255,255,255,0.98), rgba(253,247,247,0.96)); + } + + .eyebrow { + display: inline-flex; + align-items: center; + gap: 8px; + padding: 7px 12px; + border-radius: 999px; + border: 1px solid rgba(0,0,120,0.12); + background: rgba(0,0,120,0.05); + color: var(--brand-blue); + font-size: 12px; + font-weight: 700; + letter-spacing: 0.03em; + text-transform: uppercase; } .hero h1 { - margin: 0; - font-size: 34px; - line-height: 1.05; - letter-spacing: -0.02em; + margin: 14px 0 8px; + font-size: clamp(30px, 5vw, 46px); + line-height: 1; + letter-spacing: -0.04em; color: var(--brand-blue); } .hero p { - margin: 8px 0 0; + margin: 0; color: var(--muted); - max-width: 820px; + max-width: 720px; font-size: 15px; + line-height: 1.55; } .status-row { @@ -105,7 +153,7 @@ border: 1px solid var(--line); background: #fff; color: #30445f; - padding: 6px 10px; + padding: 8px 12px; font-size: 12px; font-weight: 700; } @@ -122,6 +170,48 @@ border-color: #f7dfbb; } + .hero-sidecard h2 { + margin: 0; + font-size: 18px; + color: #1a3359; + } + + .hero-sidecard p { + margin: 8px 0 0; + color: var(--muted); + font-size: 13px; + line-height: 1.5; + } + + .hero-metrics { + margin-top: 18px; + display: grid; + gap: 10px; + } + + .hero-metric { + padding: 12px 14px; + border-radius: 16px; + background: rgba(255,255,255,0.86); + border: 1px solid rgba(217, 227, 238, 0.95); + } + + .hero-metric-label { + font-size: 12px; + color: var(--muted); + text-transform: uppercase; + letter-spacing: 0.04em; + font-weight: 700; + } + + .hero-metric-value { + margin-top: 5px; + font-size: 26px; + font-weight: 800; + color: var(--brand-blue); + letter-spacing: -0.03em; + } + .main { padding: 20px 22px 24px; } @@ -155,63 +245,100 @@ } .app-card { - border: 1px solid var(--line); - border-radius: 14px; - background: #fff; - padding: 14px; - min-height: 200px; + position: relative; + overflow: hidden; + border: 1px solid rgba(217, 227, 238, 0.94); + border-radius: 22px; + background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(247,250,255,0.95)); + padding: 18px; + min-height: 222px; display: flex; flex-direction: column; justify-content: space-between; - box-shadow: inset 0 1px 0 #fff; + box-shadow: inset 0 1px 0 rgba(255,255,255,0.92); + } + + .app-card::before { + content: ""; + position: absolute; + inset: auto -24px -38px auto; + width: 118px; + height: 118px; + border-radius: 50%; + background: rgba(31, 79, 214, 0.08); } .app-card.primary { - background: linear-gradient(180deg, #ffffff, #f5f9ff); + background: linear-gradient(180deg, rgba(255,255,255,0.99), rgba(242,247,255,0.97)); } .app-card.red { - background: linear-gradient(180deg, #ffffff, #fff6f6); + background: linear-gradient(180deg, rgba(255,255,255,0.99), rgba(255,245,245,0.97)); + } + + .app-card.red::before { background: rgba(163, 32, 32, 0.08); } + + .app-card .top-line { + display: flex; + justify-content: space-between; + align-items: flex-start; + gap: 12px; + margin-bottom: 14px; } .accent { - width: 56px; - height: 4px; - border-radius: 999px; - background: var(--brand-blue); - margin-bottom: 10px; + width: 38px; + height: 38px; + border-radius: 14px; + background: rgba(0, 0, 120, 0.06); + color: var(--brand-blue); + display: inline-flex; + align-items: center; + justify-content: center; + font-size: 12px; + font-weight: 800; + letter-spacing: 0.04em; + margin-bottom: 0; } - .accent.red { background: var(--brand-red); } + .accent.red { + background: rgba(163, 32, 32, 0.08); + color: var(--brand-red); + } .app-title { margin: 0; - font-size: 22px; - line-height: 1.1; + font-size: 24px; + line-height: 1.05; + letter-spacing: -0.03em; + color: var(--ink); } .app-text { - margin: 8px 0 10px; + margin: 10px 0 12px; color: #5a6a81; font-size: 14px; - line-height: 1.45; + line-height: 1.5; + max-width: 34ch; } .tag-row { display: flex; - gap: 6px; + gap: 8px; flex-wrap: wrap; margin-bottom: 12px; } .tag { - border: 1px solid #d3deed; - border-radius: 999px; - padding: 3px 8px; - background: #f6f9ff; + border: 1px solid rgba(217, 227, 238, 0.96); + border-radius: 14px; + padding: 7px 10px; + background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,251,255,0.96)); color: #486183; font-size: 11px; - font-weight: 700; + font-weight: 800; + letter-spacing: 0.03em; + text-transform: uppercase; } .card-actions { @@ -227,23 +354,39 @@ } .admin-card { - border: 1px solid var(--line); - border-radius: 12px; - padding: 11px; - background: linear-gradient(180deg, #ffffff, #f7faff); + position: relative; + overflow: hidden; + border: 1px solid rgba(217, 227, 238, 0.94); + border-radius: 18px; + padding: 14px; + background: linear-gradient(180deg, rgba(255,255,255,0.99), rgba(247,250,255,0.96)); + box-shadow: inset 0 1px 0 rgba(255,255,255,0.92); + } + + .admin-card::before { + content: ""; + position: absolute; + inset: auto -18px -30px auto; + width: 84px; + height: 84px; + border-radius: 50%; + background: rgba(31, 79, 214, 0.06); } .admin-card h3 { - margin: 0 0 5px; - font-size: 14px; + margin: 0 0 7px; + font-size: 15px; color: #18345f; + letter-spacing: -0.01em; } .admin-card p { - margin: 0 0 9px; + margin: 0 0 11px; font-size: 12px; color: #607088; - min-height: 30px; + min-height: 34px; + line-height: 1.45; + max-width: 26ch; } .msg { @@ -271,6 +414,7 @@ } @media (max-width: 1080px) { + .hero-grid { grid-template-columns: 1fr; } .apps-grid { grid-template-columns: 1fr 1fr; } .admin-grid { grid-template-columns: 1fr 1fr; } } @@ -297,17 +441,22 @@
Zentrale Arbeitsfläche für Anfragen, PDF-Generierung, E-Mail-Workflows und Ablage in Nextcloud.
-Zentrale Arbeitsfläche für Anfragen, PDF-Generierung, E-Mail-Workflows und Ablage in Nextcloud.
+Neue Mitarbeitende erfassen, PDF mit Briefkopf erstellen, Benachrichtigungen senden und in Nextcloud ablegen.
Mitarbeitende suchen, Daten vorbefüllen, Offboarding-Dokumente erzeugen und Rückgabe-Prozess starten.
Status, Suchfunktion, PDF-Links und Verlauf aller Onboarding-/Offboarding-Anfragen.