I have spent last 2 days figuring out how to make font looks crispy on Chrome and Safari, even on Firefox its thinner. I have tried the following things, its a wrap up of all the time spent..
-webkit-transform-style: preserve-3d;
-webkit-transform: translateZ(0);
-webkit-text-size-adjust:100%;
font-smoothing: antialiased;
-webkit-font-smoothing: subpixel-antialiased;
-moz-osx-font-smoothing: grayscale;
-webkit-text-stroke-width: none;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
opacity:0.99;
-moz-opacity: 0.99;
-khtml-opacity: 0.99;
and still a lot more tests, which I never commented, so I dont have, however the only difference was made with opacity:.99; which after setting to specific divs made difference, but font is will wider than the original. In safari, its all pathetic, and I am tired now, I need a working example for all big 3s, I dont care about IE.. This theme looks like working in all browsers :
The only property I found in their CSS is -webkit-text-size-adjust:100%; to the body {} I tried both direct font adding and with Javascript method where it loads google fonts within a couple of seconds and repaints.. but nothing worked :( Please help..
regards