Compare commits

...

2 commits

Author SHA1 Message Date
Lukas Joswiak 3286754ceb
Fix footnote selector (#48)
It appears a recent version of hugo changed the HTML generated for
footnotes. They used to be inside a `section` tag with the `footnotes`
class. They are now in a `div` with the `footnotes` class.
2022-10-12 21:21:44 -07:00
Lukas Joswiak 0290193019
Wrap long strings to prevent horizontal scroll (#47)
This is mainly useful for long URLs which could otherwise cause a
horizontal scroll bar to appear on low width screens.
2022-10-12 21:21:32 -07:00

View file

@ -15,6 +15,7 @@ body {
margin: 0 auto;
padding: 0 16px;
line-height: 1.6;
overflow-wrap: break-word;
}
header#banner {
@ -268,7 +269,7 @@ main#content pre code {
padding: 0;
}
main#content section.footnotes {
main#content .footnotes {
font-size: 0.9em;
}