Files
supervision/static/style.css
Dom 61d17968a0 feat: init projet supervision — monitoring systeme Windows
Interface web Flask securisee pour surveiller CPU, RAM, disques
et processus (JVM, Nginx, Amadea Web 8 x64).
Alertes email SMTP configurables, seuils reglables, compilation
PyInstaller en .exe, installation service Windows via NSSM.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-26 09:48:35 +01:00

49 lines
854 B
CSS

/* Supervision — Style */
body {
background-color: #f4f6f9;
font-size: 0.9rem;
}
.metric-card {
transition: border-color 0.3s;
}
.metric-card .metric-value {
font-size: 2.2rem;
font-weight: 700;
line-height: 1.1;
}
.card {
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}
.badge {
font-size: 0.75rem;
text-transform: uppercase;
}
.table th {
font-size: 0.8rem;
text-transform: uppercase;
color: #6c757d;
border-bottom-width: 1px;
}
.navbar-brand i {
color: #4fc3f7;
}
/* Statut couleurs */
.border-success { border-left: 4px solid #198754 !important; }
.border-warning { border-left: 4px solid #ffc107 !important; }
.border-danger { border-left: 4px solid #dc3545 !important; }
/* Responsive */
@media (max-width: 768px) {
.metric-card .metric-value {
font-size: 1.8rem;
}
}