minor updates

This commit is contained in:
Chris Bell 2025-06-23 00:13:41 -05:00
parent ac44ada496
commit 86cc1260c1
2 changed files with 18 additions and 3 deletions

View File

@ -24,11 +24,11 @@
<section class="hero">
<h1>SessionZero</h1>
<p class="tagline">A TTRPG companion that gets out of your way</p>
<div class="status-badge">Status: Work in Progress</div>
<a href="https://git.bellsworne.tech/Bellsworne/SessionZeroWeb">Work in progress—View the source code</a>
</section>
<section class="features">
<h2>Coming Soon</h2>
<h2>Features</h2>
<div class="feature-grid">
<div class="feature-card">
<h3>Characters</h3>

View File

@ -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;
}