Compare commits
8
Commits
b3f1deeb49
...
ai/issue-7
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
1fa64edd4f | ||
|
|
a23c8ee0e5 | ||
|
|
4dbdd936f5 | ||
|
|
ed8e9d1ea2 | ||
|
|
c04628c535 | ||
|
|
236ad5dbcb | ||
|
|
99a54454e4 | ||
|
|
d3a1a5cafa |
@@ -0,0 +1,8 @@
|
|||||||
|
.git
|
||||||
|
.gitea
|
||||||
|
.agents-workflow
|
||||||
|
Dockerfile
|
||||||
|
.dockerignore
|
||||||
|
AGENTS.md
|
||||||
|
README.md
|
||||||
|
*.md
|
||||||
@@ -0,0 +1,55 @@
|
|||||||
|
name: build-and-push
|
||||||
|
run-name: "build-and-push · ${{ gitea.ref_name }}"
|
||||||
|
# Builds the homepage image and pushes it to this Gitea instance's container
|
||||||
|
# registry as git.ffaerber.duckdns.org/ffaerber/homepage:latest on every push to main.
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: [main]
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
contents: read
|
||||||
|
packages: write
|
||||||
|
|
||||||
|
env:
|
||||||
|
IMAGE: git.ffaerber.duckdns.org/ffaerber/homepage
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build-and-push:
|
||||||
|
runs-on: ci-runner
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Set up Docker Buildx
|
||||||
|
uses: docker/setup-buildx-action@v3
|
||||||
|
|
||||||
|
- name: Login to container registry
|
||||||
|
uses: docker/login-action@v3
|
||||||
|
with:
|
||||||
|
registry: git.ffaerber.duckdns.org
|
||||||
|
username: ffaerber
|
||||||
|
password: ${{ secrets.REGISTRY_TOKEN }}
|
||||||
|
|
||||||
|
- name: Build and push
|
||||||
|
uses: docker/build-push-action@v6
|
||||||
|
with:
|
||||||
|
context: .
|
||||||
|
push: true
|
||||||
|
tags: |
|
||||||
|
${{ env.IMAGE }}:latest
|
||||||
|
${{ env.IMAGE }}:${{ gitea.sha }}
|
||||||
|
provenance: false
|
||||||
|
|
||||||
|
# Hand off to the homelab stack: dispatch its deploy workflow so the swarm re-resolves
|
||||||
|
# :latest and rolls the homepage service. Deterministic — no agent involved. TOKEN_DEPLOY
|
||||||
|
# is the `deploy` bot (write:repository, write collaborator on ffaerber/homelab only).
|
||||||
|
- name: Trigger homelab deploy
|
||||||
|
env:
|
||||||
|
TD: ${{ secrets.TOKEN_DEPLOY }}
|
||||||
|
run: |
|
||||||
|
[ -n "$TD" ] || { echo "TOKEN_DEPLOY not set - skipping deploy dispatch"; exit 0; }
|
||||||
|
curl -sS -o /dev/null -w "homelab deploy dispatch -> HTTP %{http_code}\n" -X POST \
|
||||||
|
-H "Authorization: token $TD" -H "Content-Type: application/json" \
|
||||||
|
"${GITHUB_SERVER_URL}/api/v1/repos/ffaerber/homelab/actions/workflows/deploy.yml/dispatches" \
|
||||||
|
-d '{"ref":"main"}'
|
||||||
+11
@@ -0,0 +1,11 @@
|
|||||||
|
FROM nginx:1.27-alpine
|
||||||
|
|
||||||
|
LABEL org.opencontainers.image.title="ffaerber/homepage" \
|
||||||
|
org.opencontainers.image.source="https://git.ffaerber.duckdns.org/ffaerber/homepage"
|
||||||
|
|
||||||
|
COPY index.html styles.css /usr/share/nginx/html/
|
||||||
|
|
||||||
|
EXPOSE 80
|
||||||
|
|
||||||
|
HEALTHCHECK --interval=30s --timeout=3s --start-period=5s --retries=3 \
|
||||||
|
CMD wget -qO- http://127.0.0.1/ >/dev/null 2>&1 || exit 1
|
||||||
+229
@@ -0,0 +1,229 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<meta name="description" content="ffaerber — personal projects: CipherDolls, decentralized apps on Gnosis/Ethereum Swarm, self-hosted speech AI, and Ethereum infrastructure.">
|
||||||
|
<title>ffaerber — projects</title>
|
||||||
|
<link rel="stylesheet" href="styles.css">
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<header class="site-header">
|
||||||
|
<div class="container">
|
||||||
|
<h1 class="site-title">ffaerber</h1>
|
||||||
|
<p class="site-tagline">Personal projects — AI companions, decentralized apps, GPU speech services, Ethereum infra.</p>
|
||||||
|
</div>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main class="container">
|
||||||
|
|
||||||
|
<!-- Section: CipherDolls -->
|
||||||
|
<section class="section" id="cipherdolls">
|
||||||
|
<div class="section-head">
|
||||||
|
<h2 class="section-title">CipherDolls — AI companion platform</h2>
|
||||||
|
<p class="section-lede">What if an AI companion wasn't just an app, but something physical in your room? CipherDolls is my biggest project: an AI companion platform where characters can talk, listen — and live inside real devices.</p>
|
||||||
|
<a class="section-link" href="https://github.com/cipherdolls" rel="noopener noreferrer" target="_blank">github.com/cipherdolls ↗</a>
|
||||||
|
</div>
|
||||||
|
<div class="cards">
|
||||||
|
|
||||||
|
<article class="card">
|
||||||
|
<h3 class="card-name">core</h3>
|
||||||
|
<p class="card-story">The brain of the platform: one backend that handles chat, voice, memory, payments and the connection to the physical dolls.</p>
|
||||||
|
<ul class="tags">
|
||||||
|
<li>Bun</li><li>Elysia</li><li>Prisma</li><li>PostgreSQL</li><li>Redis</li><li>MQTT</li>
|
||||||
|
</ul>
|
||||||
|
<a class="card-link" href="https://github.com/cipherdolls/core" rel="noopener noreferrer" target="_blank">View on GitHub ↗</a>
|
||||||
|
</article>
|
||||||
|
|
||||||
|
<article class="card">
|
||||||
|
<h3 class="card-name">server</h3>
|
||||||
|
<p class="card-story">A slimmed-down core for anyone who just wants to chat with a character — the same architecture, none of the complexity.</p>
|
||||||
|
<ul class="tags">
|
||||||
|
<li>Bun</li><li>Elysia</li><li>Prisma</li><li>PostgreSQL</li>
|
||||||
|
</ul>
|
||||||
|
<a class="card-link" href="https://github.com/cipherdolls/server" rel="noopener noreferrer" target="_blank">View on GitHub ↗</a>
|
||||||
|
</article>
|
||||||
|
|
||||||
|
<article class="card">
|
||||||
|
<h3 class="card-name">webapp</h3>
|
||||||
|
<p class="card-story">The web face of CipherDolls — where you meet the characters.</p>
|
||||||
|
<ul class="tags">
|
||||||
|
<li>React Router</li><li>TypeScript</li><li>Tailwind</li>
|
||||||
|
</ul>
|
||||||
|
<a class="card-link" href="https://github.com/cipherdolls/webapp" rel="noopener noreferrer" target="_blank">View on GitHub ↗</a>
|
||||||
|
</article>
|
||||||
|
|
||||||
|
<article class="card">
|
||||||
|
<h3 class="card-name">stream-player</h3>
|
||||||
|
<p class="card-story">Voices need to arrive instantly. This streams the AI's speech to your browser the moment it is generated.</p>
|
||||||
|
<ul class="tags">
|
||||||
|
<li>TypeScript</li><li>Redis</li><li>WebSocket</li>
|
||||||
|
</ul>
|
||||||
|
<a class="card-link" href="https://github.com/cipherdolls/stream-player" rel="noopener noreferrer" target="_blank">View on GitHub ↗</a>
|
||||||
|
</article>
|
||||||
|
|
||||||
|
<article class="card">
|
||||||
|
<h3 class="card-name">stream-recorder</h3>
|
||||||
|
<p class="card-story">The listening half: your voice streams in, gets converted on the fly, and lands with the AI.</p>
|
||||||
|
<ul class="tags">
|
||||||
|
<li>TypeScript</li><li>WebSocket</li><li>ffmpeg</li>
|
||||||
|
</ul>
|
||||||
|
<a class="card-link" href="https://github.com/cipherdolls/stream-recorder" rel="noopener noreferrer" target="_blank">View on GitHub ↗</a>
|
||||||
|
</article>
|
||||||
|
|
||||||
|
<article class="card">
|
||||||
|
<h3 class="card-name">firmware-watcher</h3>
|
||||||
|
<p class="card-story">The magic moment: a real device on your desk wakes up, connects, and speaks with the character's voice.</p>
|
||||||
|
<ul class="tags">
|
||||||
|
<li>C</li><li>ESP-IDF</li><li>ESP32-S3</li><li>LVGL</li>
|
||||||
|
</ul>
|
||||||
|
<a class="card-link" href="https://github.com/cipherdolls/firmware-watcher" rel="noopener noreferrer" target="_blank">View on GitHub ↗</a>
|
||||||
|
</article>
|
||||||
|
|
||||||
|
<article class="card">
|
||||||
|
<h3 class="card-name">firmware-m5sticks3</h3>
|
||||||
|
<p class="card-story">The pocket version: the same companion on a tiny stick with a display and a microphone.</p>
|
||||||
|
<ul class="tags">
|
||||||
|
<li>C</li><li>ESP-IDF</li><li>ESP32-S3</li>
|
||||||
|
</ul>
|
||||||
|
<a class="card-link" href="https://github.com/cipherdolls/firmware-m5sticks3" rel="noopener noreferrer" target="_blank">View on GitHub ↗</a>
|
||||||
|
</article>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Section: Decentralized apps -->
|
||||||
|
<section class="section" id="dapps">
|
||||||
|
<div class="section-head">
|
||||||
|
<h2 class="section-title">Decentralized apps — Gnosis Chain + Ethereum Swarm</h2>
|
||||||
|
<p class="section-lede">Can the web run without servers? These apps are my experiments in building things that nobody can switch off.</p>
|
||||||
|
</div>
|
||||||
|
<div class="cards">
|
||||||
|
|
||||||
|
<article class="card">
|
||||||
|
<h3 class="card-name">SwarmChat</h3>
|
||||||
|
<p class="card-story">I was thinking about how cool it would be to have a web3-based chat system. Is it possible to communicate without any servers? With Swarm, a decentralised technology, this is now possible — messages travel encrypted through the network itself, and your wallet is your identity.</p>
|
||||||
|
<ul class="tags">
|
||||||
|
<li>Solidity</li><li>React</li><li>Swarm PSS</li><li>WebRTC</li>
|
||||||
|
</ul>
|
||||||
|
<a class="card-link" href="https://github.com/ffaerber/SwarmChat" rel="noopener noreferrer" target="_blank">View on GitHub ↗</a>
|
||||||
|
</article>
|
||||||
|
|
||||||
|
<article class="card">
|
||||||
|
<h3 class="card-name">Pink Chainsaw</h3>
|
||||||
|
<p class="card-story">I wanted an imageboard where content can't just disappear. Images live on Swarm, and every post pays a little to keep them alive — good content earns you cheaper posting, bad content gets expensive.</p>
|
||||||
|
<ul class="tags">
|
||||||
|
<li>Solidity</li><li>Foundry</li><li>React</li><li>Swarm</li>
|
||||||
|
</ul>
|
||||||
|
<a class="card-link" href="https://github.com/ffaerber/pinkchainsaw" rel="noopener noreferrer" target="_blank">View on GitHub ↗</a>
|
||||||
|
</article>
|
||||||
|
|
||||||
|
<article class="card">
|
||||||
|
<h3 class="card-name">FreeeMarket</h3>
|
||||||
|
<p class="card-story">Can you run a marketplace with no company behind it? Anyone opens a shop, buyers pay in stablecoins, and on-chain escrow replaces the middleman. Deliberately fee-free — a farmers' market for the internet.</p>
|
||||||
|
<ul class="tags">
|
||||||
|
<li>Solidity</li><li>Gnosis Chain</li><li>Swarm</li>
|
||||||
|
</ul>
|
||||||
|
<a class="card-link" href="https://github.com/ffaerber/freeemarket" rel="noopener noreferrer" target="_blank">View on GitHub ↗</a>
|
||||||
|
</article>
|
||||||
|
|
||||||
|
<article class="card">
|
||||||
|
<h3 class="card-name">WalletMatrix</h3>
|
||||||
|
<p class="card-story">My tokens were scattered across a dozen chains and I could never see the whole picture. So I built a pivot table for your wallet: tokens as rows, chains as columns — drag a cell from one chain to another to bridge.</p>
|
||||||
|
<ul class="tags">
|
||||||
|
<li>React</li><li>TypeScript</li><li>Vite</li>
|
||||||
|
</ul>
|
||||||
|
<a class="card-link" href="https://github.com/ffaerber/walletmatrix" rel="noopener noreferrer" target="_blank">View on GitHub ↗</a>
|
||||||
|
</article>
|
||||||
|
|
||||||
|
<article class="card">
|
||||||
|
<h3 class="card-name">swarm-connect</h3>
|
||||||
|
<p class="card-story">Every Swarm dApp I built needed the same onboarding dance: wallet, network, Bee node, postage stamp. So I packaged it once — a single React button that walks users through all of it.</p>
|
||||||
|
<ul class="tags">
|
||||||
|
<li>React</li><li>wagmi</li><li>npm package</li>
|
||||||
|
</ul>
|
||||||
|
<a class="card-link" href="https://github.com/ffaerber/swarm-connect" rel="noopener noreferrer" target="_blank">View on GitHub ↗</a>
|
||||||
|
</article>
|
||||||
|
|
||||||
|
<article class="card">
|
||||||
|
<h3 class="card-name">opentab</h3>
|
||||||
|
<p class="card-story">An experiment with onchain apps on Base.</p>
|
||||||
|
<ul class="tags">
|
||||||
|
<li>Next.js</li><li>TypeScript</li>
|
||||||
|
</ul>
|
||||||
|
<a class="card-link" href="https://github.com/ffaerber/opentab" rel="noopener noreferrer" target="_blank">View on GitHub ↗</a>
|
||||||
|
</article>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Section: AI on GPU -->
|
||||||
|
<section class="section" id="ai-gpu">
|
||||||
|
<div class="section-head">
|
||||||
|
<h2 class="section-title">AI on GPU — self-hosted speech services</h2>
|
||||||
|
<p class="section-lede">I wanted my projects to hear and speak without sending a single word to the cloud — so these run on my own GPU.</p>
|
||||||
|
</div>
|
||||||
|
<div class="cards">
|
||||||
|
|
||||||
|
<article class="card">
|
||||||
|
<h3 class="card-name">whisper-cuda</h3>
|
||||||
|
<p class="card-story">Speech-to-text on my own GPU: no cloud, no per-minute pricing. Whisper packaged for the RTX 5090 so anything in my homelab can transcribe audio locally.</p>
|
||||||
|
<ul class="tags">
|
||||||
|
<li>Python</li><li>FastAPI</li><li>CUDA</li>
|
||||||
|
</ul>
|
||||||
|
<a class="card-link" href="https://github.com/ffaerber/whisper-cuda" rel="noopener noreferrer" target="_blank">View on GitHub ↗</a>
|
||||||
|
</article>
|
||||||
|
|
||||||
|
<article class="card">
|
||||||
|
<h3 class="card-name">kokoro-cuda</h3>
|
||||||
|
<p class="card-story">Giving my projects a voice: a small self-hosted TTS service with 49 voices in 9 languages, fast enough to stream. Type text, hear it instantly.</p>
|
||||||
|
<ul class="tags">
|
||||||
|
<li>Python</li><li>FastAPI</li><li>CUDA</li>
|
||||||
|
</ul>
|
||||||
|
<a class="card-link" href="https://github.com/ffaerber/kokoro-cuda" rel="noopener noreferrer" target="_blank">View on GitHub ↗</a>
|
||||||
|
</article>
|
||||||
|
|
||||||
|
<article class="card">
|
||||||
|
<h3 class="card-name">voxtral-cuda</h3>
|
||||||
|
<p class="card-story">The newest open speech models are amazing but heavy. This runs Mistral's Voxtral on a local GPU, so state-of-the-art speech stays in my own house.</p>
|
||||||
|
<ul class="tags">
|
||||||
|
<li>Python</li><li>vLLM</li><li>CUDA</li>
|
||||||
|
</ul>
|
||||||
|
<a class="card-link" href="https://github.com/ffaerber/voxtral-cuda" rel="noopener noreferrer" target="_blank">View on GitHub ↗</a>
|
||||||
|
</article>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Section: Ethereum infrastructure -->
|
||||||
|
<section class="section" id="eth-infra">
|
||||||
|
<div class="section-head">
|
||||||
|
<h2 class="section-title">Ethereum infrastructure</h2>
|
||||||
|
</div>
|
||||||
|
<div class="cards">
|
||||||
|
|
||||||
|
<article class="card">
|
||||||
|
<h3 class="card-name">stakingtracker</h3>
|
||||||
|
<p class="card-story">Tax season with an ETH validator used to mean paid APIs and spreadsheets. Now my own beacon node does the work: a small self-hosted app that records rewards daily and prints the tax report.</p>
|
||||||
|
<ul class="tags">
|
||||||
|
<li>TypeScript</li><li>Fastify</li><li>SQLite</li>
|
||||||
|
</ul>
|
||||||
|
<a class="card-link" href="https://github.com/ffaerber/stakingtracker" rel="noopener noreferrer" target="_blank">View on GitHub ↗</a>
|
||||||
|
</article>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="site-footer">
|
||||||
|
<div class="container">
|
||||||
|
<nav class="footer-links">
|
||||||
|
<a href="https://github.com/ffaerber" rel="noopener noreferrer" target="_blank">github.com/ffaerber ↗</a>
|
||||||
|
<a href="https://github.com/cipherdolls" rel="noopener noreferrer" target="_blank">github.com/cipherdolls ↗</a>
|
||||||
|
</nav>
|
||||||
|
<p class="footer-meta">Served from a container built in <a href="https://git.ffaerber.duckdns.org/ffaerber/homepage" rel="noopener">ffaerber/homepage</a>.</p>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
+197
@@ -0,0 +1,197 @@
|
|||||||
|
:root {
|
||||||
|
--fg: #e6edf3;
|
||||||
|
--muted: #9198a1;
|
||||||
|
--bg: #0d1117;
|
||||||
|
--bg-elev: #161b22;
|
||||||
|
--accent: #58a6ff;
|
||||||
|
--border: #30363d;
|
||||||
|
--tag-bg: #1f2630;
|
||||||
|
--tag-fg: #8a929e;
|
||||||
|
--radius: 12px;
|
||||||
|
--maxw: 64rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (prefers-color-scheme: light) {
|
||||||
|
:root {
|
||||||
|
--fg: #1f2328;
|
||||||
|
--muted: #57606a;
|
||||||
|
--bg: #ffffff;
|
||||||
|
--bg-elev: #f6f8fa;
|
||||||
|
--accent: #0969da;
|
||||||
|
--border: #d0d7de;
|
||||||
|
--tag-bg: #eaeef2;
|
||||||
|
--tag-fg: #57606a;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
* { box-sizing: border-box; }
|
||||||
|
html, body { margin: 0; padding: 0; }
|
||||||
|
|
||||||
|
body {
|
||||||
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
|
||||||
|
color: var(--fg);
|
||||||
|
background: var(--bg);
|
||||||
|
line-height: 1.7;
|
||||||
|
-webkit-font-smoothing: antialiased;
|
||||||
|
text-rendering: optimizeLegibility;
|
||||||
|
}
|
||||||
|
|
||||||
|
.container {
|
||||||
|
width: 100%;
|
||||||
|
max-width: var(--maxw);
|
||||||
|
margin: 0 auto;
|
||||||
|
padding: 0 1.25rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Header */
|
||||||
|
.site-header {
|
||||||
|
padding: 3rem 0 2rem;
|
||||||
|
border-bottom: 1px solid var(--border);
|
||||||
|
}
|
||||||
|
.site-title {
|
||||||
|
font-size: clamp(1.75rem, 4vw, 2.5rem);
|
||||||
|
margin: 0 0 0.25rem;
|
||||||
|
letter-spacing: -0.02em;
|
||||||
|
font-weight: 700;
|
||||||
|
}
|
||||||
|
.site-tagline {
|
||||||
|
margin: 0;
|
||||||
|
color: var(--muted);
|
||||||
|
font-size: 1rem;
|
||||||
|
max-width: 48rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Sections */
|
||||||
|
.section {
|
||||||
|
padding: 2.75rem 0 1rem;
|
||||||
|
scroll-margin-top: 1rem;
|
||||||
|
}
|
||||||
|
.section-head { margin-bottom: 1.75rem; }
|
||||||
|
.section-title {
|
||||||
|
font-size: clamp(1.2rem, 2.5vw, 1.6rem);
|
||||||
|
margin: 0 0 0.6rem;
|
||||||
|
letter-spacing: -0.01em;
|
||||||
|
font-weight: 700;
|
||||||
|
}
|
||||||
|
.section-lede {
|
||||||
|
display: block;
|
||||||
|
max-width: 60ch;
|
||||||
|
margin: 0 0 0.6rem;
|
||||||
|
color: var(--muted);
|
||||||
|
font-size: 1.05rem;
|
||||||
|
font-style: italic;
|
||||||
|
line-height: 1.65;
|
||||||
|
}
|
||||||
|
.section-link {
|
||||||
|
color: var(--accent);
|
||||||
|
text-decoration: none;
|
||||||
|
font-size: 0.9rem;
|
||||||
|
font-weight: 600;
|
||||||
|
}
|
||||||
|
.section-link:hover { text-decoration: underline; }
|
||||||
|
|
||||||
|
/* Cards grid */
|
||||||
|
.cards {
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: repeat(auto-fill, minmax(18rem, 1fr));
|
||||||
|
gap: 1.25rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.card {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
background: var(--bg-elev);
|
||||||
|
border: 1px solid var(--border);
|
||||||
|
border-radius: var(--radius);
|
||||||
|
padding: 1.5rem 1.4rem 1.4rem;
|
||||||
|
transition: border-color 0.15s ease;
|
||||||
|
}
|
||||||
|
.card:hover { border-color: var(--accent); }
|
||||||
|
.card:focus-within { border-color: var(--accent); }
|
||||||
|
|
||||||
|
.card-name {
|
||||||
|
margin: 0 0 0.75rem;
|
||||||
|
font-size: 1.1rem;
|
||||||
|
font-weight: 700;
|
||||||
|
letter-spacing: -0.01em;
|
||||||
|
}
|
||||||
|
.card-story {
|
||||||
|
margin: 0.5rem 0 1.1rem;
|
||||||
|
color: var(--fg);
|
||||||
|
font-size: 1.02rem;
|
||||||
|
line-height: 1.65;
|
||||||
|
flex: 1 1 auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Tags — small, muted detail */
|
||||||
|
.tags {
|
||||||
|
list-style: none;
|
||||||
|
margin: 0 0 0.85rem;
|
||||||
|
padding: 0;
|
||||||
|
display: flex;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
gap: 0.35rem;
|
||||||
|
}
|
||||||
|
.tags li {
|
||||||
|
font-size: 0.7rem;
|
||||||
|
line-height: 1.4;
|
||||||
|
color: var(--tag-fg);
|
||||||
|
background: var(--tag-bg);
|
||||||
|
border: 1px solid var(--border);
|
||||||
|
border-radius: 999px;
|
||||||
|
padding: 0.1rem 0.5rem;
|
||||||
|
white-space: nowrap;
|
||||||
|
opacity: 0.95;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Card link — subtle, sits below the story */
|
||||||
|
.card-link {
|
||||||
|
align-self: flex-start;
|
||||||
|
color: var(--muted);
|
||||||
|
text-decoration: none;
|
||||||
|
font-size: 0.82rem;
|
||||||
|
font-weight: 500;
|
||||||
|
}
|
||||||
|
.card-link:hover { color: var(--accent); text-decoration: underline; }
|
||||||
|
|
||||||
|
/* Footer */
|
||||||
|
.site-footer {
|
||||||
|
margin-top: 3rem;
|
||||||
|
padding: 1.75rem 0 2.25rem;
|
||||||
|
border-top: 1px solid var(--border);
|
||||||
|
}
|
||||||
|
.footer-links {
|
||||||
|
display: flex;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
gap: 1rem;
|
||||||
|
margin-bottom: 0.5rem;
|
||||||
|
}
|
||||||
|
.footer-links a {
|
||||||
|
color: var(--accent);
|
||||||
|
text-decoration: none;
|
||||||
|
font-weight: 600;
|
||||||
|
font-size: 0.95rem;
|
||||||
|
}
|
||||||
|
.footer-links a:hover { text-decoration: underline; }
|
||||||
|
.footer-meta {
|
||||||
|
margin: 0;
|
||||||
|
font-size: 0.85rem;
|
||||||
|
color: var(--muted);
|
||||||
|
}
|
||||||
|
.footer-meta a { color: var(--muted); text-decoration: underline; }
|
||||||
|
|
||||||
|
/* Focus visibility */
|
||||||
|
a:focus-visible {
|
||||||
|
outline: 2px solid var(--accent);
|
||||||
|
outline-offset: 2px;
|
||||||
|
border-radius: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Responsive tightening on small screens */
|
||||||
|
@media (max-width: 30rem) {
|
||||||
|
.cards {
|
||||||
|
grid-template-columns: 1fr;
|
||||||
|
}
|
||||||
|
.site-header { padding: 2rem 0 1.25rem; }
|
||||||
|
.section { padding: 2rem 0 0.5rem; }
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user