1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/content/xml/tests/toc/toc.css Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,77 @@ 1.4 +/* This Source Code Form is subject to the terms of the Mozilla Public 1.5 + * License, v. 2.0. If a copy of the MPL was not distributed with this 1.6 + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 1.7 + 1.8 +toc { 1.9 + position:fixed; 1.10 + top:0; 1.11 + left:0; 1.12 + width:12em; 1.13 + height:100%; 1.14 + border-right: 1px solid black; 1.15 + background-color: #CCE6F3; 1.16 + font-family: Arial; 1.17 + overflow:auto; 1.18 + color: darkblue; 1.19 +} 1.20 + 1.21 +toc > title { 1.22 + display: block; 1.23 + font-size:12pt; 1.24 + font-weight: bold; 1.25 + background-color: black; 1.26 + color:white; 1.27 +} 1.28 + 1.29 +toclink:visited { 1.30 + color: purple; 1.31 +} 1.32 + 1.33 +toclink:active { 1.34 + color: red; 1.35 +} 1.36 + 1.37 +level1 { 1.38 + display: block; 1.39 + font-weight:bold; 1.40 + font-size:12pt; 1.41 + margin-left: 4px; 1.42 + margin-bottom: 2px; 1.43 +} 1.44 + 1.45 +level1 > toclink { 1.46 + list-style-position: inside; 1.47 + text-decoration: none; 1.48 + color: darkblue; 1.49 +} 1.50 + 1.51 +level2 { 1.52 + display: block; 1.53 + font-size:11pt; 1.54 + margin-left: 8px; 1.55 + margin-bottom: 2px; 1.56 +} 1.57 + 1.58 +level2 > toclink { 1.59 + list-style-position: inside; 1.60 + text-decoration: none; 1.61 + color: darkblue; 1.62 +} 1.63 + 1.64 +level3 { 1.65 + display: list-item; 1.66 + font-size: 8pt; 1.67 + margin-left: 12px; 1.68 + margin-bottom: 2px; 1.69 +} 1.70 + 1.71 +level3 > toclink { 1.72 + list-style-position: inside; 1.73 + text-decoration: none; 1.74 + color: darkblue; 1.75 +} 1.76 + 1.77 +toc img { 1.78 + margin-right: 1em; 1.79 +} 1.80 +