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.
76 lines
1.8 KiB
76 lines
1.8 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>
|
|
<link rel="stylesheet" href="global.css">
|
|
<style>
|
|
main {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 40px 24px;
|
|
overflow: visible;
|
|
}
|
|
|
|
.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>
|