/****************************************************************************\ ** ** 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 { font-size: 0.9em; text-align: right; } /* An image inside a paragraph is always centered, so we apply this style on the p tag */ .figure { text-align:center; } .intendtedbodyspaceabove { margin-top: 1em; margin-bottom: 0; text-indent: 1.5em; text-align: justify; } /* Caption given to any figure */ .figure-caption { margin-top: 0; font-size: 1m; text-indent: 0; text-align: justify; } /* Caption given to any figure */ .figure-captionnospace { margin-top: 0; font-size: 1m; text-indent: 0; text-align: center; } /* Credit for the source of the image / diagram */ .figure-credit { margin-top: 1em; font-size: 1m; text-indent: 0; text-align: justify; } /* By default paragraphs are not indented */ .indented-para { margin-top: 1em; margin-left: 2em; margin-right: 2em; text-indent: 0; } .poem { margin-left: 2em; margin-right: 2em; text-indent: 0em; } .indented-para-nospaceabove { margin-top: 1em; margin-left: 2em; margin-right: 2em; text-indent: 0; } /* pullquote is similar to the blockquote, so we will try to mimic blockquote as much as we can */ .pullquote { margin-top: 1em; font-size: 1.25em; margin-left: 2em; margin-right: 2em; text-align: center; text-indent: 0; } .title1 { margin-top: .5em; font-size: 2.5em; text-align: center; text-indent: 0; } .title2 { margin-top: 1em; font-size: 2em; text-align: center; text-indent: 0; } .chapter-name { font-size: 1.5em; text-align: center; text-indent: 0; } .headline1 { margin-top: 1em; font-size: 1m; text-indent: 0; text-align: justify; } .headline2 { margin-top: 2em; font-size: 1.2em; 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; }