Right-align the numeric columns.

The Game.printTable() method now right-aligns the name, rank, and score
columns, by giving their cells a different CSS class.
This commit is contained in:
John "Elwin" Edwards 2014-01-02 11:39:57 -05:00
parent aef04a38e1
commit 31174f58ee
2 changed files with 17 additions and 9 deletions

View file

@ -42,3 +42,9 @@ span.sdata {
display: table-cell;
padding: 0 1em;
}
span.sdatar {
display: table-cell;
padding: 0 1em;
text-align: right;
}