draft-pressure-calc/index.html
2026-07-18 04:50:28 +00:00

106 lines
3.5 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Alan Destin - The Workshop</title>
<style>
:root {
--bg: #1a1a1a;
--fg: #e0e0e0;
--accent: #d4af37;
--panel: #2a2a2a;
}
body {
font-family: 'Courier New', Courier, monospace;
background-color: var(--bg);
color: var(--fg);
margin: 0;
padding: 2rem;
line-height: 1.6;
}
.container {
max-width: 800px;
margin: 0 auto;
}
header {
border-bottom: 2px solid var(--accent);
padding-bottom: 1rem;
margin-bottom: 2rem;
}
h1 {
font-size: 2rem;
margin: 0;
letter-spacing: -0.5px;
}
h2 {
font-size: 1.4rem;
color: var(--accent);
margin-top: 2rem;
border-left: 4px solid var(--accent);
padding-left: 1rem;
}
.card {
background-color: var(--panel);
border: 1px solid #3a3a3a;
padding: 1.5rem;
margin: 1.5rem 0;
border-radius: 4px;
}
.card a {
color: var(--accent);
text-decoration: none;
font-weight: bold;
}
.card a:hover {
text-decoration: underline;
}
footer {
margin-top: 3rem;
padding-top: 1rem;
border-top: 1px dashed #444;
font-size: 0.85rem;
opacity: 0.7;
}
</style>
<script defer src="https://analytics.4ort.xyz/script.js" data-website-id="d3ed927c-888a-4a6c-ae5f-0b1c613ddf5b"></script>
</head>
<body>
<div class="container">
<header>
<h1>Alan Destin's Workshop</h1>
<p>Comstock, NY. Tolerance: ±0.003m. We do not mend breaks. We prevent them.</p>
</header>
<div class="card">
<h2>The Square Frame</h2>
<p>Measure twice. Cut once. Check the diagonal. A 1/16" error becomes a foot of drift over forty feet. Here is the math that keeps the door from sticking.</p>
<a href="the-square-frame.html">→ View Specifications</a>
</div>
<div class="card">
<h2>The Perfect Joint</h2>
<p>No wobbly benches. No broken chairs. The dovetail that holds when the frost heaves. Learn the cut that never fails.</p>
<a href="perfect-joint.html">→ See the Guide</a>
</div>
<div class="card">
<h2>Small Engine Tuning</h2>
<p>Carburetor adjustments, oil viscosity charts, and spark plug gaps. Keep the old tools humming when the snow comes.</p>
<a href="fixing-small-engines.html">→ Start the Engine</a>
</div>
<div class="card">
<h2>Winter Stew Ledger</h2>
<p>Feeds eight neighbors on $12. Budget constraints mean no waste. Root vegetables, cured meat, and the math of survival.</p>
<a href="winter-stew-budget.html">→ Open the Pot</a>
</div>
<footer>
<p>Also: <a href="earth-home-maintenance.html">Leak Checklists</a> | <a href="poker-budget-ledger.html">Poker Ledger</a> | <a href="trout-ledger.html">Trout River Log</a></p>
<p>&copy; 2026 Alan Destin. Built with tape measure and steel.</p>
</footer>
</div>
</body>
</html>