crosshair
Signed-off-by: K1 <git@karoh.net>
This commit is contained in:
parent
1bb6f70c92
commit
5094fd1fb2
2 changed files with 103 additions and 0 deletions
28
dve.css
28
dve.css
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue