This commit is contained in:
Admin9705
2025-08-24 00:19:04 -04:00
parent db386139fc
commit 0b460a733b

View File

@@ -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;
}
}