-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathip_block.html
167 lines (149 loc) · 3.53 KB
/
ip_block.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://fonts.bunny.net/css?family=abril-fatface:400|rubik:600,800i,900i">
<title>Access Denied</title>
<style>
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
background: #1d1d1d;
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
flex-direction: column;
font-family: 'Abril-Fatface', 'Rubik';
}
main {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background: #2d2d2d;
width: 40vw;
height: fit-content;
border-radius: 8px;
overflow: hidden;
}
.top {
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
padding: 4em;
}
img {
width: 8em;
}
h1 {
font-size: 2em;
color: #fff;
}
.color {
color: #faec84;
}
h1, h2, h4 {
margin-left: 32px;
}
h4 {
margin-top: 1em;
color: #c9c9c9 !important;
}
h2 {
margin-top: 1em;
font-size: 1em;
color: #c9c9c9;
font-weight: 200;
}
.rig {
border-left: 1px solid rgba(255, 255, 255, 0.25);
margin-left: 32px;
}
.bottom {
background: #1f1f1f;
width: 100%;
height: fit-content;
padding: 1em;
}
.util {
font-size: 0.8em;
font-weight: 500;
color: #fff;
}
.info {
margin-left: 4px;
color: #c9c9c9;
font-weight: 200;
}
@media screen and (min-width: 200px) and (max-width: 1024px) {
main {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background: #2d2d2d;
width: 90vw;
height: fit-content;
border-radius: 8px;
overflow: hidden;
text-align: center;
}
.top {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 4em;
}
img {
width: 4em;
}
.top {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 3em;
}
h1, h2, h4 {
margin-left: 0;
}
.rig {
border-left: none;
margin-left: 0;
margin-top: 2em;
}
}
</style>
</head>
<body>
<main>
<div class="top">
<div eclass="rig">
<h1>
<span class="color">
<script type="text/javascript">document.write(document.location.hostname)</script>
</span>
has denied your request.
</h1>
<h2>
This means you're from somewhere that has been trying to bypass our firewall. Try disabling your VPN (if you have one), or enabling one (if you don't have one).
<a href="https://status.joshsevero.dev" class="color">Status Page</a>
</h2>
</div>
</div>
<div class="bottom">
<span class="util">
Your access ID is: <span class="info">::RAY_ID::</span>
</span>
</div>
</main>
</body>
</html>