/****************************************************************************\ ** ** toc.css ** ** This set of properties affects the styling applied on the HTML Table Of Contents in an ePub book. ** Note: Not all book readers honor all the attributes specified here. ** ** (c) 1986 - 2012 Quark, Inc. ** All rights reserved. ** \****************************************************************************/ /* These styles affect the HTML TOC page and are applied on the outermost ordered list in the toc.html page. */ #toc-style { /*Level 1 Size*/ font-size: 120%; } #toc-style li { /*Level 1 Numbering*/ list-style-type: decimal; } #toc-style ol { /*Level 2 Size*/ font-size: 110%; } #toc-style ol li { /*Level 2 Numbering*/ padding-left: 10px; list-style-type: lower-alpha; } #toc-style ol ol { /*Level 3 Size*/ font-size: 100%; } #toc-style ol ol li { /*Level 3 Numbering*/ padding-left: 5px; list-style-type: lower-roman; } /* The following class is used if we want to add a div with the minimum screen real estate footprint.*/ .space-fix { visibility: hidden; line-height: 0; }