lila/public/oops/timeout.html

52 lines
1.2 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Timeout • lichess.org</title>
<style>
html,
body {
font: 16px Georgia, Times, 'Times New Roman', serif;
font-style: italic;
background: #000;
color: #ebd488;
text-align: center;
width: 100%;
margin: 0;
padding: 0;
}
h1 {
font-size: 30px;
}
@media (max-width: 1024px) {
img {
margin: 0 auto;
width: 90%;
height: auto;
}
body {
padding: 0 10px;
box-sizing: border-box;
}
}
</style>
<meta content="noindex, nofollow" name="robots" />
</head>
<body>
<h1>lichess.org timeout</h1>
Sorry, the site is not responding in a timely fashion.<br />
Try to reload the page soon to see if it's getting better.
<br />
<br />
<img src="//lichess1.org/assets/images/maintenance.jpg" alt="Lichess timeout" />
<script>
setTimeout(function () {
location.reload();
}, 2000 + Math.round(Math.random() * 10000));
</script>
</body>
</html>