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
|
/* $Id: tex-refs.css 120 2004-03-26 20:19:43Z mw $ */
body { background-color: whitesmoke;
}
h1.title { background-color: gainsboro;
text-align: center;
font-family: sans-serif;
color: black;
}
h2.title { background-color: gainsboro;
font-family: sans-serif;
color: black;
}
h3.title { background-color: gainsboro;
font-family: sans-serif;
color: black;
}
h4.title { background-color: gainsboro;
font-family: sans-serif;
color: black;
}
h5.title { background-color: gainsboro;
font-family: sans-serif;
/* font-size: small; */
color: black;
}
h6.title { background-color: gainsboro;
font-family: sans-serif;
/* font-size: x-small; */
font-size: small;
color: black;
}
span.title { background-color: gainsboro;
font-family: sans-serif;
/* font-size: x-small; */
font-size: small;
color: black;
}
.title { background-color: gainsboro;
font-family: sans-serif;
}
.authorgroup {
background-color: #EEEEEE
}
.copyright {
}
.legalnotice {
}
.revhistory {
}
.abstract {
margin-top: 1em
}
.toc {
}
.itemizedlist {
}
.orderedlist {
}
.variablelist {
}
.term { background-color: #EFEFEF
}
pre.programlisting
{
background-color: #E0E0E0;
border: thin solid gray;
margin-top: 1.33ex;
margin-bottom: 1.33ex;
}
.footer-date { font-size: xx-small;
font-family: monospace;
}
#customheader, #customfooter
{
/* list of fonts provides fallbacks if a font is not present */
font-family: Verdana, Arial, Helvetica, Sans-Serif;
/* font size, relative to body font size */
font-size: 80%;
/* line height, relative to body font size */
line-height: 200%;
text-align: center;
vertical-align: middle;
color: #fff;
background-color: #009;
}
/* leave more space between last paragraph and footer */
/* some browser do not add up the bottom margin of the prior element */
/* and the top margin of the footer */
#customfooter {
margin-top: 15px;
}
/* define special font for logo */
/* list of fonts provides fallbacks in case selected fonts are not present
*/
.logo
{
font-family: Lucida Console, Verdana, Arial, Sans-Serif;
}
|