Increase font size of topic subtitle in PDF

The topic description/subtitle now displays at 14pt instead of inheriting the body's 11pt, making it more prominent and easier to read.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2025-11-28 10:13:46 -05:00
parent 217302c986
commit 7987f9db81
+8 -1
View File
@@ -39,6 +39,13 @@
margin-bottom: 0.1in;
}
.subtitle {
font-size: 14pt;
font-style: italic;
color: #666;
margin-bottom: 0.3in;
}
.overview {
margin-bottom: 0.3in;
}
@@ -76,7 +83,7 @@
</head>
<body>
<h1>{{ topic_name }}</h1>
<p class="overview">{{ topic.description }}</p>
<p class="subtitle">{{ topic.description }}</p>
{% if topic.overview %}
<div class="overview">{{ topic.overview | safe }}</div>