t2-mapper/app/style.css

50 lines
584 B
CSS
Raw Normal View History

2025-12-02 16:58:35 -08:00
html {
box-sizing: border-box;
2025-09-11 16:48:23 -07:00
margin: 0;
padding: 0;
2025-11-13 22:55:58 -08:00
background: black;
2026-02-11 21:45:41 -08:00
overflow: hidden;
2025-09-11 16:48:23 -07:00
}
2025-12-02 16:58:35 -08:00
*,
*:before,
*:after {
box-sizing: inherit;
2026-02-19 05:51:55 -08:00
}
body {
user-select: none;
-webkit-touch-callout: none;
2025-12-02 16:58:35 -08:00
}
2025-09-12 12:41:48 -07:00
html {
2025-11-29 09:08:20 -08:00
font-family:
system-ui,
-apple-system,
BlinkMacSystemFont,
"Segoe UI",
Roboto,
Oxygen,
Ubuntu,
Cantarell,
"Open Sans",
"Helvetica Neue",
sans-serif;
2025-09-12 12:41:48 -07:00
font-size: 100%;
}
2025-12-02 16:58:35 -08:00
body {
margin: 0;
padding: 0;
2026-02-11 21:45:41 -08:00
overflow: hidden;
2025-12-02 16:58:35 -08:00
}
2025-11-13 22:55:58 -08:00
main {
2026-02-11 21:45:41 -08:00
width: 100dvw;
height: 100dvh;
2025-09-11 16:48:23 -07:00
}
2025-12-14 11:06:57 -08:00
input[type="range"] {
max-width: 80px;
}