CS
Thu Jan 09 2025 05:54:48 GMT+0000 (Coordinated Universal Time)
Saved by
@Checkmate
/* HUD CROSSHAIR */
.hud-crosshair{
visibility: clear;
position: fixed;
width: 25px;
height: 25px;
left: 50%;
top: 50%;
margin-left: -13px;
margin-top: -13px;
z-index: 12;
}
.hud-crosshair div{
background: #00ff00;
position: absolute;
}
.hud-crosshair-1, .hud-crosshair-2{
width: 3px;
height:10px;
left: 12px;
}
.hud-crosshair-3, .hud-crosshair-4{
width: 10px;
height:3px;
top: 12px;
}
.hud-crosshair-1{
top:0;
}
.hud-crosshair-2{
top:18px;
}
.hud-crosshair-3{
left: 0;
}
.hud-crosshair-4{
left: 17px;
}
/* HUD CROSSHAIR end */
content_copyCOPY
Comments