Advertisement
alseambusher

copy-paste to shell basic css

Jan 18th, 2017
230,376
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.43 KB | None | 0 0
  1. .malicious {
  2.   color: #f3f5f6; // set it to that of the page
  3.   font-size: 0px; // make it small
  4.   // move it out of the way
  5.   position: absolute;
  6.   left: -100px;
  7.   top: -100px;
  8.   height: 0px;
  9.   z-index: -100;
  10.   display: inline-block;
  11.   // make it un-selectable
  12.   -webkit-touch-callout: none;
  13.   -webkit-user-select: none;
  14.   -khtml-user-select: none;
  15.   -moz-user-select: none;
  16.   -ms-user-select: none;
  17.   user-select: none;  
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement