From 0b460a733b12c5c46f5d32cef56fb730c1bea12c Mon Sep 17 00:00:00 2001 From: Admin9705 Date: Sun, 24 Aug 2025 00:19:04 -0400 Subject: [PATCH] update --- frontend/static/css/style.css | 76 +++++++++++++++++++++++++++++++++++ 1 file changed, 76 insertions(+) diff --git a/frontend/static/css/style.css b/frontend/static/css/style.css index f93d0e38..b64ac659 100644 --- a/frontend/static/css/style.css +++ b/frontend/static/css/style.css @@ -1778,4 +1778,80 @@ label .info-icon ~ text { padding: 15px; margin-bottom: 15px; border: 1px solid var(--border-color, #3c3c3c); +}/ +* Prowlarr Statistics Styling */ +.statistics-content { + display: grid; + grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); + gap: 12px; + padding: 15px; +} + +.stat-card { + background: var(--bg-tertiary); + border-radius: 8px; + padding: 12px; + text-align: center; + border: 1px solid var(--border-color); + transition: all 0.2s ease; +} + +.stat-card:hover { + transform: translateY(-2px); + box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); +} + +.dark-theme .stat-card:hover { + box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); +} + +.stat-label { + font-size: 11px; + font-weight: 600; + text-transform: uppercase; + letter-spacing: 0.5px; + color: var(--text-muted); + margin-bottom: 6px; + line-height: 1.2; +} + +.stat-value { + font-size: 18px; + font-weight: 700; + color: var(--text-primary); + line-height: 1.1; +} + +.stat-value.success { + color: var(--success-color); +} + +.stat-value.warning { + color: var(--warning-color); +} + +.stat-value.error { + color: var(--error-color); +} + +/* Responsive adjustments */ +@media (max-width: 768px) { + .statistics-content { + grid-template-columns: repeat(2, 1fr); + gap: 8px; + padding: 10px; + } + + .stat-card { + padding: 8px; + } + + .stat-label { + font-size: 10px; + margin-bottom: 4px; + } + + .stat-value { + font-size: 16px; + } } \ No newline at end of file