Advertisement
Guest User

Untitled

a guest
Sep 23rd, 2014
190
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.39 KB | None | 0 0
  1. /* CSS TO PLACE STATIC CROSSHAIRS IN CENTRE OF SCREEN*/
  2. #crosshairs_static{
  3.     position: absolute;
  4.  
  5.     height: 100%;
  6.     width: 100%;
  7.     z-index: 99;
  8.     top: 0;
  9.     left: 0;
  10.     pointer-events: none;
  11. }
  12.  
  13. #corsshairs-icon{
  14.     position:absolute;
  15.     margin:auto;
  16.     top:-52px;
  17.     bottom:0;
  18.     left:0;
  19.     right:0;
  20. }
  21.  
  22. /* CSS TO PLACE STATIC CROSSHAIRS IN CENTRE OF SCREEN*/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement