-
Notifications
You must be signed in to change notification settings - Fork 69
Expand file tree
/
Copy pathextension.css
More file actions
143 lines (123 loc) · 2.51 KB
/
extension.css
File metadata and controls
143 lines (123 loc) · 2.51 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
.exit-intent-modal{
opacity: 0;
position: fixed;
z-index: 3001;
width: 100%;
text-align: center;
height: 100% !important;
pointer-events: none;
}
.exit-intent-modal.fade-in {
pointer-events: all;
}
.exit-intent-modal.fade-in.fade-out {
pointer-events: none;
}
body {
height: 100%;
float: left;
position: relative;
}
#exit-popup-overlay {
height: 100vh !important;
z-index: 3000;
position: fixed;
width: 100%;
background: #000;
opacity: 0.5;
}
#exit-popup-wrapper {
margin: 50px 0;
position: fixed;
z-index: 3001;
width: 100%;
height: 100vh;
text-align: center;
}
#exit-popup {
width: 500px;
display: inline-block;
background: #fff;
padding: 50px 20px;
position: relative;
}
#exit-popup h2 {
margin-top: 20px;
}
#exit-popup p {
}
#exit-popup-close {
top: 10px;
right: 20px;
font-size: 20px;
position: absolute;
font-weight: bold;
cursor: pointer;
}
#exit-popup-close:hover {
color: #999;
}
.fade-in {
-webkit-animation: fadein .5s; /* Safari, Chrome and Opera > 12.1 */
-moz-animation: fadein .5s; /* Firefox < 16 */
-ms-animation: fadein .5s; /* Internet Explorer */
-o-animation: fadein .5s; /* Opera < 12.1 */
animation: fadein .5s;
opacity: 1 !important;
}
.fade-out {
-webkit-animation: fadeout 1s; /* Safari, Chrome and Opera > 12.1 */
-moz-animation: fadeout 1s; /* Firefox < 16 */
-ms-animation: fadeout 1s; /* Internet Explorer */
-o-animation: fadeout 1s; /* Opera < 12.1 */
animation: fadeout 1s;
opacity: 0 !important;
}
@keyframes fadein {
from { opacity: 0; }
to { opacity: 1; }
}
/* Firefox < 16 */
@-moz-keyframes fadein {
from { opacity: 0; }
to { opacity: 1; }
}
/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
from { opacity: 0; }
to { opacity: 1; }
}
/* Internet Explorer */
@-ms-keyframes fadein {
from { opacity: 0; }
to { opacity: 1; }
}
/* Opera < 12.1 */
@-o-keyframes fadein {
from { opacity: 0; }
to { opacity: 1; }
}
@keyframes fadeout {
from { opacity: 1; }
to { opacity: 0; }
}
/* Firefox < 16 */
@-moz-keyframes fadeout {
from { opacity: 1; }
to { opacity: 0; }
}
/* Safari, Chrome and Opera > 12.1*/
@-webkit-keyframes fadeout {
from { opacity: 1; }
to { opacity: 0; }
}
/* Internet Explorer*/
@-ms-keyframes fadeout {
from { opacity: 1; }
to { opacity: 0; }
}
/* Opera < 12.1*/
@-o-keyframes fadeout {
from { opacity: 1; }
to { opacity: 0; }
}