From cc23e5ad97cc71f3f4c3b5a0c0222775bcc581e7 Mon Sep 17 00:00:00 2001 From: pacnpal <183241239+pacnpal@users.noreply.github.com> Date: Sun, 16 Feb 2025 11:44:47 -0500 Subject: [PATCH] update index.html to add a new section for external sites and enhance styles for better presentation --- index.html | 7 ++++--- styles.css | 15 +++++++++++++++ 2 files changed, 19 insertions(+), 3 deletions(-) diff --git a/index.html b/index.html index a890de9..1372f90 100644 --- a/index.html +++ b/index.html @@ -15,9 +15,10 @@

About PacNPal

A retro tech enthusiast and a gamer, diving deep into coasters and vintage computing.

- +
+

Sites

+

Steadirect.com - Create clickable links for protocol URLs like Steam invites.

+
diff --git a/styles.css b/styles.css index 0aa2431..a82396b 100644 --- a/styles.css +++ b/styles.css @@ -15,3 +15,18 @@ h1, h2 { p { font-size: 1.2em; } +section { + padding: 20px; + margin: 20px auto; + max-width: 800px; + background-color: rgba(30, 30, 47, 0.7); + border-radius: 8px; +} +a { + color: #7fccff; + text-decoration: none; + transition: color 0.3s ease; +} +a:hover { + color: #ffcc00; +}