MarioWeb/templates/Maintenance.html
2023-04-17 13:40:11 +08:00

40 lines
644 B
HTML

<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Mario Under maintenance</title>
<style>
*{
margin:0;
padding:0;
}
html{
height:100%;
}
body{
background:#F1FDFE;
height:100%;
}
.mom{
width:600px;
height:100px;
line-height:100px;
text-align:center;
font-size:30px;
border-width:5px;
border-style:dashed;
border-color: rgba(0, 128, 255, 0.48);
position:relative; left:50%;
margin-left:-300px; top:50%;
margin-top:-50px;
background:#e6fafd;
color: rgb(0, 0, 0);
}
</style>
</head>
<body>
<div class="mom">
Current Website is under maintenance...
</div>
</body>
</html>