diff --git a/index.php b/index.php index cdc5143..c5745ac 100644 --- a/index.php +++ b/index.php @@ -2,13 +2,55 @@ + + + 9iron
-

This Is a Test

-

It has to be.

+

Core Services

+
+ + +

Gitea

+

Git repository host and related services

+
+ + +

Nextcloud

+

File storage and collaboration, feed reader, task organizer, and more

+
+ + +

Matrix

+

Federated messaging client, more similar to Slack than Discord

+
+
+

Secondary Services

+
+ + +

Pleroma

+

Federated microblogging service, similar to Twitter

+
+
+

Games

+
+ +

Minecraft

+

Modded Minecraft is one of our most-common time wasters

+
+ +

Terraria

+

A game we've sunk just as much time into as Minecraft. Sometimes modded, sometimes not

+
+ +

Garry's Mod

+

It's second banana to other games, but we may have a server up from time to time

+
+
diff --git a/styles/buttons.css b/styles/buttons.css new file mode 100644 index 0000000..2c38972 --- /dev/null +++ b/styles/buttons.css @@ -0,0 +1,31 @@ +/* + * buttons.css + * Copyright (C) 2020 Vintage Salt + * + * Distributed under terms of the MIT license. + */ + +/* BIG ICON BUTTONS + * Used on the index for services */ +div.iconbuttoncontainer { + display: grid; + grid-template-columns: 1fr 1fr 1fr; + grid-template-rows: auto auto auto auto; +} +a.iconbutton { + background: var(--background-bright); + border-radius: 8px; + box-shadow: 5px 5px var(--shadow); + display: block; + margin: 0.5em; + padding: 1em; + text-align: center; +} +a.iconbutton:hover { + background: var(--link-hover); + color: var(--background); +} +a.iconbutton i { + font-size: 400% +} +