From 3207f70d67620b69c2b3c6e0a26cd9171f9c4b1e Mon Sep 17 00:00:00 2001 From: Cesium Date: Sat, 6 Jan 2024 20:04:23 -0500 Subject: [PATCH] add app list --- index.html | 18 +++++++++++++++++- styles.css | 37 +++++++++++++++++++++++++++++++++++++ 2 files changed, 54 insertions(+), 1 deletion(-) diff --git a/index.html b/index.html index 934df4a..1c2c1b1 100644 --- a/index.html +++ b/index.html @@ -57,6 +57,22 @@ -

View on GitHub

+
+ +

Apps

+

If you're here with an account, you can log in to some of the apps I host.

+
+
+

VRChat Media

+ +
+
+

Minecraft Map

+ +
+
+
+ +

View on GitHub

diff --git a/styles.css b/styles.css index 6e2edd6..7e745b8 100644 --- a/styles.css +++ b/styles.css @@ -70,11 +70,48 @@ a { div.contact:hover { opacity: 1; } +.apps { + width: 550px; + margin:auto; + display: grid; + grid-template-areas: + 'one two three'; + grid-gap: 10px; + padding: 10px; + grid-auto-columns: 1fr; + grid-auto-rows: 1fr; +} +.app { + float: left; + width: 170px; + padding: 15px; + background-color: #232629; + border-radius: 10px; + text-align: center; + opacity: .9; + position: relative; + transition: opacity .25s; +} +.app a { + z-index: 10; + width: 100%; + height: 100%; + top: 0; + left: 0; + opacity: 0; + position: absolute; +} +div.app:hover { + opacity: 1; +} @media screen and (max-width:500px) { .contact { width: 100%; } + .app { + width: 100%; + } :root { width: 95%; }