[FIX] changed inline styles to css

This commit is contained in:
iAmShorty 2014-03-10 11:07:25 +01:00
parent 1a9ba4adc3
commit 2225468374
2 changed files with 6 additions and 2 deletions

View File

@ -367,3 +367,7 @@ span.overview {
div.overview {
margin: 20px 0px 0px;
}
span.bigfont {
font-size: 100%;
}

View File

@ -30,13 +30,13 @@
<tr>
<th>Confirmed</th>
<th>
<span class="label label-success pull-right" id="b-confirmed">{$GLOBAL.userdata.balance.confirmed|number_format:"6"}</span>
<span class="label label-success pull-right bigfont" id="b-confirmed">{$GLOBAL.userdata.balance.confirmed|number_format:"6"}</span>
</th>
</tr>
<tr>
<th>Unconfirmed</th>
<th>
<span class="label label-warning pull-right" id="b-unconfirmed">{$GLOBAL.userdata.balance.unconfirmed|number_format:"6"}</span>
<span class="label label-warning pull-right bigfont" id="b-unconfirmed">{$GLOBAL.userdata.balance.unconfirmed|number_format:"6"}</span>
</th>
</tr>
</tbody>