test(config): 测试 404 页面

This commit is contained in:
Ad-closeNN
2025-09-06 17:21:51 +08:00
parent 3034f1ac34
commit b9ae6a7ea7
+86
View File
@@ -0,0 +1,86 @@
<!DOCTYPE html>
<html>
<head>
<title>The page you were looking for doesn't exist (404)</title>
<meta name="viewport" content="width=device-width,initial-scale=1">
<style>
body {
height: 100%;
width: 100%;
background: #fefefe url(construction.png)center bottom fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
color: #2E2F30;
font-family: sans-serif;
margin: 0;
}
footer {
position: absolute;
bottom: 1%;
width: 100%;
text-align: center;
font-size: .6em;
color: #fff
}
a {
color: #fff;
}
a:hover {
color: #393939;
}
.dialog {
float: left;
text-align: left;
width: 50%;
margin: 2% auto 0;
padding-left: 10%;
}
h1 {
font-size: 3.5em;
color: #393939;
line-height: 1em;
}
h2 {
font-size: 2em;
color: #393939;
line-height: .5em;
}
p {
font-size: 1.4em;
color: #393939;
}
@media only screen and (max-width: 767px) {
.dialog {
float: none;
text-align: center;
width: 90%;
}
}
</style>
</head>
<body>
<!-- This file lives in public/404.html -->
<div>
<div class="dialog">
<h1>Oops!</h1>
<p>We were unable to find the page you were looking for, but working hard to resolve this issue.</p>
</div>
</div>
</body>
<footer><a href="http://www.free404.com" target="_blank">free404.com</a></footer>
</html>