eybmv / l-frank-baum_ozma-of-oz

Other
0 stars 0 forks source link

Issues: #1

Closed EmmaSweeney closed 4 months ago

EmmaSweeney commented 4 months ago

General Issues:

chapte-3.xhtml:

chapter-4.xhtml:

chapter-10.xhtml:

chapter-11.xhtml:

local.css:

[epub|type~="z3998:song"] p > span, [epub|type~="z3998:verse"] p > span{ display: block; padding-left: 1em; text-indent: -1em; }

[epub|type~="z3998:song"] p > span + br, [epub|type~="z3998:verse"] p > span + br{ display: none; }

p span.i1{ padding-left: 2em; text-indent: -1em; } / End song, verse /


- [x] Since the border styling for chapters 4 and 6 are identical, you can simplify it as:

chapter-4 blockquote,

chapter-6 blockquote{

border: 1px solid;
padding: 1em;

}


- [x] Chapters 4 and 6 need some custom CSS to recreate the card and sign. The following CSS should make the text look similar to the page scans. Make sure to check the styling in a web browser to make sure it looks good.

/ Card, sign / header{ margin-bottom: 1em; text-align: center; }

chapter-4 blockquote:first-of-type p,

chapter-6 blockquote p{

text-align: center;
text-indent: 0;

}

chapter-4 blockquote:last-of-type p{

padding-left: 1em;
text-indent: -1em;

}

chapter-6 blockquote p:first-child{

padding: 2em;

}

chapter-4 b,

chapter-6 b{

text-transform: uppercase;

}

chapter-4 footer{

text-align: center;

} / End card, sign /



# colophon.xhtml:

- [x] Correct the title case for the painting.
eybmv commented 4 months ago

Do we change the title casing even if that is how the name of the art piece is originally?

EmmaSweeney commented 4 months ago

Yes.

eybmv commented 4 months ago

Thanks for all the help with the CSS -- will def reference back to this if another production like this comes up! All addressed and pushed.

EmmaSweeney commented 3 months ago