world-game/src/styles/reset.css
isUnknown 4a6363273e Fix: activer la sélection de texte sur les éléments de contenu
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-10 18:44:41 +01:00

37 lines
746 B
CSS

/* CSS Reset */
* {
box-sizing: border-box;
margin: 0;
padding: 0;
cursor: none;
}
html,
body {
height: 100%;
min-height: 100vh;
min-height: -webkit-fill-available;
min-height: calc(var(--vh, 1vh) * 100);
}
p, h1, h2, h3, h4, h5, h6, li, td, th, blockquote, figcaption, article {
user-select: text;
}
body {
margin: 0;
font-family: "Danzza Regular", "Danzza", -apple-system, BlinkMacSystemFont,
"Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans",
"Droid Sans", "Helvetica Neue", sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
background: var(--color-background);
overflow-x: hidden;
}
@media (pointer: coarse) {
body,
* {
cursor: auto;
}
}