Spaces:
Running
Running
File size: 1,294 Bytes
5470817 12fed0b eb3ad05 12fed0b eb3ad05 12fed0b 5470817 12fed0b 5470817 12fed0b 5470817 12fed0b eb3ad05 12fed0b eb3ad05 12fed0b 5470817 12fed0b 5470817 12fed0b 5470817 |
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 61 62 63 64 65 66 67 68 69 70 71 72 73 74 |
:root {
font-family: "Source Sans Pro", sans-serif;
line-height: 1.5;
font-weight: 400;
color-scheme: light dark;
font-synthesis: none;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
:root[data-theme="light"] {
background-color: #f5f5f5;
}
:root[data-theme="dark"] {
background-color: #020011;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html,
body,
#root {
width: 100%;
height: 100%;
min-height: 100vh;
font-family: "Source Sans Pro", sans-serif;
}
html {
background-color: inherit;
}
body {
margin: 0;
min-width: 320px;
background-color: inherit;
overflow-y: auto;
overflow-x: hidden;
}
#root {
background-color: inherit;
}
/* Styles spécifiques pour le mode sombre */
.dark-mode {
background-color: #020011 !important;
}
/* Styles spécifiques pour le mode clair */
.light-mode {
background-color: #f5f5f5 !important;
}
/* Assurer que le défilement est fluide */
@media (prefers-reduced-motion: no-preference) {
html {
scroll-behavior: smooth;
}
}
/* Supprimer les styles media query qui pourraient interférer */
@media (prefers-color-scheme: light) {
:root {
/* Ces styles sont maintenant gérés par les attributs data-theme */
}
}
|