Arial 14px bold will be very close to the look of the 3.0.x image-based buttons.
Arial is a supported font on all Windows and Mac desktop/notebook systems, as well as all iPhones and iPads. Android devices only have one sans-serif font (Droid Sans), and at 14px bold, it looks even better for the buttons than does Arial. So:
Code: Select all
font-family: Arial,sans-serif
font-size: 14px;
font-weight: bold;
will get the job done.
And while I'm at it, how about replacing "Andale Mono" with "Lucida Console" for CODE tags? Meaning, this:
Code: Select all
font: 0.9em Monaco, "Andale Mono","Courier New", Courier, mono;
to this:
Code: Select all
font: 0.9em Monaco, "Lucida Console","Courier New", Courier, mono;
Andale Mono hasn't existed in Windows systems since 2002...Lucida Console replaced it in XP SP1 due to licensing issues. In addition, Lucida Console is the Windows equivalent to the Monaco font used on Mac desktop/notebook systems and iPads/iPhones, so this change would result in code boxes looking the same on all systems. (Don't ask me to open an RFC. Not gonna happen for something so miniscule and so easy to change.)