1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138
|
* {
display: inline;
}
texinfo {
margin: 3em;
display: block;
max-width: 50em;
}
para {
display: block;
margin-bottom: 1em;
text-indent: 2em;
}
para[role="continues"] {
text-indent: 0;
}
setfilename, settitle, setvalue, clearvalue {
display: none;
}
titlepage {
display: block;
margin-bottom: 4em;
text-align: center;
}
titlepage > booktitle {
display: block;
font-size: 200%;
margin-bottom: .2em;
letter-spacing: .2em;
}
titlepage > booksubtitle {
display: block;
font-size: 140%;
margin-bottom: .2em;
letter-spacing: .14em;
font-style: italic;
}
titlepage > author {
display: block;
font-size: 110%;
margin-bottom: .2em;
}
titlepage > para {
text-align: justify;
margin-bottom: 1em;
font-size: 75%;
display: block;
}
nodename, nodenext, nodeprev, nodeup {
display: none;
}
menu {
display: none;
}
chapter, section, subsection, subsubsection,
unnumbered, unnumberedsec, unnumberedsubsec, unnumberedsubsubsec,
appendix, appendixsec, appendixsubsec, appendixsubsubsec {
display: block;
margin-bottom: 2em;
}
chapter > title, section > title, subsection > title, subsubsection > title,
unnumbered > title, unnumberedsec > title, unnumberedsubsec > title, unnumberedsubsubsec > title,
appendix > title, appendixsec > title, appendixsubsec > title, appendixsubsubsec > title {
display: block;
margin-bottom: .2em;
}
chapter > title,
unnumbered > title,
appendix > title {
font-size: 150%;
}
section > title,
unnumberedsec > title,
appendixsec > title {
font-size: 140%;
}
subsection > title,
unnumberedsubsec > title,
appendixsubsec > title {
font-size: 130%;
}
subsubsection > title,
unnumberedsubsubsec > title,
appendixsubsubsec > title {
font-size: 120%;
}
/* Counters */
chapter > title:before {
content: counter(chapter) ". ";
counter-increment: chapter;
counter-reset: section;
counter-reset: subsection;
counter-reset: subsubsection;
}
section > title:before {
content: counter(chapter) "." counter(section) " ";
counter-increment: section;
counter-reset: subsection;
counter-reset: subsubsection;
}
subsection > title:before {
content: counter(chapter) "." counter(section) "." counter(subsection) " ";
counter-increment: subsection;
counter-reset: subsubsection;
}
subsubsection > title:before {
content: counter(chapter) "." counter(section) "." counter(subsection) "." counter(subsubsection) " ";
counter-increment: subsubsection;
}
indexterm {
display: none;
}
acronym > acronymword {
font-family: monospace;
font-variant: small-caps;
border-bottom: 1px dashed black;
}
|