I have a theme with the following CSS rule:
.xcode {
font-family: SFMono-Regular,Menlo,Consolas,"Liberation Mono","Courier New",Courier,monospace;
font-size: 75%;
}
It is basically a soup of different fonts from Apple, Windows, Linux which look differently sized at 75%. I'd like the size to be, say, 90% when Consolas is selected, 80% when Liberation Mono is selected, and stay as it is otherwise. Is this possible using CSS only? How?