From 86cc1260c1a1f849e54cdd139cb9ea7e7bcb4729 Mon Sep 17 00:00:00 2001 From: Chris Bell Date: Mon, 23 Jun 2025 00:13:41 -0500 Subject: [PATCH] minor updates --- index.html | 4 ++-- styles.css | 17 ++++++++++++++++- 2 files changed, 18 insertions(+), 3 deletions(-) diff --git a/index.html b/index.html index 1662f07..f027870 100644 --- a/index.html +++ b/index.html @@ -24,11 +24,11 @@

SessionZero

A TTRPG companion that gets out of your way

-
Status: Work in Progress
+ Work in progress—View the source code
-

Coming Soon

+

Features

Characters

diff --git a/styles.css b/styles.css index 60e024a..c44e331 100644 --- a/styles.css +++ b/styles.css @@ -52,7 +52,7 @@ header { .nav-content { max-width: 1200px; - margin: 0 auto; + margin: 0; width: 100%; } @@ -112,6 +112,21 @@ h1 { font-weight: bold; } +.hero a { + display: inline-block; + text-decoration: none; + color: var(--text-color); + background-color: var(--primary-color); + padding: 0.75rem 1.5rem; + border-radius: 4px; + transition: background-color 0.2s ease; +} + +.hero a:hover { + background-color: var(--secondary-color); + transition: background-color 0.2s ease; +} + .features { padding: 4rem 0; }