After seeing the number of non-wiki upvotes I got I got curious and looked at the number of votes and answers of someone else. I ended up at this list of answers and noticed I could hardly read the number of votes of answers with a high vote count:

I know that that vote count is insane, but should me make it that hard to read?
Of course the problem is due to CSS inheritance: when the number gets too high (>99?), it is wrapped inside a span to decrease text size:
<div class="vote">
<div class="votes answered-accepted">
<span class="vote-count-post">
<strong>
<span style="font-size:80%;">4042</span>
</strong>
</span>
<div class="viewcount">votes</div>
</div>
</div>
but, as it turned out, there already was a rule for spans inside .vote:
.vote span {
color: #808185; /* aha */
display: block;
font-weight: bold;
}
Of course this is used somewhere else, so bluntly removing that color style probably won't suffice.
