world-game/src/styles/reset.css

38 lines
746 B
CSS
Raw Normal View History

/* 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;
}
}