View difference between Paste ID: ZdfcwbdN and Kb2uzAyu
SHOW: | | - or go back to the newest paste.
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
}