fixed website rendering chars

This commit is contained in:
fuomag9
2026-02-27 22:34:35 +01:00
parent 461df12ae8
commit 494535d767
2 changed files with 23 additions and 16 deletions

View File

@@ -50,9 +50,9 @@
<main>
<!-- Hero -->
<section class="hero container">
<div class="hero-eyebrow">Open Source · Docker · Next.js</div>
<div class="hero-eyebrow">Open Source &middot; Docker &middot; Next.js</div>
<h1>Control Every Edge.</h1>
<p>The modern web interface for Caddy Server. Automatic HTTPS, geo blocking, traffic analytics, and a full audit trail — all in one place.</p>
<p>The modern web interface for Caddy Server. Automatic HTTPS, geo blocking, traffic analytics, and a full audit trail. All in one place.</p>
<div class="btn-group">
<a href="#deployment" class="btn btn-primary">Get Started</a>
@@ -81,12 +81,12 @@
<div class="card">
<div class="card-icon"></div>
<h3>Reverse Proxy</h3>
<p>Configure upstream pools, load balancing, custom headers, and per-host enable/disable with a clean editor.</p>
<p>Configure multiple upstreams, load balancing, custom headers, and per-host enable/disable with a clean editor.</p>
</div>
<div class="card">
<div class="card-icon">🔒</div>
<h3>Auto HTTPS</h3>
<p>Automatic TLS for every proxy host via Caddy ACME. Let's Encrypt, ZeroSSL, and Cloudflare DNS-01 out of the box.</p>
<p>Automatic TLS for every proxy host via Caddy ACME. Let&apos;s Encrypt, ZeroSSL, and Cloudflare DNS-01 out of the box.</p>
</div>
<div class="card">
<div class="card-icon">📈</div>
@@ -96,7 +96,7 @@
<div class="card">
<div class="card-icon">🌍</div>
<h3>Geo Blocking</h3>
<p>Block or allow by country, continent, ASN, CIDR, or exact IP per host, with priority allow-override rules.</p>
<p>Block or allow by country, continent, ASN, CIDR, or exact IP per host, with priority allow-override rules.</p>
</div>
<div class="card">
<div class="card-icon">🔑</div>
@@ -111,7 +111,7 @@
<div class="card">
<div class="card-icon">🛡️</div>
<h3>Certificate Visibility</h3>
<p>Issuer, expiry status, and health for every ACME-managed cert — no more guessing what Caddy obtained.</p>
<p>Issuer, expiry status, and health for every ACME-managed cert. No more guessing what Caddy obtained.</p>
</div>
<div class="card">
<div class="card-icon">🐳</div>
@@ -142,7 +142,7 @@
<div class="spotlight-text">
<div class="eyebrow">Proxy Management</div>
<h2>Every reverse proxy,<br>one interface.</h2>
<p>Search across all hosts, toggle them on or off instantly, and configure upstreams, load balancing, and access lists without touching a config file.</p>
<p>Search across all hosts, toggle them on or off instantly, and configure upstreams, load balancing, and access lists without touching a config file.</p>
</div>
<div class="spotlight-image">
<img src="assets/screenshots/proxy-hosts.png" alt="Proxy Hosts" loading="lazy" />

View File

@@ -23,7 +23,9 @@ body {
color: var(--fg);
font-family: var(--font-sans);
line-height: 1.6;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
overflow-x: hidden;
}
@@ -92,7 +94,7 @@ header {
/* ── Hero ── */
.hero {
padding: 9rem 0 5rem;
padding: 6.5rem 0 4rem;
text-align: center;
}
@@ -107,11 +109,12 @@ header {
}
.hero h1 {
font-size: clamp(3rem, 7vw, 5.5rem);
font-size: clamp(3rem, 7vw, 5.25rem);
font-weight: 900;
letter-spacing: -0.04em;
line-height: 1.0;
margin-bottom: 1.5rem;
line-height: 1.08;
margin-bottom: 1.25rem;
padding: 0 0.04em 0.12em;
background: linear-gradient(160deg, #fff 0%, #86868b 100%);
background-clip: text;
-webkit-background-clip: text;
@@ -121,8 +124,8 @@ header {
.hero > p {
font-size: 1.2rem;
color: var(--fg-muted);
max-width: 580px;
margin: 0 auto 2.5rem;
max-width: 680px;
margin: 0 auto 2rem;
line-height: 1.7;
}
@@ -130,7 +133,7 @@ header {
display: flex;
justify-content: center;
gap: 0.75rem;
margin-bottom: 5rem;
margin-bottom: 3rem;
}
.btn {
@@ -387,7 +390,7 @@ footer p {
.spotlight-text { max-width: 100%; }
.hero { padding: 6rem 0 4rem; }
.hero { padding: 5rem 0 3.5rem; }
.grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
@@ -396,6 +399,10 @@ footer p {
@media (max-width: 600px) {
.nav-links { display: none; }
.hero h1 { font-size: 2.75rem; }
.hero h1 {
font-size: 2.75rem;
line-height: 1.12;
padding-bottom: 0.1em;
}
.btn-group { flex-direction: column; align-items: center; }
}