You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
110 lines
2.6 KiB
110 lines
2.6 KiB
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>PF2e Tools</title>
|
|
<style>
|
|
:root {
|
|
--bg: #161210;
|
|
--surface: #211a13;
|
|
--surface2: #2e2318;
|
|
--border: #7a5c18;
|
|
--text: #e8d5b0;
|
|
--text-muted: #9a7e56;
|
|
--accent: #c89030;
|
|
}
|
|
|
|
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
|
|
|
|
body {
|
|
background: var(--bg);
|
|
color: var(--text);
|
|
font-family: Georgia, 'Times New Roman', serif;
|
|
min-height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
/* ── Header ── */
|
|
header {
|
|
background: var(--surface);
|
|
border-bottom: 2px solid var(--border);
|
|
padding: 14px 24px;
|
|
display: flex;
|
|
align-items: baseline;
|
|
gap: 16px;
|
|
flex-shrink: 0;
|
|
}
|
|
header h1 { font-size: 1.5rem; color: var(--accent); letter-spacing: 0.06em; }
|
|
header p { color: var(--text-muted); font-size: 0.85rem; font-style: italic; }
|
|
|
|
/* ── Main ── */
|
|
main {
|
|
flex: 1;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 40px 24px;
|
|
}
|
|
|
|
.tool-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
|
|
gap: 20px;
|
|
width: 100%;
|
|
max-width: 640px;
|
|
}
|
|
|
|
.tool-card {
|
|
background: var(--surface);
|
|
border: 1px solid var(--border);
|
|
border-radius: 6px;
|
|
padding: 28px 24px;
|
|
text-decoration: none;
|
|
color: var(--text);
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 8px;
|
|
transition: border-color 0.15s, background 0.15s;
|
|
}
|
|
.tool-card:hover {
|
|
background: var(--surface2);
|
|
border-color: var(--accent);
|
|
}
|
|
.tool-card h2 {
|
|
font-size: 1.15rem;
|
|
color: var(--accent);
|
|
letter-spacing: 0.04em;
|
|
}
|
|
.tool-card p {
|
|
font-size: 0.85rem;
|
|
color: var(--text-muted);
|
|
font-style: italic;
|
|
line-height: 1.5;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<header>
|
|
<h1>PF2e Tools</h1>
|
|
<p>Pathfinder 2E (Remastered) reference & simulators</p>
|
|
</header>
|
|
|
|
<main>
|
|
<div class="tool-grid">
|
|
<a class="tool-card" href="perception.html">
|
|
<h2>Perception & Stealth</h2>
|
|
<p>Detection states, stealth rules, and an interactive situation simulator.</p>
|
|
</a>
|
|
<a class="tool-card" href="dying.html">
|
|
<h2>Hit Points, Healing & Dying</h2>
|
|
<p>Dying conditions, recovery rolls, and a step-by-step dying simulator.</p>
|
|
</a>
|
|
</div>
|
|
</main>
|
|
|
|
</body>
|
|
</html>
|