36px font size to get about 8-9 lines per slide.

This commit is contained in:
admin 2026-02-25 16:38:25 -08:00
parent 2ecf6e2501
commit eb8440f34c
2 changed files with 4 additions and 7 deletions

2
app.py
View File

@ -63,6 +63,8 @@ def index():
sp.decompose()
for sp in soup.find_all('div',class_='crossrefs'):
sp.decompose()
for sp in soup.find_all('h2'):
sp.decompose()
for sp in soup.find_all('div',class_='passage-content'):
verse_html = verse_html + sp.prettify()

View File

@ -1,8 +1,8 @@
.text-html p,
.text-html td {
font-size: 24px;
font-size: 36px;
font-size: 1.6rem;
line-height: 24px;
line-height: 36px;
line-height: 2.4rem;
}
@page {
@ -244,11 +244,6 @@
.text-html div.poetry p .text {
position: relative;
}
.text-html div.poetry p .versenum {
display: block;
position: absolute;
left: -4.4em;
}
.text-html .footnotes div.poetry p .versenum {
left: -1.25em;
}