-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblock.html
108 lines (95 loc) · 2.14 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Unauthorised re-upload</title>
<link
href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap"
rel="stylesheet"
/>
<style>
*,
*::after,
*::before {
box-sizing: border-box;
}
html,
body {
margin: 0;
padding: 0;
min-height: 100vh;
font-family: "Poppins", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
font-size: 20px;
}
body {
display: flex;
align-items: center;
justify-content: center;
}
h1 {
font-size: 4.5rem;
margin-bottom: 1rem;
margin-top: 0;
}
main {
max-width: 640px;
width: 100%;
text-align: center;
padding: 32px;
}
@media (max-width: 400px) {
main {
padding: 16px;
}
h1 {
font-size: 3rem;
}
}
a:any-link {
color: #000;
font-weight: bold;
}
summary {
opacity: 0.8;
cursor: pointer;
}
details *:not(summary) {
font-size: 16px;
text-align: left;
}
details h1 {
font-size: 2em;
}
details ul {
font-size: 14px;
}
details > div {
margin-top: 4px;
background-color: #ddd;
padding: 8px 16px;
}
</style>
</head>
<body>
<main>
<h1>Uh-oh!</h1>
<p>
The site you downloaded the Liveries Mega Pack from is sharing the link
in an unauthorised manner.
</p>
<p>
We ask that all sites to link to our Discord server and not the
download URL.
</p>
<p>
<a href="https://discord.gg/megapack">Join our Discord server</a> to get
notified when new liveries release, and to download the mega pack.
</p>
<details>
<summary>Technical info</summary>
::CLOUDFLARE_ERROR_1000S_BOX::
</details>
</main>
</body>
</html>