feat(series): reference the series in its pages

The reference is configurable from none to link to summary to something completely custom.
This commit is contained in:
ZzMzaw 2024-10-05 07:42:36 +02:00
parent 45705ed9c6
commit e1bdb01b6a
10 changed files with 219 additions and 0 deletions

View file

@ -267,3 +267,28 @@ details summary {
[data-force-text-direction="rtl"] * {
direction: inherit;
}
.series-page-introduction {
margin-top: 1rem;
margin-bottom: 1rem;
border: 1px solid var(--primary-color);
border-left-width: 0.3rem;
border-radius: 10px;
padding: 1rem;
p {
margin: 0;
}
summary::marker {
color: var(--primary-color);
font-size: 1.3rem;
}
details {
ol {
margin-top: 0;
margin-bottom: 0;
}
}
}