t2-mapper/app/style.css

48 lines
697 B
CSS
Raw Permalink Normal View History

2025-09-11 23:48:23 +00:00
html,
body {
margin: 0;
padding: 0;
2025-11-14 06:55:58 +00:00
background: black;
2025-09-11 23:48:23 +00:00
}
2025-09-12 19:41:48 +00: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-14 06:55:58 +00:00
main {
2025-09-11 23:48:23 +00:00
width: 100vw;
height: 100vh;
}
2025-09-12 17:30:40 +00:00
#controls {
display: flex;
align-items: center;
gap: 20px;
2025-09-11 23:48:23 +00:00
position: fixed;
2025-09-12 19:41:48 +00:00
top: 0;
left: 0;
2025-09-12 17:30:40 +00:00
background: rgba(0, 0, 0, 0.5);
color: #fff;
2025-09-12 19:41:48 +00:00
padding: 10px 12px 10px 8px;
border-radius: 0 0 4px 0;
font-size: 13px;
2025-09-12 17:30:40 +00:00
}
.CheckboxField {
display: flex;
align-items: center;
gap: 6px;
2025-09-11 23:48:23 +00:00
}
.Field {
display: flex;
align-items: center;
gap: 6px;
}
#speedInput {
max-width: 80px;
}