summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoreudoxia <uplink@distress.network>2021-01-01 00:00:09 -0500
committereudoxia <uplink@distress.network>2021-01-01 00:00:09 -0500
commit0d7454d8502006197a066ae4171a7bec3b338cec (patch)
tree7f1bb3b44d575fd3439d7d26d6f40af7dc95eb81
parent3ac65295c604ac4925ea15b6ede8d79452321d94 (diff)
front page initialized
-rwxr-xr-xindex.html51
1 files changed, 37 insertions, 14 deletions
diff --git a/index.html b/index.html
index a9732a7..2245ed1 100755
--- a/index.html
+++ b/index.html
@@ -1,27 +1,50 @@
-<!DOCTYPE html>
-<html>
+<!doctype html>
+<html lang="en">
<head>
-<meta charset="utf-8" />
-<meta name="viewport" content="width=device-width,initial-scale=1" />
-<link rel="apple-touch-icon" sizes="180x180" href="favicon/apple-touch-icon.png">
-<link rel="icon" type="image/png" sizes="32x32" href="favicon/favicon-32x32.png">
-<link rel="icon" type="image/png" sizes="16x16" href="favicon/favicon-16x16.png">
-<link rel="manifest" href="favicon/site.webmanifest">
+<meta charset="utf-8">
+<meta name="viewport" content="width=device-width, initial-scale=1.0">
+<link rel="stylesheet" href="/fonts/fonts.css">
+<link rel="stylesheet" href="/css/main.css">
+<link rel="apple-touch-icon" sizes="180x180" href="/favicon/apple-touch-icon.png">
+<link rel="icon" type="image/png" sizes="32x32" href="/favicon/favicon-32x32.png">
+<link rel="icon" type="image/png" sizes="16x16" href="/favicon/favicon-16x16.png">
+<link rel="manifest" href="/favicon/site.webmanifest">
<style>
- body {margin: 0; background: #111;}
- .bg {display: flex; justify-content: center; flex-direction: column; position: fixed; width: 100%; height: 100%; background-image: url("media/clouds-m.png"); background-size: cover; background-position: center center; background-attachment: fixed; image-rendering: crisp-edges; image-rendering: pixelated;}
- .logo {flex-direction: row; justify-content: flex-start;}
- img {height: 32px; margin-left: 10vw; display: block;}
+ .bg {display: flex; justify-content: center; flex-direction: column; min-height: 100vh; background-image: url("media/clouds-m.png"); background-size: cover; background-position: center center; background-attachment: fixed; image-rendering: crisp-edges; image-rendering: pixelated;}
+ .main {flex-direction: row; justify-content: flex-start; padding: 10vw;}
+ .main img {height: 32px; image-rendering: unset;}
+ nav {flex: none; width: unset; height: unset; position: static; padding: 0; background: none; border: none; overflow: hidden;}
+ nav pre {font-size: 0.75rem;}
+ @media screen and (max-width: 800px) {nav pre {font-size: 1rem;}}
</style>
<script>setTimeout(function(){var e=new Image;e.onload=function(){document.querySelector(".bg").style.backgroundImage="url("+e.src+")"},e.src="/media/clouds.png"},50);</script>
-<title>[coming soon] &mdash; DistressNetwork° </title>
+<title>DistressNetwork°</title>
</head>
<body>
+<a rel="me" href="https://x0r.be/@distressnetwork" style="display: none;">.</a>
<div class="bg">
-<div class="logo">
+<div class="main">
<img src="media/logo.svg" alt="DistressNetwork°">
+<nav>
+<pre>
+<span aria-hidden="true">├───</span><a href="/info">info</a>
+<span aria-hidden="true">├───</span><a href="/meta">meta</a>
+<span aria-hidden="true">│   ├───</span><a href="/meta/sitemap">sitemap</a>
+<span aria-hidden="true">│   ├───</span><a href="/meta/styletest">styletest</a>
+<span aria-hidden="true">│   └───</span><a href="/meta/todo">todo</a>
+<span aria-hidden="true">├───</span><a href="/software">software</a>
+<span aria-hidden="true">├───</span><a href="/visual">visual</a>
+<span aria-hidden="true">│   ├───</span><a href="/visual/composite">composite</a>
+<span aria-hidden="true">│   └───</span><a href="/visual/logotype">logotype</a>
+<span aria-hidden="true">└───</span><a href="/written">written</a>
+</pre>
+</nav>
</div>
</div>
+<footer>
+<p><a href="/info">About.</a> <a href="mailto:uplink@distress.network">Contact.</a> <a href="/cw.html">Content Warning.</a> <a href="https://git.distress.network">Git.</a> <a href="/meta/sitemap">Sitemap.</a> <a href="https://creativecommons.org/licenses/by-sa/4.0">CC BY-SA 4.0.</a></p>
+<img src="/media/distressnetwork-w.svg" alt="">
+</footer>
</body>
</html>