-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwaf-block.html
More file actions
225 lines (204 loc) · 4.65 KB
/
waf-block.html
File metadata and controls
225 lines (204 loc) · 4.65 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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Error 500</title>
<style type="text/css">
html, body {height: 100%}
#geral {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
position: relative;
height: 100vh;
margin: auto;
overflow: overlay;
}
body{
font-family: BlinkMacSystemFont, -apple-system, "Segoe UI", Ubuntu, Roboto, Oxygen, Cantarell, Arial, sans-serif;
background: #fff;
}
h4{
color: #000000;
font-size: 16px;
margin-bottom:40px;
font-weight: 700;
width: auto;
}
h4 span {
font-weight: 400;
font-size: 16px;
}
p{
color: #333;
font-size: 16px;
font-weight: bold;
letter-spacing: -0.035em;
padding-bottom:10px
}
p a{
background: url('/seta_esquerda_nova.png') no-repeat left center;
background-position: 15%;
color: #34BBBE;
border: 1px solid #34BBBE;
border-radius: 6px;
padding: 8px 14px 8px 40px;
font-size: 16px;
font-weight: 500;
}
*{
border: none;
list-style: none;
margin: 0;
padding:0;
-webkit-transition: all 0.2s linear;
-moz-transition: all 0.2s linear;
-o-transition: all 0.2s linear;
transition: all 0.2s linear;
}
a{
text-decoration: none;
outline:none;
}
.shake {
-webkit-animation-name: shake;
animation-name: shake;
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
@-webkit-keyframes shake {
0%{
opacity:0;
transform: translate(0px,-10px);
}
100%{
opacity:1;
transform: translate(0px,-10px);
}
0%, 100% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
10%, 30%, 50%, 70%, 90% {
-webkit-transform: translate3d(-2px, 0, 0);
transform: translate3d(-2px, 0, 0);
}
20%, 40%, 60%, 80% {
-webkit-transform: translate3d(2px, 0, 0);
transform: translate3d(2px, 0, 0);
}
}
@keyframes shake {
0%{
opacity:0;
transform: translate(0px,-10px);
}
100%{
opacity:1;
transform: translate(0px,-10px);
}
0%, 100% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
10%, 30%, 50%, 70%, 90% {
-webkit-transform: translate3d(-2px, 0, 0);
transform: translate3d(-2px, 0, 0);
}
20%, 40%, 60%, 80% {
-webkit-transform: translate3d(2px, 0, 0);
transform: translate3d(2px, 0, 0);
}
}
.element-animation{
animation: animationFrames ease 1s;
animation-iteration-count: 1;
transform-origin: 50% 50%;
animation-fill-mode:forwards; /*when the spec is finished*/
-webkit-animation: animationFrames ease 1s;
-webkit-animation-iteration-count: 1;
-webkit-transform-origin: 50% 50%;
-webkit-animation-fill-mode:forwards; /*Chrome 16+, Safari 4+*/
-moz-animation: animationFrames ease 1s;
-moz-animation-iteration-count: 1;
-moz-transform-origin: 50% 50%;
-moz-animation-fill-mode:forwards; /*FF 5+*/
-o-animation: animationFrames ease 1s;
-o-animation-iteration-count: 1;
-o-transform-origin: 50% 50%;
-o-animation-fill-mode:forwards; /*Not implemented yet*/
-ms-animation: animationFrames ease 1s;
-ms-animation-iteration-count: 1;
-ms-transform-origin: 50% 50%;
-ms-animation-fill-mode:forwards; /*IE 10+*/
}
@keyframes animationFrames{
0% {
opacity:0;
transform: translate(0px,-10px) ;
}
100% {
opacity:1;
transform: translate(0px,0px) ;
}
}
@-moz-keyframes animationFrames{
0% {
opacity:0;
-moz-transform: translate(0px,-10px) ;
}
100% {
opacity:1;
-moz-transform: translate(0px,0px) ;
}
}
@-webkit-keyframes animationFrames {
0% {
opacity:0;
-webkit-transform: translate(0px,-10px) ;
}
100% {
opacity:1;
-webkit-transform: translate(0px,0px) ;
}
}
@-o-keyframes animationFrames {
0% {
opacity:0;
-o-transform: translate(0px,-10px) ;
}
100% {
opacity:1;
-o-transform: translate(0px,0px) ;
}
}
@-ms-keyframes animationFrames {
0% {
opacity:0;
-ms-transform: translate(0px,-10px) ;
}
100% {
opacity:1;
-ms-transform: translate(0px,0px) ;
}
}
</style>
</head>
<body>
<div id="geral"> <!-- inicio#geral -->
<div>
<img style="height: 66px;margin: 0 0 35px;width: auto;" src="/logo_error.png" />
<h4>Ops! Ocorreu um problema<br><br>
<span>O artia bloqueou essa requisição devido a alguma operação suspeita.
<br>
Caso este erro persista, <a href="https://artia.movidesk.com/Kb", style="color: #34BBBE">contate nosso suporte</a>.
</span>
</h4>
<p><a href="http://app.artia.com/">Voltar</a></p>
</div>
</div> <!-- fim#geral -->
</body>
</html>