mirror of
https://github.com/jimeh/skyhook.git
synced 2026-02-19 11:06:38 +00:00
43 lines
791 B
HTML
43 lines
791 B
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
|
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html;
|
|
charset=utf-8"/>
|
|
|
|
<title>Under Maintenance</title>
|
|
|
|
<style type="text/css" media="screen">
|
|
body {
|
|
font-family: Helvetica, Arial, sans-serif;
|
|
font-size: 12px;
|
|
}
|
|
#hello {
|
|
height: 40px;
|
|
width: 300px;
|
|
position: absolute;
|
|
left: 50%;
|
|
top: 50%;
|
|
margin-left: -150px;
|
|
margin-top: -20px;
|
|
text-align: center;
|
|
}
|
|
#sub {
|
|
font-size: 0.8em;
|
|
}
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="hello">
|
|
We are currently under maintenace.
|
|
<div id="sub">Please try again in a few minutes.</div>
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|
|
|