-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate.html
More file actions
22 lines (22 loc) · 1.75 KB
/
template.html
File metadata and controls
22 lines (22 loc) · 1.75 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>🚧 Under maintenance</title>
<style>
html, body {font-family: sans-serif;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;background-color: #F7F8FB;height: 100%;-webkit-font-smoothing: antialiased;}body {margin: 0;padding: 0;display: flex;flex-direction: column;align-items: center;justify-content: center;}.hero {text-align: center;align-self: center;display: flex;flex-direction: column;align-items: center;padding: 0px 20px;max-width: 450px;}.logo {font-size: 50px;font-weight: 100;margin-top: 15px;color: #47494E;margin-bottom: 8px;background-color: #DBE1EC;border-radius: 15px;height: 2em;width: 2em;line-height: 1.9em;}h1 {font-size: 22px;font-weight: 100;margin-top: 25px;color: #47494E;margin-bottom: 8px;}p {-webkit-margin-after: 0px;-webkit-margin-before: 0px;font-size: 15px;color: #7F828B;line-height: 21px;margin-bottom: 4px;}p a {color: #408fec;text-decoration: none;}.wastebox {position: fixed;left: 24px;bottom: 12px;}.info {position: fixed;right: 12px;bottom: 12px;border: 1px solid #9FABBC;border-radius: 10px;color: #9FABBC;text-decoration: none;width: 2em;height: 2em;line-height: 2em;text-align: center;display: block;}
</style>
</head>
<body>
<div class="spacer"></div>
<div class="hero">
<div class="logo">🚧</div>
<h1>We are improving our service</h1>
<p>Unfortunately the website is down for maintenance right now. We will be online as soon as possible. Please check again in a little while. Thank you!</p>
</div>
<a target="_blank" href="https://github.com/protomodule" class="info">ℹ</a>
<script>
setTimeout(function() { location.reload(true) }, 5000)
</script>
</body>
</html>