CmdForge/index.html

98 lines
2.8 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CmdForge Documentation</title>
<style>
:root {
--bg: #1a1a2e;
--surface: #16213e;
--primary: #0f3460;
--accent: #e94560;
--text: #eaeaea;
--text-muted: #a0a0a0;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
background: var(--bg);
color: var(--text);
line-height: 1.6;
min-height: 100vh;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 2rem;
}
header {
text-align: center;
padding: 3rem 0;
border-bottom: 1px solid var(--primary);
margin-bottom: 2rem;
}
h1 { font-size: 2.5rem; margin-bottom: 0.5rem; }
.tagline { color: var(--text-muted); font-size: 1.1rem; }
.nav {
display: flex;
flex-wrap: wrap;
gap: 1rem;
margin: 2rem 0;
}
.nav a {
display: block;
background: var(--surface);
color: var(--text);
text-decoration: none;
padding: 1rem 1.5rem;
border-radius: 8px;
border: 1px solid var(--primary);
transition: all 0.2s;
flex: 1;
min-width: 200px;
}
.nav a:hover {
border-color: var(--accent);
transform: translateY(-2px);
}
.nav a h3 { margin-bottom: 0.25rem; color: var(--accent); }
.nav a p { font-size: 0.9rem; color: var(--text-muted); }
footer {
text-align: center;
padding: 2rem 0;
color: var(--text-muted);
font-size: 0.9rem;
border-top: 1px solid var(--primary);
margin-top: 3rem;
}
footer a { color: var(--accent); }
</style>
</head>
<body>
<div class="container">
<header>
<h1>CmdForge</h1>
<p class="tagline">Documentation</p>
</header>
<nav class="nav">
<a href="overview.html">
<h3>Overview</h3>
<p>Introduction and key features</p>
</a>
<a href="architecture.html">
<h3>Architecture</h3>
<p>Technical design and structure</p>
</a>
</nav>
<footer>
<p>
<a href="https://gitea.brrd.tech/rob/CmdForge">View Source on Gitea</a>
</p>
</footer>
</div>
</body>
</html>