content/xml/tests/toc/book.css

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/content/xml/tests/toc/book.css	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,137 @@
     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 +/* The book style must be the first style for our JavaScript to work */
     1.9 +book {
    1.10 +  display: block;
    1.11 +  padding-left: 2em;
    1.12 +  padding-right: 2em;
    1.13 +  padding-top: 8px;
    1.14 +  font-size: 12pt;
    1.15 +  background-color: lightyellow;
    1.16 +  font-family: Arial;
    1.17 +}
    1.18 +
    1.19 +book title {
    1.20 +  font-weight: bold;
    1.21 +  font-size: 24pt;
    1.22 +  display: block;
    1.23 +  text-align: center;
    1.24 +  margin-top: 12pt;
    1.25 +  margin-bottom: 3pt;
    1.26 +}
    1.27 +
    1.28 +book subtitle {
    1.29 +  display: block;
    1.30 +  font-size:12pt;
    1.31 +  text-align: center;
    1.32 +}
    1.33 +
    1.34 +book abstract {
    1.35 +  display: block;
    1.36 +  margin-top: 3pt;
    1.37 +}
    1.38 +
    1.39 +input {
    1.40 +   display: block;
    1.41 +   margin-left: auto;
    1.42 +   margin-right: auto;
    1.43 +}
    1.44 +
    1.45 +chapter {
    1.46 +  display: block;
    1.47 +}
    1.48 +
    1.49 +chapter title {
    1.50 +  font-weight: bold;
    1.51 +  font-size: 16pt;
    1.52 +  display: block;
    1.53 +  text-align: left;
    1.54 +  margin-top: 12pt;
    1.55 +  margin-bottom: 3pt;
    1.56 +}
    1.57 +
    1.58 +section {
    1.59 +  display: block;
    1.60 +}
    1.61 +
    1.62 +section title {
    1.63 +  display: block;
    1.64 +  font-size: 10pt;
    1.65 +  text-align: left;
    1.66 +  margin-top: 12pt;
    1.67 +  margin-bottom: 3pt;
    1.68 +}
    1.69 +
    1.70 +contents {
    1.71 +  display: block;
    1.72 +}
    1.73 +
    1.74 +para {
    1.75 +  display: block;
    1.76 +  margin-bottom: auto;
    1.77 +  margin-top: auto;
    1.78 +  font-size:11pt;
    1.79 +}
    1.80 +
    1.81 +link {
    1.82 +  display: inline;
    1.83 +  color: blue;
    1.84 +  text-decoration: underline;
    1.85 +  cursor: pointer;
    1.86 +}
    1.87 +
    1.88 +list {
    1.89 +  display: block;
    1.90 +  margin-right: 0;
    1.91 +  margin-bottom: auto;
    1.92 +  margin-top: auto;
    1.93 +  list-style-type: disc;
    1.94 +  margin-left: 40px;
    1.95 +}
    1.96 +
    1.97 +listitem {
    1.98 +  display: list-item;
    1.99 +  list-style-position: inside;
   1.100 +}
   1.101 +
   1.102 +emph {
   1.103 +  font-style: italic;
   1.104 +  font-weight: bold;
   1.105 +}
   1.106 +
   1.107 +ref {
   1.108 +  font-style: italic;
   1.109 +}
   1.110 +
   1.111 +heading {
   1.112 +  font-weight: bold;
   1.113 +}
   1.114 +
   1.115 +navbar {
   1.116 +   font-family: Arial;
   1.117 +   font-size: 10pt;
   1.118 +   display: block;
   1.119 +   float: right;
   1.120 +   background-color: #CCE6F3;
   1.121 +   color: darkblue;
   1.122 +   width: 10em;
   1.123 +   margin-right: 0.5em;
   1.124 +}
   1.125 +
   1.126 +navbar title {
   1.127 +   font-size: 10pt;
   1.128 +   display: block;
   1.129 +   background-color: black;
   1.130 +   color: white;
   1.131 +   margin-bottom:0px;
   1.132 +}
   1.133 +
   1.134 +navbar content {
   1.135 +   display: block;
   1.136 +   padding: 0.3em;
   1.137 +   border: 1px solid black;
   1.138 +   font-size: 9pt;
   1.139 +}
   1.140 +

mercurial