Skip to content

Commit

Permalink
Add simple maintenance page (setup on provider)
Browse files Browse the repository at this point in the history
  • Loading branch information
adamiak committed Sep 19, 2024
1 parent a7805be commit 9f3847a
Showing 1 changed file with 69 additions and 0 deletions.
69 changes: 69 additions & 0 deletions packages/frontend/maintenance.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
<!doctype html>
<html>

<head>
<meta charset=utf-8>
<meta content="width=device-width,initial-scale=1.0,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no"
name=viewport>
<title>Offline for maintenance</title>
<link rel="shortcut icon" type="image/x-icon" href="https://l2beat.com/favicon.ico">
<style>
html,
body {
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
background-color: #000000;
background-image: linear-gradient(rgb(38, 38, 70), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0));

line-height: 1.5;
-webkit-text-size-adjust: 100%;
-moz-tab-size: 4;
-o-tab-size: 4;
tab-size: 4;
font-family: Inter, sans-serif;
font-feature-settings: normal;
font-variation-settings: normal;

height: 100%;
-webkit-font-smoothing: antialiased;
}

body {
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
color: #ffffff
}

.message {
text-align: center;
align-self: center;
display: flex;
flex-direction: column;
align-items: center;
padding: 0px 20px;
max-width: 450px;
}

.message__title {
font-size: 22px;
font-weight: 100;
margin-top: 15px;
margin-bottom: 8px;
}
</style>
<base target=_parent />
</head>

<body>
<div class=spacer></div>
<div class=message>
<div class=message__title> The Explorer is offline for maintenance </div>
<p> Please check back later</p>
</div>
</body>

</html>

0 comments on commit 9f3847a

Please sign in to comment.