diff --git a/.htaccess b/.htaccess new file mode 100644 index 0000000..ff76eef --- /dev/null +++ b/.htaccess @@ -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 \ No newline at end of file diff --git a/main.css b/main.css index 67103c6..b5740e3 100644 --- a/main.css +++ b/main.css @@ -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 { diff --git a/page/403.html b/page/403.html new file mode 100644 index 0000000..7437d45 --- /dev/null +++ b/page/403.html @@ -0,0 +1,29 @@ + + + + + Error 403 | Wade Waters + + + + + + + + + + + + +
+ Avatar +

Error 403

+

Access Forbidden

+

Home

+
+ + + \ No newline at end of file diff --git a/page/404.html b/page/404.html new file mode 100644 index 0000000..d8ba521 --- /dev/null +++ b/page/404.html @@ -0,0 +1,29 @@ + + + + + Error 404 | Wade Waters + + + + + + + + + + + + +
+ Avatar +

Error 404

+

Page Not Found

+

Home

+
+ + + \ No newline at end of file