Format and add CSS to epigraph

This commit is contained in:
Hendrik 2025-03-06 13:16:30 -03:00
parent 2aeddcd859
commit 8b0ea8cfc5
2 changed files with 59 additions and 1 deletions

View file

@ -5,3 +5,60 @@
[epub|type~="se:temperature"]{ [epub|type~="se:temperature"]{
font-variant: all-small-caps; font-variant: all-small-caps;
} }
/* All epigraphs */
[epub|type~="epigraph"]{
font-style: italic;
hyphens: none;
-epub-hyphens: none;
}
[epub|type~="epigraph"] em,
[epub|type~="epigraph"] i{
font-style: normal;
}
[epub|type~="epigraph"] cite{
font-style: normal;
font-variant: small-caps;
margin-top: 1em;
}
[epub|type~="epigraph"] cite i{
font-style: italic;
}
/* End all epigraphs */
/* Full-page epigraphs */
section[epub|type~="epigraph"]{
text-align: center;
}
section[epub|type~="epigraph"] > *{
display: inline-block;
margin: auto;
margin-top: 3em;
max-width: 80%;
text-align: initial;
}
@supports(display: flex){
section[epub|type~="epigraph"]{
align-items: center;
box-sizing: border-box;
display: flex;
flex-direction: column;
justify-content: center;
min-height: calc(98vh - 3em);
padding-top: 3em;
}
section[epub|type~="epigraph"] > *{
margin: 0;
}
section[epub|type~="epigraph"] > * + *{
margin-top: 3em;
}
}
/* End full-page epigraphs */

View file

@ -8,7 +8,8 @@
<body epub:type="frontmatter z3998:fiction"> <body epub:type="frontmatter z3998:fiction">
<section id="epigraph" epub:type="epigraph"> <section id="epigraph" epub:type="epigraph">
<blockquote> <blockquote>
<p>“Three thousand stadia from the earth to the moon.⁠ ⁠… Marvel not, my comrade, if I appear talking to you on super-terrestrial and aerial topics. The long and the short of the matter is that I am running over the order of a Journey I have lately made.”⁠—<span class="smcap">Lucians</span> <cite>Icaromenippus</cite></p> <p>“Three thousand stadia from the earth to the moon.⁠ ⁠… Marvel not, my comrade, if I appear talking to you on super-terrestrial and aerial topics. The long and the short of the matter is that I am running over the order of a Journey I have lately made.”</p>
<cite>Lucians <i epub:type="se:name.publication.play">Icaromenippus</i></cite>
</blockquote> </blockquote>
</section> </section>
</body> </body>