50 lines
774 B
CSS
50 lines
774 B
CSS
|
|
table.report {
|
||
|
|
margin: 15px 0;
|
||
|
|
width: 100%;
|
||
|
|
|
||
|
|
border-spacing: 1px;
|
||
|
|
|
||
|
|
font-family: 'Calibri';
|
||
|
|
font-size: 13px;
|
||
|
|
}
|
||
|
|
|
||
|
|
table.report tfoot td {
|
||
|
|
text-align: right;
|
||
|
|
padding-right: 10px;
|
||
|
|
}
|
||
|
|
|
||
|
|
table.report thead tr th,
|
||
|
|
table.report tbody tr td,
|
||
|
|
table.report tfoot td.data {
|
||
|
|
padding: 2px 5px;
|
||
|
|
border: 1px solid #CCCCCC;
|
||
|
|
|
||
|
|
text-align: center;
|
||
|
|
}
|
||
|
|
|
||
|
|
table.report thead tr th, table.report tfoot td.data {
|
||
|
|
background: #ebebeb;
|
||
|
|
}
|
||
|
|
|
||
|
|
table.report tbody tr.odd {
|
||
|
|
background: #f6f6f6;
|
||
|
|
}
|
||
|
|
|
||
|
|
table.report tbody tr.even {
|
||
|
|
background: #ffffff;
|
||
|
|
}
|
||
|
|
|
||
|
|
p.notice {
|
||
|
|
margin: 10px 0;
|
||
|
|
font-weight: bolder;
|
||
|
|
text-align:center;
|
||
|
|
color: #f10000;
|
||
|
|
}
|
||
|
|
|
||
|
|
table.report td.code {
|
||
|
|
text-align: left;
|
||
|
|
}
|
||
|
|
|
||
|
|
table.report td.amount {
|
||
|
|
text-align: right !important;
|
||
|
|
}
|