26 lines
423 B
CSS
Executable File
26 lines
423 B
CSS
Executable File
table.termForm {
|
|
width: 100%;
|
|
}
|
|
|
|
table.termForm thead tr {
|
|
background-color: rgb(68,68,68);
|
|
color: rgb(255,255,255);
|
|
border-bottom: 2px solid black;
|
|
}
|
|
|
|
table.termForm tbody th {
|
|
text-align: right;
|
|
}
|
|
|
|
table.termForm tfoot tr {
|
|
background-color: rgb(192,192,192);
|
|
color: rgb(0,0,0);
|
|
border-top: 1px solid black;
|
|
}
|
|
|
|
|
|
table.termForm tbody tr.even {
|
|
background-color: rgb(212,212,212);
|
|
color: rgb(0,0,0);
|
|
}
|