From 22b1bfae81892382d838504db8334844cb0ff7f1 Mon Sep 17 00:00:00 2001 From: Salt Date: Sun, 16 Aug 2020 06:08:38 -0500 Subject: [PATCH] Add buttons back to the index --- index.php | 46 ++++++++++++++++++++++++++++++++++++++++++++-- styles/buttons.css | 31 +++++++++++++++++++++++++++++++ 2 files changed, 75 insertions(+), 2 deletions(-) create mode 100644 styles/buttons.css 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

+ +

Secondary Services

+ +

Games

+
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% +} +