First commit

This commit is contained in:
Fern Garden 2023-11-14 18:31:23 +08:00
commit 8aa070d27c
8 changed files with 81 additions and 0 deletions

16
403.html Normal file
View file

@ -0,0 +1,16 @@
<!DOCTYPE HTML>
<html>
<head>
<title>meow!! / 403</title>
<meta charset="utf-8"/>
<link rel="stylesheet" href="/css/40x.css?v20220326">
<link rel="icon" type="image/x-icon" href="/images/favicon.png"/>
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<div class="center">
<p class="message">403 - access denied</p>
</div>
</body>
</html>

16
404.html Normal file
View file

@ -0,0 +1,16 @@
<!DOCTYPE HTML>
<html>
<head>
<title>meow!! / 404</title>
<meta charset="utf-8"/>
<link rel="stylesheet" href="/css/40x.css?v20220326">
<link rel="icon" type="image/x-icon" href="/images/favicon.png"/>
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<div class="center">
<p class="message">404 - not found</p>
</div>
</body>
</html>

16
css/40x.css Normal file
View file

@ -0,0 +1,16 @@
body {
background: #151515;
color: #e8e3e3
}
.center {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
text-align: center;
}
.message {
font-size: 48px;
}

17
css/index.css Normal file
View file

@ -0,0 +1,17 @@
body {
background: #151515;
color: #e8e3e3;
}
.center {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
text-align: center;
}
.trans_cat img {
width: 256px;
margin: 12px;
}

BIN
images/favicon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

BIN
images/server-icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 708 B

BIN
images/trans_cat.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.2 KiB

16
index.html Normal file
View file

@ -0,0 +1,16 @@
<!DOCTYPE HTML>
<html>
<head>
<title>meow!!</title>
<meta charset="utf-8"/>
<link rel="stylesheet" href="/css/index.css?v20220326">
<link rel="icon" type="image/x-icon" href="/images/favicon.png"/>
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<div class="center">
<p class="trans_cat"><img src="/images/trans_cat.png" alt="Pixel art of a grey cat next to a transgender flag."></p>
</div>
</body>
</html>