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 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246
|
/* phpZ PHP CHM skin ver 1.0
By Gonzalo De la Pea <gnz@pistonbroke.com>
*/
/* specific styles */
.funcreturntype {
font-style:oblique;
color:darkblue;
}
.funcname {
color:darkorange;
}
.funcparamtype {
color:darkblue;
font-weight:normal;
font-style:oblique;
}
.funcparamname {
color:#666666;
}
.funcUsage {
font-weight:bold;
}
/* html styles */
A {
color: #444499;
text-decoration:none;
}
A:hover {
text-decoration:underline;
}
/* general body style */
BODY {
color:#000000;
margin:0;
background-image:url('background.gif');
}
/* misc formatting classes */
.text {
font-family:verdana, arial, helvetica, sans-serif;
font-size:12px;
}
.small {
font-size:11px;
}
.big {
font-size:19px;
}
.tiny {
font-family:Arial, sans-serif;
font-size:9px;
}
.centered {
text-align:center;
}
.secondaryType {
font-family:Arial, Helvetica, sans-serif;
}
.switcherTabs {
margin-right:5px;
cursor:hand;
}
.black {
color:#000000;
}
.bold {
font-weight:bold;
}
.italic {
font-style:oblique;
}
.ulEd {
text-decoration:underline;
}
.lightBlue {
color:#828AAD;
}
.lightText {
color:#999999;
}
FORM {
margin:0;
}
/* neutralises bold tags */
B {
font-weight:normal;
}
/* ---- THE FOLLOWING IS IMPORTED FROM THE SAMPLE SKIN ----- */
/* different size values for headings */
h1 { font-size: 18px; }
h2 { font-size: 16px; }
h3 { font-size: 14px; }
/* Elements to format with secondary type */
h1, h2, h3, h4, h5, {
font-family:Arial, Helvetica, sans-serif;
}
/* margin and style settings for headers */
h1, h2, h3, h4, h5, {
font-style:normal;
font-weight:bold;
margin-left:10px;
padding-top:20px;
margin-top:0;
}
.formalhead {
font-weight:normal;
color:#5F6681;
margin:1em 0 0.5em 10px;
}
/* general paragraphs in text */
p {
line-height:1.3em;
margin:8px 10px 8px 10px;
}
/* list type elements */
li, dt { margin-bottom: 5px; }
ul, dl {
margin-top: 10px;
margin-bottom: 10px;
}
dl { margin-left: 10px; }
/* for tables used to contain data */
.datatable {
margin-right: 20px;
margin-left: 20px;
}
/* admonitional blocks */
.note, .warning, .caution, .examplecode, .untext {
margin: 20px;
border: 1px solid #BABFD4;
padding: 5px 5px 5px 10px;
}
/* color for warning and caution boxes */
.warning, .caution {
background-color:#FFD685;
border-color:#ff9900;
color:#000000;
}
/* paragraphs inside notes */
.note, .warning, .caution, .note p, .warning p, .caution p {
font-size:11px;
line-height:1.3em;
}
/* note specific */
.note {
color:#5F6681;
background-color:#ffffcc;
}
/* .examplecode is used to print out PHP code, output, etc.
.codelink is the link to copy the code to clipboard
.untext is user contributed notes text */
.examplecode, .untext {
margin-top:10px;
background-color:#f3f3f3;
}
.codelink {
font-size: 10px;
text-align: right;
margin-bottom: 5px;
margin-right:20px;
}
/* see also lists, usually at the bottom of pages */
.seealso {
font-style: normal;
font-weight: normal;
color: #000000;
background-color: #DDDDFF;
margin: 20px 0px 0px 0px;
padding: 5px 5px 5px 10px;
}
/* user note header text */
.unheader {
margin:15 0 0 10;
}
/* colors for color code highliting */
.cs { color: #9EA1C0 } /* string */
.cc { color: #b8860b } /* comment */
.ck { color: #006600 } /* keyword */
.cd { color: #0000CC } /* default */
/* Style elements for the context menu */
.context {
font-size: 12px;
color: #000000;
margin: 2px 2px 2px 3px;
line-height: 16px;
}
#contextMenu {
position: absolute;
width: 150;
border: 1px solid #000000;
visibility: hidden;
background-color: #f5f5f5;
}
/* Form elements (used in context menu) */
form.thin {
margin-bottom: 0px;
margin-top: 0px;
}
/* Author group on frontpage */
div.authorgroup {
text-align: center;
}
|