18 lines
185 B
CSS
18 lines
185 B
CSS
|
|
.debit {
|
||
|
|
color: red;
|
||
|
|
/*font-weight: bold;*/
|
||
|
|
}
|
||
|
|
|
||
|
|
.debit:before {
|
||
|
|
content: "(";
|
||
|
|
}
|
||
|
|
|
||
|
|
.debit:after {
|
||
|
|
content: ")";
|
||
|
|
}
|
||
|
|
|
||
|
|
.credit {
|
||
|
|
color: black;
|
||
|
|
/*font-weight: bold;*/
|
||
|
|
}
|