34 lines
552 B
CSS
34 lines
552 B
CSS
/* CSS for Output Lists */
|
|
|
|
table.list {
|
|
width: 100%;
|
|
border: 0px solid #505050;
|
|
font-weight: normal;
|
|
color: #000000;
|
|
|
|
font-family: "bitstream vera sans","luxi sans",verdana,geneva,arial,helvetica,sans-serif;
|
|
background-color: #99999B;
|
|
font-size: 13px;
|
|
empty-cells: hide;
|
|
}
|
|
|
|
table.list tr.heading {
|
|
color: #FFFFFF;
|
|
background-color: #11111A;
|
|
font-weight: bold;
|
|
}
|
|
|
|
table.list tr td.title {
|
|
color: #000000;
|
|
background-color: #0777DD;
|
|
|
|
}
|
|
|
|
table.list tr.odd {
|
|
background-color: #EEEEEF;
|
|
}
|
|
|
|
table.list tr.even {
|
|
background-color: #FFFFFF;
|
|
}
|