49 lines
854 B
CSS
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;
|
|
}
|
|
}
|