Initial commit

This commit is contained in:
qwsdcvghyu89
2026-06-17 07:19:25 +10:00
commit 363d894c79
26 changed files with 1805 additions and 0 deletions
+46
View File
@@ -0,0 +1,46 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Novel #{id} — Chapters {min}{max}</title>
<style>
*, *::before, *::after { box-sizing: border-box; }
body {
background: #111;
color: #ddd;
font-family: sans-serif;
font-size: 14pt;
line-height: 1.8;
max-width: 820px;
margin: 0 auto;
padding: 2rem 1.5rem 4rem;
}
header {
border-bottom: 1px solid #333;
padding-bottom: 0.75rem;
margin-bottom: 2rem;
color: #888;
font-size: 0.85rem;
}
div[id^="chap"] {
margin-bottom: 3.5rem;
padding-top: 1rem;
border-top: 1px solid #222;
}
p {
margin: 0.4rem 0;
}
</style>
</head>
<body>
<header>id: {id} &nbsp;|&nbsp; chapters {min}{max}</header>
<main>
{content}
</main>
</body>
</html>