diff --git a/about.html b/about.html index d260f71..1c6c638 100644 --- a/about.html +++ b/about.html @@ -12,7 +12,7 @@ - exozyme +

About

diff --git a/explore.html b/explore.html index b3712ae..4bd1263 100644 --- a/explore.html +++ b/explore.html @@ -12,7 +12,7 @@ - exozyme +

Explore

diff --git a/fuqs.html b/fuqs.html index 24b9a03..d951254 100644 --- a/fuqs.html +++ b/fuqs.html @@ -12,7 +12,7 @@ - exozyme +

Frequently Unasked Questions

diff --git a/img/montage.sh b/img/montage.sh index 75761b1..ccc6dc4 100755 --- a/img/montage.sh +++ b/img/montage.sh @@ -6,6 +6,6 @@ for old in *; do rsvg-convert "$old" -h 1440 -f svg -o "$new" done cd .. -montage -background white icons/*-large.svg -geometry 720x720 -tile 5x5 -border 30 -bordercolor white montage.png +montage -background white icons/*-large.svg -geometry 720x720 -tile 5x5 -border 30 -bordercolor transparent montage.png convert montage.png -resize 50% montage.webp rm icons/*-large.svg diff --git a/index.html b/index.html index 58fdd90..7a847b0 100644 --- a/index.html +++ b/index.html @@ -13,18 +13,23 @@ - exozyme +

The exozyme project

-
🏗️ 💻 👾 📖 🗨️
+
🏗️ 💻 👾 📖 🗨️

Build. Code. Hack. Learn. Discuss.

-
About    Quickstart    Explore    FUQs
+
+ About    + Quickstart    + Explore    + FUQs +

- #GiveUpGitHub! Join us for libre code hosting, or even better, contribute to forge federation development. + #GiveUpGitHub! Join us for libre code hosting, or even better, contribute to forge federation development.
diff --git a/quickstart.html b/quickstart.html index dcbf9f6..a4eeeff 100644 --- a/quickstart.html +++ b/quickstart.html @@ -12,7 +12,7 @@ - exozyme +

Quickstart Guide

@@ -22,8 +22,7 @@

Logging in

- You can log into our server either using remote desktop or SSH if you emailed us your public key. For remote desktop, go to the exodesk web client (or any other RDP client). You should see a login screen, and type in your exozyme username and password. You'll be dropped into a desktop, which might take a few seconds to load. + You can log into our server either using remote desktop or SSH if you emailed us your public key. For remote desktop, go to the exodesk web client (or any other RDP client). You should see a login screen, and type in your exozyme username and password. You'll be dropped into a desktop, which might take a few seconds to load.

In the bottom left corner you'll see the all-powerful application menu, which you can use to launch apps. You should change your password now using the passwd command. In your remote desktop, open the application menu and start the Konsole app, then type passwd to set a new password. You can install more apps using the Discover app store. Your remote desktop session will automatically be logged out after an hour of inactivity. diff --git a/style.css b/style.css index a8c1a0c..e16bad5 100644 --- a/style.css +++ b/style.css @@ -1,20 +1,6 @@ -/* Dark mode */ -@media (prefers-color-scheme: dark) { - body { - background-color: #111111; - color: #cccccc; - } - a:link { - color: #3eab86; - } - a:visited { - color: #4bd1a3; - } -} - body { font-family: DejaVu Sans Mono, Noto Sans Mono, Hack, monospace; - width: min(720px, 100%); + width: min(720px, 90%); margin-left: auto; margin-right: auto; text-align: center; @@ -33,6 +19,25 @@ p { line-height: 150%; } +a:link { + color: green; + font-weight: bold; +} +a:visited { + color: seagreen; +} + +picture, img { + border-radius: 0.5em; + max-width: 100%; +} + +.logo { + max-width: 360px; + width: 100%; + height: auto; +} + .emoji { font-size: 3em; } @@ -43,6 +48,7 @@ p { } .icon { + border-radius: unset; height: 3em; width: 3em; float: left; @@ -53,7 +59,26 @@ p { margin: auto; text-align: left; background: lightgreen; + border-radius: 0.5em; color: black; - padding: 1%; + padding: 1em; width: 50%; } + +/* Dark mode */ +@media (prefers-color-scheme: dark) { + body { + background-color: #111111; + color: #cccccc; + } + a:link { + color: mediumaquamarine; + } + a:visited { + color: mediumseagreen; + } + .info { + background: darkslategray; + color: white; + } +}