39 lines
753 B
HTML
39 lines
753 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
|
|
<title>Pony Town (offline)</title>
|
|
<style>
|
|
body {
|
|
background: #333;
|
|
}
|
|
|
|
div {
|
|
position: fixed;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: #333 url('/images/offline-pony.png') no-repeat center center;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
p {
|
|
color: #888;
|
|
font: normal 16px sans-serif;
|
|
margin-top: 350px;
|
|
text-align: center;
|
|
padding: 30px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div>
|
|
<p>
|
|
Pony Town server is undergoing maintenance, please check back later.
|
|
</p>
|
|
</div>
|
|
</body>
|
|
</html>
|