Actualiser css/admin.css

This commit is contained in:
2026-06-22 11:35:58 +02:00
parent 73e9340dfa
commit 840c0914c2
+17
View File
@@ -244,6 +244,23 @@ input[type="checkbox"]:checked::after { content: '✓'; color: var(--background)
color: var(--gold);
}
.progress-container {
background: var(--border);
border-radius: 10px;
height: 12px;
width: 100%;
margin: 1.5rem 0;
overflow: hidden;
}
.progress-bar {
height: 100%;
background: var(--gold); /* Ou votre couleur primaire */
width: 0%;
transition: width 0.4s ease;
border-radius: 10px;
}
/* RESPONSIVE MOBILE */
@media (max-width: 768px) {
.admin-header { flex-direction: column; align-items: flex-start; }