From 08c74ec5e0176ebd83d9036c0c90ec6cf2761b2b Mon Sep 17 00:00:00 2001 From: Fennel Kora Date: Mon, 1 Jul 2024 03:03:53 -0400 Subject: [PATCH] initial layout and styles --- index.html | 44 ++++++++++++++++++++++++++++++++++++++++++++ style.css | 49 +++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 93 insertions(+) create mode 100644 index.html create mode 100644 style.css diff --git a/index.html b/index.html new file mode 100644 index 0000000..e0e496c --- /dev/null +++ b/index.html @@ -0,0 +1,44 @@ + + + + + landing + + + +
+ +
+
+

social

+

Sharkey

+

Writefreely

+

Matrix

+
+
+
+

a/v

+

Invidious

+
+
+
+

utility

+

Nextcloud

+

SearXNG

+

Forgejo

+
+
+
+

zoner.work is a network of hosted services and community spaces administrated by fennel kora. + this network's purpose is to maintain inclusive, safe spaces for those who need them that stand apart from a corporatized, centralized web.

+

All account-based services are open to registration by invite. Please reach out to fen for details. Sharkey is open for public registrations, + though accounts will still require systematic approval.

+
+
+ + \ No newline at end of file diff --git a/style.css b/style.css new file mode 100644 index 0000000..0cb9c16 --- /dev/null +++ b/style.css @@ -0,0 +1,49 @@ +body { + background-image: url("https://i.zoner.work/firefish/kyushu.jpg"); + background-repeat: no-repeat; + background-attachment: fixed; + background-size: cover; + font-family: sans-serif; + color: white; +} + +.wrapper { + display: flex; + flex-flow: row wrap; + margin-top: 150px; + margin-left: auto; + margin-right: auto; + width: 50%; + padding:2em; + background-color: #0D1117; + border-radius: 40px; + box-shadow: 3px 3px 5px #111111; + justify-content: space-around; +} + +p { + padding: 0px; + margin: 0.8em; + font-size: 0.9em +} + +.linkblock { + flex: 1; +} + +a { + color: white; +} + +a:hover { + color: orangered +} + +#description { + order: 6; + width: 100%; +} + +hr { + margin: 2em; +} \ No newline at end of file