66 lines
1.9 KiB
CSS
66 lines
1.9 KiB
CSS
:root {
|
|
--primary: #1e293b;
|
|
--accent: #08C5D1;
|
|
--bg-body: #edf2f7; /* Gris bleuté pour le fond */
|
|
--shadow-wahoo: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
|
|
}
|
|
|
|
body {
|
|
background-color: var(--bg-body) !important;
|
|
font-family: 'Plus Jakarta Sans', sans-serif !important;
|
|
}
|
|
|
|
/* LE SECRET : On ne touche pas au bord de l'écran */
|
|
#main {
|
|
margin: 85px 25px 25px 285px !important; /* Sidebar large + marge */
|
|
background: #ffffff !important;
|
|
border-radius: 30px !important; /* Arrondi très fort */
|
|
box-shadow: var(--shadow-wahoo) !important;
|
|
border: none !important;
|
|
min-height: calc(100vh - 110px);
|
|
padding: 40px !important;
|
|
}
|
|
|
|
/* SIDEBAR : Elle doit être détachée ou très sombre */
|
|
.sidebar {
|
|
background: var(--primary) !important;
|
|
width: 260px !important;
|
|
border: none !important;
|
|
}
|
|
|
|
/* HEADER : On le rend invisible ou très léger */
|
|
.header {
|
|
background: rgba(248, 250, 252, 0.8) !important;
|
|
backdrop-filter: blur(8px);
|
|
border: none !important;
|
|
box-shadow: none !important;
|
|
}
|
|
|
|
/* --- LES TABLEAUX "WAHOO" (Effet Liste de Cartes) --- */
|
|
.table {
|
|
border-collapse: separate !important;
|
|
border-spacing: 0 12px !important; /* Espace entre les lignes */
|
|
background: transparent !important;
|
|
}
|
|
|
|
.table tbody tr {
|
|
background: white !important;
|
|
border-radius: 15px !important;
|
|
box-shadow: 0 2px 10px rgba(0,0,0,0.03) !important;
|
|
transition: all 0.3s ease !important;
|
|
}
|
|
|
|
.table tbody tr:hover {
|
|
transform: translateY(-4px) scale(1.01);
|
|
box-shadow: 0 15px 30px rgba(8, 197, 209, 0.15) !important;
|
|
}
|
|
|
|
.table td {
|
|
padding: 20px !important;
|
|
border: none !important;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
/* Arrondis pour chaque ligne */
|
|
.table td:first-child { border-radius: 15px 0 0 15px !important; }
|
|
.table td:last-child { border-radius: 0 15px 15px 0 !important; } |