blob: b04c130f63e8cf12b80a788eed199b00231db917 (
plain)
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
|
h1 {
text-align: center;
}
h2 {
font-size: large;
font-weight: normal;
}
.yui-navset {
margin: 0 0 1em 5%;
width: 90%;
}
.yui-navset .yui-nav li {
padding: 1px 0 0;
background: #800000;
}
.yui-navset .yui-nav .selected {
}
.yui-navset .yui-nav a {
padding: 0 1em;
color: #000;
text-decoration: none;
}
.yui-navset .yui-nav .selected a,
.yui-navset .yui-nav .selected a:focus,
.yui-navset .yui-nav .selected a:hover {
background: #C00;
color: #FFF;
}
.yui-navset .yui-nav a:hover,
.yui-navset .yui-nav a:focus {
background: #cc0000;
color: #FFF;
outline: 0;
}
.yui-content {
height: 20em;
overflow: auto;
border-left: 2px solid #C00;
border-right: 2px solid #C00;
border-top: 5px solid #C00;
border-bottom: 5px solid #C00;
padding: 0.25em 0;
background: white;
}
.yui-content p {
margin: 1em 1em;
}
.yui-content table {
margin: 0;
padding: 0;
width: 100%;
border-collapse: collapse;
}
.yui-content table td {
padding: 1px 1em;
border-left: 1px dotted;
border-right: 1px dotted;
}
.yui-content table tr.heading {
border-bottom: 2px solid #000;
}
.yui-content table tr.odd {
background: #FFF;
}
.yui-content table tr.even {
background: #FED;
}
.yui-content table td.input {
text-align: center;
width: 1em;
}
ul.errorlist {
margin: 0 0 1em 5%;
width: 75%;
background-color: #C00;
border: 2px solid #C00;
}
.errorlist li {
display: block;
background: #FDD;
padding: 0.25em 1em;
}
input {
background: #FED;
border: 1px solid #999;
color: black;
}
pre {
width: 75%;
margin: 0 0 1em 5%;
padding: 1em;
background: #FED;
border: 2px solid #C00;
}
|