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
|
/* Basic styles */
blockquote {
border: 2px dotted #ccc;
background-color: #eee;
margin: 1em 2em;
padding: 0 1ex;
}
acronym,
abbr {
border-bottom: 1px dotted #000;
cursor: help;
}
del {
color: #999999;
}
ins {
color: #009999;
text-decoration: none;
}
code {
font-size: 107%;
}
.nobr,
.line
{
white-space: nowrap;
}
.center {
text-align: center;
}
.right{
text-align: right;
}
.clear{
clear: both;
}
.small {
font-size: 84%;
}
div.error {
padding: 0 1ex;
margin: 1ex auto;
border: 1px solid #d99;
background: #fbf2ee;
color: #e00;
}
div.error ul,
div.error ol {
margin-bottom: 0ex;
}
p.error,
span.error {
margin: 1ex;
color: #e00;
font-weight:bold;
}
/*
* Debug output formatting:
*/
div.debug {
border: 2px solid #000;
padding: 1ex;
background-color: #ccc;
text-align: left;
color: #000;
}
div.debug h2,
div.debug h3,
div.debug h4 {
color:#0033FF;
}
div.debug code {
font-family: "Courier New", Courier, mono;
font-size: 11px;
}
div.debug p.rows {
background-color: #fff;
font-size: 12px;
}
div.debug table {
border: 1px solid #000;
border-collapse:collapse;
font-family: "Courier New", Courier, mono;
font-size:11px;
margin: 1ex;
}
div.debug th {
background-color: #fff;
border: 1px solid #000;
padding: 2px;
white-space:nowrap;
}
div.debug th span.type {
font-weight: normal;
color: #999;
}
div.debug td {
background-color: #ddd;
border: 1px solid #000;
padding: 2px;
vertical-align:top;
white-space:nowrap;
}
div.debug td.odd {
background-color: #eee;
}
|