-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplease_retry.html
46 lines (41 loc) · 1.01 KB
/
please_retry.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/png" href="./favicon.ico" />
<title>Pickaform | Currently under heavy load...</title>
</head>
<style>
html, body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
.body-background {
font-size: 3vh;
font-family: sans-serif;
color: white;
display: flex;
flex-flow: column;
align-items: center;
justify-content: center;
width: 100%;
height: 100%;
margin: 0;
padding: 0;
background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(50,9,121,1) 35%, rgba(0,212,255,1) 100%);
}
</style>
<body class="body-background">
<div>
Pickaform servers are currently under heavy load.
<br>
Sorry for the inconvenient.
<br>
<br>
Please try again.
</div>
</body>
</html>