-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblocked.html
More file actions
198 lines (179 loc) · 4.72 KB
/
blocked.html
File metadata and controls
198 lines (179 loc) · 4.72 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Protected by PureShield</title>
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;800&display=swap"
rel="stylesheet"
/>
<style>
*,
*::before,
*::after {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Inter', sans-serif;
background: #0b0e1a;
color: #e8eaf6;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 20px;
overflow: hidden;
}
/* Background glow effect */
.glow {
position: absolute;
width: 600px;
height: 600px;
background: radial-gradient(circle, rgba(79, 114, 255, 0.05) 0%, rgba(11, 14, 26, 0) 70%);
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
z-index: 0;
pointer-events: none;
}
.card {
position: relative;
z-index: 1;
max-width: 520px;
width: 100%;
text-align: center;
background: #111527;
border: 1px solid rgba(255, 255, 255, 0.06);
border-radius: 24px;
padding: 56px 40px;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
animation: fadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes fadeUp {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.shield-wrap {
width: 80px;
height: 80px;
background: rgba(76, 166, 38, 0.1);
border: 1px solid rgba(76, 166, 38, 0.25);
border-radius: 50%;
margin: 0 auto 32px;
display: flex;
align-items: center;
justify-content: center;
position: relative;
}
.shield-wrap::after {
content: '';
position: absolute;
inset: -10px;
border-radius: 50%;
border: 1px solid rgba(76, 166, 38, 0.15);
animation: pulse 2.5s infinite ease-out;
}
@keyframes pulse {
0% {
transform: scale(1);
opacity: 1;
}
100% {
transform: scale(1.4);
opacity: 0;
}
}
.shield-wrap svg {
width: 36px;
height: 36px;
color: #4ca626;
}
h1 {
font-size: 26px;
font-weight: 800;
color: #fff;
margin-bottom: 24px;
letter-spacing: -0.5px;
line-height: 1.2;
}
.quote-box {
background: rgba(255, 255, 255, 0.03);
border-left: 3px solid #4f72ff;
padding: 18px 24px;
border-radius: 0 12px 12px 0;
margin-bottom: 32px;
text-align: left;
}
.quote-text {
font-size: 15px;
line-height: 1.6;
color: #dde1f5;
font-weight: 500;
font-style: italic;
margin-bottom: 10px;
}
.quote-source {
font-size: 12px;
color: #5b81ff;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.msg {
font-size: 14px;
line-height: 1.6;
color: #8b95a5;
margin-bottom: 32px;
}
.btn {
display: inline-block;
padding: 12px 28px;
background: #fff;
color: #0b0e1a;
border-radius: 12px;
font-size: 14px;
font-weight: 700;
text-decoration: none;
transition:
transform 0.2s,
background 0.2s;
cursor: pointer;
}
.btn:hover {
transform: translateY(-2px);
background: #e8eaf6;
}
</style>
</head>
<body>
<div class="glow"></div>
<div class="card">
<div class="shield-wrap">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5">
<path d="M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z" />
<polyline points="9 12 11 14 15 10" />
</svg>
</div>
<h1>Take a moment to reflect.</h1>
<div class="quote-box">
<div class="quote-text">"And Allah knows what you conceal and what you reveal."</div>
<div class="quote-source">— Quran 16:19</div>
</div>
<div class="msg">
This site was blocked because it contains adult or harmful content.<br /><br />
Close this tab and protect your heart. True peace is found in the remembrance of Allah.
</div>
<button class="btn" id="closeBtn">Close Tab</button>
</div>
<script src="blocked.js"></script>
</body>
</html>