/****************************************************************************\ ** ** 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; text-indent: 1em; text-align: justify; } p { margin-top: 0px; margin-bottom: 0px; text-indent: 0.875em; text-align: justify; line-height: 1.56; } a { text-decoration: none; color: black; } /* Name of the author */ .byline { font-size: 0.8em; margin-left: 2em; margin-right: 2em; margin-top: 1em; } /* An image inside a paragraph is always centered, so we apply this style on the p tag */ .figure { text-align:center; margin-bottom: 6px; } /* Caption given to any figure */ .figure-caption { font-size: 0.8em; margin-left: 2em; margin-right: 2em; } /* Credit for the source of the image / diagram */ .figure-credit { font-size: 0.8em; margin-left: 2em; margin-right: 2em; margin-bottom: 1em; } /* By default paragraphs are not indented */ .indented-para { font-size: 0.8em; margin-left: 2em; margin-right: 2em; margin-top: 0em; margin-bottom: 0em; text-indent: 0em; } .indented-para1 { font-size: 0.8em; margin-left: 2em; margin-right: 2em; margin-top: 0em; margin-bottom: 0em; text-indent: 1em; } /* pullquote is similar to the blockquote, so we will try to mimic blockquote as much as we can */ .pullquote { font-size: 1em; margin-right: 0.5em; margin-bottom: 1em; text-align: right; } .title1 { font-size: 2em; text-align: center; margin-top: 1em; margin-bottom: 1em; } .title2 { font-size: 2em; text-align: center; margin-top: 2em; margin-bottom: 1em; } .chapter-name { font-size: 2.3em; text-align: center; margin-top: 1em; margin-bottom: 1em; } .headline1 { font-size: 1.5em; margin-top: 1em; margin-bottom: 1em; } .headline2 { font-size: 1em; text-align: center; margin-top: 1em; margin-bottom: 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: 0.6em; } .subscript { vertical-align: sub; } .superior { vertical-align: super; }