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 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164
|
/* $Id: docs.css,v 2.0 2003/11/18 15:20:37 nijel Exp $ */
/* Stylesheet for phpMyAdmin documentation */
/* vim: expandtab ts=4 sw=4 sts=4 tw=78
*/
body {
background-color: #ffffff;
font-family: sans-serif;
color: #000;
margin: 0px;
padding: 2em 0px 2em 0px;
}
a {
text-decoration: none;
color: #000099;
background-color: #ffffff;
font-weight: normal;
}
a:hover {
background-color: #99CCFF;
background-color: #ffffff;
font-weight: bolder
}
div.header {
width: 100%;
background-color: #ddeeff;
color: #000000;
text-align: center;
padding-bottom: 2px;
border-bottom: 1px solid #000000;
font-weight: bold;
left: 0px;
top: 0px;
position: fixed;
/* following MSIE hack was originally written by Riki Fridrich
* <http://www.fczbkk.com> */
position: expression("absolute");
width: expression(document.body.clientWidth);
top: expression(document.body.scrollTop + this.offsetHeight - this.offsetHeight);
}
div.header hr {
display: none;
}
div.header a {
text-decoration: none;
font-size: medium;
color: #000099;
background-color: #ddeeff;
font-weight: normal;
}
div.header a:hover {
background-color: #99CCFF;
font-weight: bolder
}
h1 {
text-align: center;
padding-left: 8%;
margin-top: 1em;
background-color: #ddeeff;
font-size: x-large;
border-top: 1px solid #000000;
border-bottom: 1px solid #000000;
clear: both;
}
h2 {
padding-left: 8%;
margin-top: 1em;
background-color: #ddeeff;
font-size: large;
border-top: 1px solid #000000;
border-bottom: 1px solid #000000;
clear: both;
}
h3 {
padding-left: 10%;
margin-top: 1em;
background-color: #ddeeff;
font-size: medium;
border-top: 1px solid #000000;
border-bottom: 1px solid #000000;
clear: both;
}
h4 {
padding: 0px;
margin: 10px 5% 2px 5%;
font-weight: bold;
color: #000099;
}
p {
margin: 2px 5% 2px 5%;
}
table {
margin: 2px 5% 2px 5%;
border: none;
}
table tr,table td,table th {
border: none;
}
table.translators {
text-align: center;
display: table; margin-left: auto; margin-right: auto;
border-collapse: collapse;
}
table.translators th {
background-color: #d3dce3;
}
table.translators td, table.translators th {
border: 1px solid #000000;
padding: 5px;
}
ul {
margin: 2px 5% 2px 5%;
}
pre {
margin: 2px 5% 2px 5%;
}
pre.wrap {
white-space: normal;
}
dl {
margin: 1em 6% 1em 6%;
}
dt {
font-weight: bold;
margin-left: 2em;
padding-top: 6px;
}
dd {
margin-left: 4em;
}
ol {
margin: 1em 6% 1em 6%;
}
.important {
color: #bb0000;
}
p.footnote {
margin: 2px 5% 2px 7%;
}
p.footnote:first-line {
margin-left: -2%;
}
|