Add this to additional CSS.

/* ***** postbit ***** */
.postbit {
border: 1px solid #ff6101;
margin: 3px 4px;
padding: 2px;
color: #ff6101;
background: #1b1b1b;
font-size: 10px;
}
Then in postbit_legacy, find every '<div>'
And change it to : <div class="postbit">

For example:
Before:
<if condition="$post['joindate']"><div>$vbphrase[join_date]: $post[joindate]</div></if>

After:
<if condition="$post['joindate']"><div class="postbit">$vbphrase[join_date]: $post[joindate]</div></if>

Of course edit the colors on CSS to match your skin.

Enjoy?