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
|
html {
padding:0px;margin:0px;
background-color:white;
color:black;
font-family:sans-serif;
line-height:160%
}
body {
padding:10px 10% 10px 10%;
margin:0px;
text-align:justify;
/* width: 750px; */
}
a { color:black; weight=normal }
a:hover { color: #a22 }
hr { height:0; color:white }
h2 {
font-size:120%;
text-transform:uppercase
}
h3 {
font-size:100%;
text-transform:uppercase
}
pre.code {
display:block;
padding:0px;
margin-bottom:0px
}
code {
background-color:rgb(250, 250, 250);
border:1px solid rgb(200, 200, 200);
padding-left:4px;
padding-right:4px
}
pre.example {
background-color:rgb(250, 250, 250);
border:1px solid rgb(200, 200, 200);
padding-left:4px;
padding-right:4px;
}
table { width: 100%; }
img {
display:block;
margin:10px auto 10px auto;
border:none
}
img.floatleft {
float: left;
margin: 4px;
padding-right: 1em;
}
img.floatright {
float: right;
margin: 4px;
padding-left: 1em;
}
ul {
list-style-type:square;
padding-left:1em;
margin-left:1em
}
kbd {
font-weight: bold;
}
div.navigation {
background-color: #efebe7;
line-height: 100%;
top-margin: 5px;
padding: 3px;
/* background-color: #000000; */
/* border-top-style: solid; */
/* border-bottom-style: solid; */
/* border-width: 0px; */
/* border-top-width: 4px; */
/* border-color: rgb(200, 200, 200); */
}
div.version {
/* background-color: #efebe7; */
line-height: 100%;
padding: 3px;
margin-right: 3px;
font-size: smaller;
float: right;
font-style: italic;
}
div.version a {
text-decoration: none;
}
.navlink {
text-decoration: none;
/* color: white; */
}
.index-cp {
line-height:120%;
font-size: smaller;
}
|