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 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459
|
/**
* $Id: phpwiki-modern.css,v 1.1 2002/03/06 02:21:16 carstenklapp Exp $
*
* Inspiration for this stylesheet:
*
* http://www.timestretch.com/db/home/load/36/
* http://www.apache.org/
*
* This incarnation of this stylesheet is a complete rewrite from the
* ground up. It has not yet been tested against NS4.
*
* Mozilla's "DOM Inspector" Sidebar was an invaluable troubleshooting
* tool for mapping the more complex CSS node selectors, such as those
* used to reference the various CalendarPlugin elements.
*/
/**
* General
*/
img {
border: 0;
vertical-align: baseline;
}
form { margin: 0; }
input { margin: 0.1em; }
input.numeric { text-align: right; }
table {
border-spacing: 1px;
/* For Mozilla */
empty-cells: show;
}
caption {
caption-side: top;
text-align: left;
margin-bottom: .5ex;
/* Allow the caption to extend to the full page width
Mac ie5.1 ignores this*/
width: 100%;
}
/**
* Wiki
*/
/* Main wiki text box */
body {
/* light gray */
background: #eee;
font-family: Arial, Helvetica, sans-serif;
margin: 1ex 1em;
}
hr { height: 1px; }
div.wikitext {
background: white;
border-bottom: 0.5pt #888 solid;
padding-top: 0.75ex;
padding-bottom: 0.75ex;
padding-left: 0.8em;
padding-right: 0.8em;
margin-top: 0ex;
margin-bottom: 0;
margin-left: 0em;
margin-right: 0em;
/*This breaks Netscape 4: (display does not go full width).
* width: auto;
*/
clear: both;
/* user's browser settings *
font-family: none; */
}
#logo img {
position: relative;
right: 0.25em;
/* This breaks when the navbar wraps to the second line. Ideas? */
top: 4.5ex;
}
/**
* Link styles
*/
.wiki {
text-decoration: none;
font-weight: bold;
/* dark cyan */
color: #004662
}
.wiki:hover, .backlinks:hover { color: #5454ff; } /* blue */
/**
* wikiaction, wikiadmin, wikiunsafe:
*/
.wikiaction, .wikiadmin, .wiki-rc-action, .backlinks {
color: #69798f; /* pale cyan */
text-decoration: none;
font-weight: bold;
}
.wikiaction:hover { color: #5454ff; } /* blue */
.backlinks { color: #006; }
/*
.wikiaction, .wikiaction table, span.wikiaction {
background-color: #ddd;
}
.wikiadmin, .wikiadmin table {
background-color: #fdd;
}
.wikiunsafe {
background-color: #ccc;
}
*/
/* Unknown links */
.wikiunknown a, .named-wikiunknown a, .wikiunknown u {
text-decoration: none;
color: #600;
}
/* Interwiki links */
.wikipage { font-weight: bold; }
.interwiki { text-decoration: none; }
.interwiki, i.interwiki .wikipage, em .interwiki .wikipage {
font-style: oblique;
}
.interwiki .wikipage, i .interwiki, em .interwiki {
font-style: normal;
}
/**
* headings
*/
h1, h2, h3, h4, h5, h6 { font-family: Arial, Helvetica, sans-serif; }
h1 {
color: white;
background-color: black;
padding-top: 1.1ex;
padding-left: 0.3em;
padding-bottom: 0.2ex;
padding-right: 0.6em;
margin: 0;
}
h1 .backlinks {
color: white;
text-decoration: none;
}
h1 .wiki {
color: gray;
text-decoration: none;
}
h2 {
color: white;
background-color: #525D76;
}
h3 {
color: white;
background-color: #828da6;
margin-left: 1em;
}
h4 {
color: white;
background-color: #828da6;
margin-left: 1.5em;
}
h2, h3, h4, h5, h6 {
margin-top: 2ex;
padding-top: 0.15ex;
padding-bottom: 0.1ex;
padding-left: 0.6em;
padding-right: 0.6em;
}
/**
* tables
*/
caption { font-family: Arial, Helvetica, sans-serif; }
/* PageList output */
.pagelist {
background: #bebebe;
border: 0.5pt solid #bebebe;
}
.pagelist thead, .pagelist thead u {
background: #bebebe;
color: white;
font-weight: bold;
text-decoration: none;
}
.pagelist tr.evenrow { background: #e6e6e6; }
.pagelist tr.oddrow { background: #f4f4f4; }
/*.pagelist td {
border-left: 1px solid #bebebe;
border-right: 1px solid #bebebe;
}*/
/**
* Toolbar
*/
.toolbar, td, input.button { font-family: Arial, Helvetica, sans-serif; }
#navbuttons, #actionbar {
color: black;
background: #ddd; /* dark gray */
margin-top: 0.1ex;
margin-bottom: 1ex;
margin-left: 0em;
margin-right: 0em;
}
#actionbar table, #navbuttons {
border-top: 0.5pt solid black; /* medium gray */
border-bottom: 0.5pt solid black;
padding-top: 0.3ex;
padding-bottom: 0.4ex;
padding-left: 0.5em;
padding-right: 0.5em;
}
.editdate {
background: white;
font-family: Arial, Helvetica, sans-serif;
margin: 0;
padding-top: 0.4ex;
padding-bottom: 0.3ex;
padding-left: 0.5em;
padding-right: 0.5em;
/* border-top: 0.5pt solid #666; * medium gray */
}
hr.ignore, hr.toolbar {
height: 0;
/* margin: -1ex; * Hack for Mozilla */
/* Hack for ie and OmniWeb to hide this element */
position: absolute;
top: -80px;
}
/**
* Edit Page & View Source
*/
/* Make the textarea the full page width */
textarea.wikiedit {
width: 100%;
border: 1px inset #838383;
margin-top: 1ex;
margin-bottom: 1ex;
padding: 2px;
}
#editarea-size {
margin-top: 1ex;
text-align: right;
font-size: smaller;
}
/* IncludePage plugin */
.transclusion-title {
text-align: right;
margin-right: 0.25em;
margin-bottom: 0.15ex;
font-style: oblique;
font-size: smaller;
text-decoration: underline;
}
.transclusion, .wiki-edithelp {
background: white;
font-size: smaller;
padding-left: 0.5em;
padding-right: 0.5em;
}
.transclusion {
border-top: solid 1px #dddddd;
border-left: solid 1px #c3c3c3;
border-bottom: solid 1px #7d7d7d;
border-right: solid 1px #b5b5b5;
}
.wiki-edithelp {
border-top: solid 1px #dddddd;
border-left: solid 1px #c5c5c5;
border-bottom: solid 1px #bdbdbd;
border-right: solid 1px #b5b5b5;
}
.wiki-edithelp .wiki {
color: #5454ff;
}
.wiki-edithelp p {
font-family: Arial, Helvetica, sans-serif;
background: #eef;
border-top: solid 1px #aaaaaa;
border-left: solid 1px #c3c3c3;
border-bottom: solid 1px #dddddd;
border-right: solid 1px #c5c5c5;
padding-left: 0.5em;
padding-right: 0.5em;
padding-top: 0.25ex;
padding-bottom: 0.25ex;
margin-top: 1ex;
margin-bottom: 1ex;
}
/**
* Calendar plugin
*/
table.cal {
border: thin outset gray;
background: #ddd;
padding: 1px;
/* For Mozilla */
empty-cells: hide;
}
/* cells */
table.cal td {
background: white;
text-align: right;
}
/* Month-name header */
table.cal-header { /* the html for this should really be in the thead */
font-size: larger;
}
table.cal-header tr, table.cal-header td {
text-align: center;
background: black;
color: white;
}
.cal-arrow {
color: gray;
font-weight: bold;
text-decoration: none;
}
/* Day-names header */
table.cal tbody tr .cal-dayname { /* the html for this should really be in the thead */
background: #eee;
border-top: 1px solid gray;
border-bottom: 1px solid gray;
}
.cal-dayname td {
text-align: center;
font-size: smaller;
text-decoration: none;
}
/* Individual days */
a.cal-hide { text-decoration: none; }
/* Today */
/* cell */
table.cal td.cal-today {
background: inherit;
border: 2px solid gray;
}
/* text */
table.cal td.cal-today a.cal-hide {
color: black;
}
/**
* Diff Output
*/
/* main box */
.diff .block {
background: #ccc;
border-top: 1px solid black;
border-bottom: 1px solid black;
padding: 0.5ex 0.5em;
margin: 0.5ex 0;
}
/* individual lines */
.diff .context { background: white; }
/* + - line prefix */
.diff .block tt {
font-weight: normal;
font-family: monospace;
margin-left: -.6em;
color: #ffff00;
}
.diff del, .diff ins {
font-weight: bold;
text-decoration: none;
}
.diff .original, .diff .deleted { background: #fcc; }
.diff .final, .diff .added { background: #cfc; }
/* These don't work in NS4 -- it completely ignores <del> and <ins>. */
.diff del { background: #f99; }
.diff ins { background: #9f9; }
/**
* PageHistory, Info
*/
td.pageinfo { font-weight: bold; }
.pageinfo-minoredit, .pageinfo-authorid {
font-size: smaller;
font-style: oblique;
}
/**
* Other
*/
.printer { display: none; }
/* PHP Warnings */
div.errors {
color: black;
background: white;
margin-top: 2em;
margin-bottom: 2em;
padding: 1ex;
font-size: smaller;
border: thin dashed red;
}
.errors h4 {
color: red;
background: inherit;
margin: 0;
padding: 0;
text-decoration: underline;
}
.error { font-family: monospace; }
.error ul { font-family: monospace; }
/* Debug */
.debug {
color: black;
background: white;
font-family: monospace;
margin: 1ex 0;
padding: 0.5ex 0.5em;
}
/* For emacs users
*
* Local Variables:
* mode: c
* c-file-style: cc-mode
* End:
*/
|