crosshair

Signed-off-by: K1 <git@karoh.net>
This commit is contained in:
K1 2026-05-02 18:36:55 +02:00
parent 1bb6f70c92
commit 5094fd1fb2
2 changed files with 103 additions and 0 deletions

28
dve.css
View file

@ -53,3 +53,31 @@ html, body {
top: auto;
bottom: 10px;
}
.crosshair {
position: absolute;
display: none;
width: 24px;
height: 24px;
z-index: 999;
pointer-events: none;
transform: translate(-50%, -50%);
}
.crosshair::before,
.crosshair::after {
content: "";
position: absolute;
background: #000;
}
.crosshair::before {
left: 11px;
top: 0;
width: 2px;
height: 24px;
}
.crosshair::after {
left: 0;
top: 11px;
width: 24px;
height: 2px;
}