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
|
html {
background-color:#E5F3FF;
}
#wrapper {
width:800px;
border:1px solid #000;
background-color:#FFF;
margin:10px auto;
}
#innerwrapper {
font-family:verdana, arial;
padding:20px;
}
#logo {
text-align:center;
font-family:Verdana,Arial;
font-size:3em;
font-weight:bold;
padding:5px;
height:1.5em;
background-image: -webkit-gradient(
linear,
left bottom,
left top,
color-stop(0, rgb(204,231,255)),
color-stop(1, rgb(179,220,255))
);
background-image: -moz-linear-gradient(
center bottom,
rgb(204,231,255) 0%,
rgb(179,220,255) 100%
);
}
#nav {
border-bottom:1px solid #000;
border-top:1px solid #000;
background-color:#CCE7FF;
padding:5px 10px;
}
#nav ul {
margin:2px;
}
#nav li {
display:inline;
list-style-type:none;
padding-right:10px;
font-family:verdana;
font-size:12px;
}
#nav li a {
color:#000;
}
h1 {
display:block;
text-align:center;
margin:5px auto;
}
h2{
display:block;
text-align:center;
}
table {
width:100%;
}
th {
font-size:12px;
border:1px solid #999;
}
td {
font-size:12px;
border:1px solid #CCC;
}
.addbutton {
float:right;
}
.monospace {
font-family:Courier New, monospace;
}
dl.zend_form dt {
width:120px;
float:left;
font-family:verdana, arial;
font-size:12px;
}
dl.zend_form dd {
margin-left:120px;
}
dl.zend_form dd * {
font-size:12px;
}
tr.entry {
background-color:#FFF5CC;
}
tr.detail>td {
border:none;
}
td.arrowtop{
vertical-align:top;
text-align:center;
}
tr.detail table tr td {
background-color:#E2EFE1;
}
tr td.action{
text-align:center;
width:20px;
}
td.action img{border:none;}
.clear{clear:both;}
|