Files
fabula-ultima-html/html/101.html
Drew Malzahn c75cd188c1 feat: Add book viewer at /book with shared design system
- Add html/index.html: book viewer with auto-discovering sidebar,
  prev/next navigation, keyboard shortcuts, and URL hash persistence
- Add html/book-page.css: shared stylesheet for all book pages derived
  from fabula-ultima-sheet.css (dark theme, CSS variables, Cinzel/
  Crimson Text fonts, common class styles)
- Add book.js entry point so webpack injects the shared CSS into the
  book viewer; update webpack.config.js for two entry points, split
  CSS chunk, CopyWebpackPlugin for book pages, and /book dev server
  rewrite rule
- Add scripts/strip_watermark.py: removes "Guest Customer (Order
  #52072168)" watermark artifacts from all 210 book pages
- Add scripts/restyle_book.py: strips per-page <style> blocks and
  injects <link rel="stylesheet" href="book-page.css"> into all pages
- Update Justfile deploy to scp -r dist/* for the new /book subtree

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-06-06 03:36:35 +00:00

40 lines
2.4 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Donna Maxwell Profile</title>
<link rel="stylesheet" href="book-page.css">
</head>
<body>
<div class="container">
<h1>DONNA MAXWELL</h1>
<!-- Basic Information Section -->
<h2>BASIC INFORMATION</h2>
<div class="info-grid">
<div><span class="info-label">Identity:</span> Spark-spirit Huntress</div>
<div><span class="info-label">Theme:</span> Guilt</div>
<div><span class="info-label">Origin:</span> Illwind</div>
<div><span class="info-label">Quirk:</span> Ancient Weapon</div>
<div><span class="info-label">Signature weapons:</span> Seismic revolver</div>
</div>
<!-- Detailed Profile Section -->
<h2>DONNA IN DETAIL</h2>
<h3>Backstory & Abilities</h3>
<ul class="narrative-list">
<li>Three years ago, a research team led by Donna Maxwell left the fortified citadel of Illwind for the ruins of the Celestial Labyrinth. Driven by arrogant curiosity, these scholars activated the ancestral mechanism which the Scripture calls the <strong>Matrix of Days</strong>, thereby freeing the Spark-spirit trapped in its engine and causing the destruction of Illwind.</li>
<li>Armed with a seismic revolver found in the Labyrinth, Donna swore to find and kill the Spark-spirit before it could unleash its fury once more. She considers herself <strong>Guilty</strong> of making a disastrous mistake, and she isnt wrong.</li>
<li>Donnas Classes are Loremaster, Sharpshooter, and Tinkerer. She uses a variety of infusions and capitalizes on her Insight thanks to Knowledge is Power.</li>
<li>Donnas Player should be the go-to person for everything related to Illwind and its researchers, not to mention the Celestial Labyrinth and the dreadful wonders it hides.</li>
<li>Donnas revolver is a powerful weapon that targets Magic Defense and deals 5 extra damage to elementals (a Quality valued at around 900 zenit), but it reacts unpredictably when near ancient machines and the ruins scattered across the entire region.</li>
</ul>
<!-- Footer/Metadata -->
<div class="guest-info">
</div>
</div>
</body>
</html>