/****************************************************************************\ ** ** style.css ** ** This is the default css which is bundled inside the ePUB book, you can modify this file ** to change the styling of the book. Note: Not all book readers honor all the attributes specified here. ** ** (c) 1986 - 2012 Quark, Inc. ** All rights reserved. ** \****************************************************************************/ /* Body is always applied as the default style even when no text tagging is selected */ .body { margin-left: 0.5em; margin-right: 0.5em; } p { margin-top: 0; margin-bottom: 0; text-indent: 1.5em; text-align: justify; } /* Name of the author */ .byline { text-align:right; } /* An image inside a paragraph is always centered, so we apply this style on the p tag */ .figure { text-align:center; } /* Caption given to any figure */ .figure-caption { margin-top: 1em; text-indent: 0; } /* Credit for the source of the image / diagram */ .figure-credit { margin-top: .5em; font-size: 1em; text-indent: 0; } /* By default paragraphs are not indented */ .indented-para { text-indent: 0; margin-left: 1.5em; margin-right: 1.5em; } /* pullquote is similar to the blockquote, so we will try to mimic blockquote as much as we can */ .pullquote { margin-top: 1em; text-indent: 0; margin-left: 1.5em; margin-right: 1.5em; } .title1 { margin-top: 1em; font-size: 2.5em; text-align: center; text-indent: 0; } .title2 { margin-top: 1em; font-size: 1.8em; text-align: center; text-indent: 0; } .chapter-name { margin-bottom: 1em; font-size: 1.8em; text-align: center; text-indent: 0; } .headline1 { text-align: right; text-indent: 0; } .headline2 { text-align: center; margin-top: 1em; text-indent: 0; } /* Character attributes can also be modified, by using the following classes */ .bold { font-weight: bold; } .italic { font-style: italic; } .underline { text-decoration: underline; } .strikethrough { text-decoration: line-through; } .strikethrough-and-underline { text-decoration: line-through underline; } .superscript { vertical-align: super; } .subscript { vertical-align: sub; } .superior { vertical-align: super; }