t2-mapper/app/style.css

48 lines
697 B
CSS
Raw Normal View History

2025-09-11 16:48:23 -07:00
html,
body {
margin: 0;
padding: 0;
2025-11-13 22:55:58 -08:00
background: black;
2025-09-11 16:48:23 -07:00
}
2025-09-12 12:41:48 -07:00
html {
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
font-size: 100%;
}
2025-11-13 22:55:58 -08:00
main {
2025-09-11 16:48:23 -07:00
width: 100vw;
height: 100vh;
}
2025-09-12 10:30:40 -07:00
#controls {
display: flex;
align-items: center;
gap: 20px;
2025-09-11 16:48:23 -07:00
position: fixed;
2025-09-12 12:41:48 -07:00
top: 0;
left: 0;
2025-09-12 10:30:40 -07:00
background: rgba(0, 0, 0, 0.5);
color: #fff;
2025-09-12 12:41:48 -07:00
padding: 10px 12px 10px 8px;
border-radius: 0 0 4px 0;
font-size: 13px;
2025-09-12 10:30:40 -07:00
}
.CheckboxField {
display: flex;
align-items: center;
gap: 6px;
2025-09-11 16:48:23 -07:00
}
.Field {
display: flex;
align-items: center;
gap: 6px;
}
#speedInput {
max-width: 80px;
}