Jump to content
Basculer le menu
Changer de menu des préférences
Basculer le menu personnel
Non connecté(e)
Votre adresse IP sera visible au public si vous faites des modifications.
Version datée du 11 août 2026 à 21:19 par Admin (discussion | contributions) (CSS panels accueil (Infothèque))
(diff) ← Version précédente | Version actuelle (diff) | Version suivante → (diff)
/* ============================================================
 * Infothèque — Accueil : panels (Bienvenue, Statistiques, Accès rapide)
 * Couleur de texte forcée dans les cartes (fond clair fixe, donc
 * texte sombre fixe, indépendant du thème jour/nuit).
 * ============================================================ */

.ith-panels-table {
    max-width: 1200px;
    margin: 18px auto 0 auto;
    display: table;
    width: 100%;
    table-layout: fixed;
}

.ith-panels-left, .ith-panels-right {
    display: table-cell;
    vertical-align: top;
}

.ith-panels-left { width: 68%; padding-right: 2%; }
.ith-panels-right { width: 30%; }
.ith-panels-right .ith-panel { width: 100%; margin: 0 0 12px 0; }

.ith-panel {
    box-sizing: border-box;
    padding: 16px 18px;
    border: 1px solid #c9ced6;
    border-radius: 16px;
    background: #ffffff;
    color: #1f2328;
    text-align: left;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.ith-panel--stats { background: #f5f8ff; border-color: #b6c7f2; }
.ith-panel--quick { background: #f7f7f8; border-color: #d1d5db; }

.ith-panel__head { margin: 0 0 10px 0; }
.ith-panel__title { font-size: 20px; font-weight: 800; }
.ith-panel__body { line-height: 1.5; }

.ith-stats { text-align: center; white-space: nowrap; }
.ith-stat { display: inline-block; margin: 6px 14px; vertical-align: top; }
.ith-stat__number { font-size: 30px; font-weight: 800; line-height: 1.1; }
.ith-stat__label { font-size: 12px; color: #6b7280; letter-spacing: 0.04em; text-transform: uppercase; }

@media (max-width: 900px) {
    .ith-panels-table, .ith-panels-left, .ith-panels-right { display: block; width: 100%; }
    .ith-panels-left { padding-right: 0; }
    .ith-panels-right .ith-panel { margin: 12px 0 0 0; }
}