/* Style Sheet for ePub Books */ /* Set margins at 2% (This gives a white border around the book) */ body {margin-left:2%; margin-right:2%; margin-top:2%; margin-bottom:2%;} */ Text indent will make a paragraph indent, like putting a tab at the beginning of each new paragraph The margin settings get rid of the white space between paragraphs, again so it looks more like a book The text-align line justifies the margins. If you don't want them justified, change it to left, or remove that line You don't have to specify a font, but you can */ p {text-indent: .3in; margin-left:0; margin-right:0; margin-top:0; margin-bottom:0; text-align: justify; font-family:"Times New Roman";} /* Here we make our headings centered We've also made the headings the same font as the body text */ h1 { text-align: center; font-family:"Times New Roman"; } h2 { text-align: center; font-family:"Times New Roman"; } h3 { text-align: center; font-family:"Times New Roman"; } h4 { text-align: center; text-decoration: underline; font-family:"Times New Roman"; } ol { list-style-type: disc; } table { padding: 10px 0 10px 0; table-layout: auto; border-collapse:separate; border-spacing: 0 10px; } table.list { padding: 0 0 0 0; table-layout: auto; border-collapse:separate; border-spacing: 10px 0; } #excerpt { text-wrap: normal; margin-left:5%; } #excerpt .description { text-align: left; } #excerpt .edits { text-align: right; } #dialogue { margin-left: 5%; } #treatment { text-align: center; font-family: "Courier New"; text-wrap: normal; } #treatment .transition { text-align: right; } #letter { border: solid 1px black; padding: 2% 2% 2% 2%; } #Endnotes ul li { margin-top:.25em; margin-bottom:.25em; display:block; page-break-after:always; }