This commit is contained in:
Sophia Atkinson 2023-01-25 19:05:08 -08:00
parent 8e3d5b7d5c
commit 56b8059b3b
4 changed files with 87 additions and 6 deletions

8
.htaccess Normal file
View File

@ -0,0 +1,8 @@
ErrorDocument 404 /page/404.html
ErrorDocument 403 /page/403.html
#SymLinks Start
RewriteEngine On
RewriteRule ^403$ /page/403.html
RewriteRule ^404$ /page/404.html
#SymLinks End

View File

@ -1,11 +1,10 @@
/*
Sophia Darkmode, (Basic As Shit)
CSS by Sophia Atkinson
https://sophia.wtf
CC BY-NC 4.0
*/
@import url("https://cdn.jsdelivr.net/npm/fork-awesome@1.2.0/css/fork-awesome.min.css");
@import url('https://fonts.googleapis.com/css2?family=DotGothic16&family=Ubuntu+Mono:ital,wght@0,400;0,700;1,400&display=swap');
body {
background: #141729;
}
@ -21,10 +20,22 @@ iframe,
object {
max-width: 100%;
}
h1,h2,h3,h4,h5,h6 {
h1 {
color: #fff;
font-family: monospace, monospace;
font-size: 2em;
font-size: 35px;
line-height: 1.5em;
}
h2 {
color: #fff;
font-family: monospace, monospace;
font-size: 25px;
line-height: 1.5em;
}
h3 {
color: #fff;
font-family: monospace, monospace;
font-size: 20px;
line-height: 1.5em;
}
img.avatar{
@ -37,13 +48,17 @@ img.avatar{
div.footer{
max-width: 100%;
max-height: 100%;
position: absolute;
left: 0;
bottom: 0;
height: 100px;
width: 100%;
overflow: hidden;
}
sub {
color: #fff;
font-family: monospace, monospace;
font-size: 0.8em;
position: relative;
top: 0.5em;
}
sup {

29
page/403.html Normal file
View File

@ -0,0 +1,29 @@
<!DOCTYPE html>
<html>
<head>
<title>Error 403 &#124; Wade Waters</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<link rel="icon" type="image/png" href="/img/favicon-16.webp" sizes="16x16">
<link rel="icon" type="image/png" href="/img/favicon-32.webp" sizes="32x32">
<link rel="icon" type="image/png" href="/img/favicon-64.webp" sizes="64x64">
<link rel="icon" type="image/png" href="/img/favicon-128.webp" sizes="128x128">
<meta property="og:url" content="https://wade.sop.wtf">
<meta property="og:type" content="website">
<meta property="og:title" content="Wade Waters">
<meta property="og:image" content="https://cdn.statically.io/og/theme=dark/Wade%20Waters.jpg">
<link rel="stylesheet" href="/main.css">
</head>
<div class="align-center">
<img src="/img/avatar.webp" alt="Avatar" class="avatar">
<h1>Error 403</h1>
<h2>Access Forbidden</h2>
<h3><a href="/">Home</a></h3>
</div>
<div class="footer">
<p class="align-center">&copy;2023 Wade Waters</p>
<p class="align-center">Developed by <a href="https://sophia.wtf">Sophia Atkinson</a></p>
</div>
</body>
</html>

29
page/404.html Normal file
View File

@ -0,0 +1,29 @@
<!DOCTYPE html>
<html>
<head>
<title>Error 404 &#124; Wade Waters</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<link rel="icon" type="image/png" href="/img/favicon-16.webp" sizes="16x16">
<link rel="icon" type="image/png" href="/img/favicon-32.webp" sizes="32x32">
<link rel="icon" type="image/png" href="/img/favicon-64.webp" sizes="64x64">
<link rel="icon" type="image/png" href="/img/favicon-128.webp" sizes="128x128">
<meta property="og:url" content="https://wade.sop.wtf">
<meta property="og:type" content="website">
<meta property="og:title" content="Wade Waters">
<meta property="og:image" content="https://cdn.statically.io/og/theme=dark/Wade%20Waters.jpg">
<link rel="stylesheet" href="/main.css">
</head>
<div class="align-center">
<img src="/img/avatar.webp" alt="Avatar" class="avatar">
<h1>Error 404</h1>
<h2>Page Not Found</h2>
<h3><a href="/">Home</a></h3>
</div>
<div class="footer">
<p class="align-center">&copy;2023 Wade Waters</p>
<p class="align-center">Developed by <a href="https://sophia.wtf">Sophia Atkinson</a></p>
</div>
</body>
</html>