Add some comments to CSS

This commit is contained in:
vr8ce 2020-03-12 20:12:08 -05:00
parent 6886d8f80f
commit df383e3832

View File

@ -11,6 +11,7 @@ blockquote[xml|lang]{
font-style: italic; font-style: italic;
} }
/* business cards, personal cards, etc. */
.card > p{ .card > p{
font-variant: small-caps; font-variant: small-caps;
text-align: center; text-align: center;
@ -21,6 +22,7 @@ abbr.era {
font-variant: all-small-caps; font-variant: all-small-caps;
} }
/* epigraph */
[epub|type~="epigraph"]{ [epub|type~="epigraph"]{
font-style: italic; font-style: italic;
hyphens: none; hyphens: none;
@ -52,7 +54,9 @@ section > header [epub|type~="epigraph"]{
display: table; display: table;
} }
} }
/* end of epigraph */
/* poetry, songs */
[epub|type~="z3998:poem"] header{ [epub|type~="z3998:poem"] header{
font-variant: small-caps; font-variant: small-caps;
margin: 1em; margin: 1em;
@ -99,7 +103,9 @@ p span.i3{
text-indent: -1em; text-indent: -1em;
padding-left: 4em; padding-left: 4em;
} }
/* end of poetry, songs */
/* letters */
[epub|type~="z3998:letter"] header{ [epub|type~="z3998:letter"] header{
text-align: right; text-align: right;
} }
@ -119,12 +125,8 @@ p span.i3{
font-variant: small-caps; font-variant: small-caps;
} }
footer{ [epub|type~="z3998:letter"] footer,
margin-top: 1em; p.signature {
text-align: right;
}
p.signature{
text-align: right; text-align: right;
} }
@ -137,7 +139,9 @@ p.signature{
text-indent: 0; text-indent: 0;
text-align: left; text-align: left;
} }
/* end of letter */
/* drama */
[epub|type~="z3998:drama"] tr:first-child td{ [epub|type~="z3998:drama"] tr:first-child td{
padding-top: 0; padding-top: 0;
} }
@ -188,7 +192,9 @@ p.signature{
[epub|type~="z3998:persona"]{ [epub|type~="z3998:persona"]{
font-variant: all-small-caps; font-variant: all-small-caps;
} }
/* end of drama */
/* story-specific formatting */
#conscience-in-art table{ #conscience-in-art table{
margin: 1em auto; margin: 1em auto;
} }
@ -254,6 +260,11 @@ p.signature{
#the-rose-of-dixie blockquote{ #the-rose-of-dixie blockquote{
text-align: center; text-align: center;
text-indent: 0;
}
#the-rose-of-dixie blockquote > p{
text-indent: 0;
} }
#the-rose-of-dixie blockquote > p:nth-child(3n) > b{ #the-rose-of-dixie blockquote > p:nth-child(3n) > b{