43 lines
523 B
CSS
43 lines
523 B
CSS
:root {
|
|
color-scheme: dark;
|
|
font-family: Inter;
|
|
}
|
|
|
|
html,
|
|
body,
|
|
#root {
|
|
margin: 0;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
}
|
|
|
|
body {
|
|
overflow: hidden;
|
|
background: #04070d;
|
|
}
|
|
|
|
button,
|
|
input,
|
|
textarea,
|
|
select {
|
|
font: inherit;
|
|
}
|
|
|
|
canvas {
|
|
display: block;
|
|
}
|
|
|
|
.crosshair {
|
|
position: fixed;
|
|
top: 50%;
|
|
left: 50%;
|
|
width: 12px;
|
|
height: 12px;
|
|
border: 2px solid rgba(255, 255, 255, 0.92);
|
|
border-radius: 999px;
|
|
transform: translate(-50%, -50%);
|
|
box-sizing: border-box;
|
|
pointer-events: none;
|
|
z-index: 10;
|
|
}
|