-
Notifications
You must be signed in to change notification settings - Fork 43
/
block.html
68 lines (67 loc) · 2.2 KB
/
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
<!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">
<title>Blocked | No More Domains</title>
<link rel="icon" type="image/x-icon" href="./assets/icon16.png">
<style>
h3{
color: #fff;
filter: drop-shadow(0 0 0.25rem #000);
font-weight: 700;
font-size: 2.5em;
text-align: center;
margin-block: 0 .5em;
}
body{
background-color: rgb(33, 33, 33) !important;
display:flex;
align-items:center;
justify-content:center;
font-size: 105% !important;
font-family: 'Segoe UI', Arial, Helvetica, 'Lucida Sans', sans-serif;
}
#info{
display:flex;
align-items:center;
justify-content:center;
flex-direction:column;
background-color:rgba(235, 235, 235, .1);
backdrop-filter: blur(10px);
border-radius:20px;
padding:2em;
word-wrap:break-word;
/* width:450px;
height:280px; */
position:absolute;
top: 50%;
left:50%;
transform:translate(-50%,-50%);
box-shadow: 0 2px 8px 2px rgba(0, 0, 0, 0.25);;
}
#myPara{text-align:center;}
#myPara2{font-size:92%;text-align: center;}
#mailAnchor{text-decoration:none;}
.nmd-button{
transition: all .2s ease;
background-color: #BC2037;
}
.nmd-button:hover{
transition: all .2s ease;
background-color: #A21C2F;
filter: drop-shadow(0mm 1mm 2mm rgb(41, 41, 41));
}
</style>
</head>
<body>
<div id="info">
<h3>This website has been blocked</h3>
<p style="margin-block: 0 1.5em; color: #fff;" id="myPara">You were prevented from visiting this website by NoMoreDomains.</p>
<button class="nmd-button" style="border-radius: .5em; color: #fff; border: none; padding: .5em 1em; font-size: 1.1em; cursor: pointer;" id="NMD_pause">Disable NoMoreDomains</button>
</div>
<script src="inject_block.js">
</script>
</body>
</html>