-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
115 lines (104 loc) · 2.97 KB
/
index.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
<html>
<head>
<meta charset="utf-8" />
<meta httpEquiv="Content-Type" content="text/html; charSet=utf-8" />
<meta httpEquiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="initial-scale=1.0, width=device-width" />
<title>Errors Index</title>
<link rel="stylesheet" href="https://use.typekit.net/ovf1fpe.css" />
<style type="text/css">
:root {
--font-family: "proxima-nova", "helvetica", "arial", sans-serif;
--body-background: #fef1e1;
--body-color: #333942;
--green800: #004038;
--title-font-size: 5.6rem;
--title-line-height: 6.4rem;
--subtitle-font-size: 2.4rem;
--subtitle-line-height: 3.6rem;
}
html,
body {
height: 100%;
}
html {
font-size: 62.5%;
}
body {
background: var(--body-background);
font-family: var(--font-family);
color: var(--body-color);
font-size: 2rem;
font-weight: 400;
margin: 0;
padding: 0;
}
.container {
display: flex;
align-items: center;
justify-content: center;
height: calc(100vh - 150px);
flex-direction: column;
text-align: center;
padding: 0 16px;
max-width: 1200px;
margin: 0 auto 30px;
}
img {
max-width: 100%;
}
/* Typography */
h1 {
font-size: var(--title-font-size);
line-height: var(--title-line-height);
color: var(--green800);
margin: 32px 0;
padding: 0;
}
a {
color: var(--green800);
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
ul {
text-align: left;
}
li {
padding: 8px 0;
}
/* Responsiveness */
@media (max-height: 930px) {
.container {
display: block;
height: auto;
}
}
</style>
</head>
<body>
<div class="container">
<h1>Error pages:</h1>
<p>
Bellow you can find the Cloudflare Error pages for marketing website.
<br /><br />
<small>* <strong>404 Error</strong> page still resides in Next.</small>
</p>
<ul>
<li><a href="/404_page.html">Error 404</a></li>
<li><a href="/429_page.html">Error 429</a></li>
<li><a href="/500_page.html">Error 500</a></li>
<li><a href="/1000_page.html">Error 1000</a></li>
<li><a href="/always-online.html">Always online</a></li>
<li><a href="/attack.html">Attack</a></li>
<li><a href="/basic-challenge.html">Basic challenge</a></li>
<li><a href="/block.html">Block</a></li>
<li><a href="/country-challenge.html">Country challenge</a></li>
<li><a href="/ip.html">IP blocked</a></li>
<li><a href="maintenance.html">Maintenance</a></li>
<li><a href="/waf-challenge.html">WAF challenge</a></li>
</ul>
</div>
</body>
</html>