/****************************************************************************\ ** ** 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 { 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; text-indent: 0; margin-top: 1em; } /* Caption given to any figure */ .figure-caption { margin-top: 1em; text-indent: 0; } /* Credit for the source of the image / diagram */ .figure-credit { text-indent: 0; } /* By default paragraphs are not indented */ .indented-para { margin-left: 2em; text-indent: 0; } .indented-para1 { margin-left: 2em; text-indent: 0; margin-top: 1em; }.indented-para2 { margin-left: 2em; } /* pullquote is similar to the blockquote, so we will try to mimic blockquote as much as we can */ .pullquote { text-align: center; text-indent: 0; margin-top: 1em; } .pullquote1 { text-align: center; text-indent: 0; } .title1 { font-size: 3em; text-align: center; text-indent: 0; } .title2 { font-size: 1.5em; text-align: center; margin-top: 1em; text-indent: 0; } .chapter-name { font-size: 1.3em; text-align: center; text-indent: 0; margin-bottom: 2em; } .headline1 { margin-top: 1em; } .headline2 { font-size: 1.1em; text-align: left; text-indent: 0; margin-top: 1em; } /* 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; font-size: .7em; } .subscript { vertical-align: sub; font-size: .7em; } .superior { vertical-align: super; font-size: .7em; }