-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathstyle.css
44 lines (39 loc) · 851 Bytes
/
style.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
.dom-destroyer--target {
cursor: crosshair;
animation: 0.9s infinite scroll alternate;
}
@keyframes scroll {
from { opacity: 1; }
to { opacity: 0.333; }
}
.dom-destroyer--mask {
background: radial-gradient(circle, hsla(350, 50%, 80%, 0) 25%, hsla(350, 50%, 50%, 0.25));
border: 2px dashed hsla(350, 50%, 50%, 0.5);
box-sizing: border-box;
height: 0;
left: 0;
pointer-events: none;
position: fixed;
top: 0;
transition: all 0.1s;
width: 0;
z-index: 9999999;
}
.dom-destroyer--iframe-blinder {
position: fixed;
z-index: 9999998;
}
.dom-destroyer--replacement {
background: hsl(350, 50%, 50%);
opacity: 1;
transition: all 0.2s;
}
.dom-destroyer--replacement-poofed {
height: 0 !important;
width: 0 !important;
margin: 0 !important;
opacity: 0.5;
}
.dom-destroyer--replacement-gone {
display: none;
}