Spaces:
Paused
Paused
File size: 1,246 Bytes
30b5e11 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 | @tailwind base;
@tailwind components;
@tailwind utilities;
/* --- RESET & BASE STYLES --- */
:root {
font-family: 'Inter', system-ui, Avenir, Helvetica, Arial, sans-serif;
line-height: 1.5;
font-weight: 400;
color-scheme: dark;
/* On force le fond sombre pour éviter le flash blanc au chargement */
background-color: #0f172a;
}
html, body, #root {
height: 100%;
margin: 0;
padding: 0;
overflow: hidden; /* Empêche le scroll global car on utilise des zones scrollables internes */
}
body {
min-width: 320px;
color: rgba(255, 255, 255, 0.9);
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
/* --- PERSONNALISATION SCROLLBAR (Style Moderne) --- */
::-webkit-scrollbar {
width: 6px;
}
::-webkit-scrollbar-track {
background: transparent;
}
::-webkit-scrollbar-thumb {
background: #334155; /* slate-700 */
border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
background: #475569; /* slate-600 */
}
/* --- ANIMATIONS --- */
@keyframes fadeIn {
from { opacity: 0; transform: translateY(10px); }
to { opacity: 1; transform: translateY(0); }
}
.animate-in {
animation: fadeIn 0.3s ease-out forwards;
}
/* --- OVERRIDES TAILWIND --- */
input:focus {
outline: none;
} |