Code en Rust pour windows

This commit is contained in:
oussi
2026-04-07 15:37:57 +02:00
parent ff3e7ebe96
commit 9f95547aba
12 changed files with 1400 additions and 4 deletions

48
static/style.css Normal file
View File

@@ -0,0 +1,48 @@
/* 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;
}
}