initial devcontainer setup
This commit is contained in:
commit
b9b7aa6a08
14 changed files with 411 additions and 0 deletions
38
.devcontainer/offline.html
Normal file
38
.devcontainer/offline.html
Normal file
|
@ -0,0 +1,38 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Service Unavailable</title>
|
||||
<style>
|
||||
body {
|
||||
font-family: Arial, sans-serif;
|
||||
text-align: center;
|
||||
padding: 50px;
|
||||
}
|
||||
.container {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
height: 100vh;
|
||||
}
|
||||
h1 {
|
||||
font-size: 50px;
|
||||
color: #333;
|
||||
}
|
||||
p {
|
||||
font-size: 20px;
|
||||
color: #666;
|
||||
}
|
||||
</style>
|
||||
<meta http-equiv="refresh" content="2">
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<h1>Service Unavailable</h1>
|
||||
<p>The service is currently unavailable.</p>
|
||||
<p>This page will refresh every 2 seconds.</p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue