This repository has been archived by the owner on Nov 24, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update index.html as Maintenance page
- Loading branch information
1 parent
1e82fab
commit 5f7d94d
Showing
1 changed file
with
50 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,50 @@ | ||
メンテナンス中 | ||
<!DOCTYPE html> | ||
<html lang="ja"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta content="width=device-width, initial-scale=1.0" name="viewport"> | ||
<title>メンテナンス中です。</title> | ||
<style> | ||
body { | ||
display: flex; | ||
flex-direction: column; | ||
justify-content: center; | ||
align-items: center; | ||
height: 100vh; | ||
margin: 0; | ||
font-family: Arial, sans-serif; | ||
text-align: center; | ||
background-color: #f0f0f0; | ||
} | ||
|
||
img { | ||
max-width: 75vw; | ||
width: auto; | ||
max-height: 75vh; | ||
height: auto; | ||
} | ||
|
||
h2 { | ||
font-size: 1.2em; | ||
} | ||
|
||
a { | ||
color: #007BFF; | ||
text-decoration: none; | ||
font-size: 18px; | ||
} | ||
a:hover { | ||
text-decoration: underline; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<div> | ||
<img src="assets/img/404.png" alt=""> | ||
<h2> | ||
メンテナンス中です。 | ||
</h2> | ||
<a href="index.html">トップページへ戻る</a> | ||
</div> | ||
</body> | ||
</html> |