-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathC500.html
98 lines (95 loc) · 2.54 KB
/
C500.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Something went wrong" />
<title>Something went wrong</title>
<link rel="shortcut icon" href="/favicon.ico" />
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
<!-- Bootstrap core CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-4bw+/aepP/YC94hEpVNVgiZdgIC5+VKNBQNGCHeKRQN+PtmoHDEXuppvnDJzQIu9" crossorigin="anonymous">
<!-- Outfit font from Google Fonts -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Outfit">
<style>
/* Error Page Inline Styles */
body {
padding-top: 20px;
}
/* Layout */
.jumbotron {
font-size: 21px;
font-weight: 200;
line-height: 2.1428571435;
color: inherit;
padding: 10px 0px;
text-align: center;
background-color: transparent;
}
/* Everything but the jumbotron gets side spacing for mobile-first views */
.body-content {
padding-left: 15px;
padding-right: 15px;
}
/* CloudFlare-specific hacks */
h1 {
font-weight: bold;
}
ul:before {
content:"When reporting this, please include this information: \A";
white-space: pre-wrap;
}
li {
list-style-type: none;
line-height: 1.5em;
font-size: 0.8em;
display: inline;
}
li:after {
content: ","
}
/* Bottom links */
.bottom-links {
display: flex;
justify-content: space-between;
margin:-30px auto;
padding-left: 10px;
padding-right: 10px;
max-width: 100%;
text-align: center;
width: 600px;
}
/* button */
.jumbotron .btn {
font-size: 21px;
padding: 14px 24px;
}
/* Fade-in */
@keyframes fadein {
from { opacity: 0; }
to { opacity: 1; }
}
/* Dark mode */
@media (prefers-color-scheme: dark) {
body {
background-color: #282828;
color: white;
}
}
/* Font */
body {
font-family: 'Outfit', sans-serif;
}
</style>
</head>
<div class="container" style="padding: 70px 0; text-align: center;">
<!-- Jumbotron -->
<div class="jumbotron">
<a href="https://wikiforge.net">
<img src="https://static.wikiforge.net/hubwiki/8/88/WikiForge_Logo.svg" width="130" height="130" alt="WikiForge" />
</a>
<p>::CLOUDFLARE_ERROR_1000S_BOX::</p>
<a href="javascript:document.location.reload(true);" class="btn btn-outline-primary" role="button">Try again</a>
</div>
</div>
</html>