I'm working on a rails app that is using twitter bootstrap.
I'm using a custom font (Museo) and it's imported with the css that font-squirrel generated, and it's working without problems locally, but when deployed to the server (I believe linode) the font's wont load or show at all.
This is the code I'm using to import the fonts:
@font-face {
font-family: 'MuseoSlab500Regular';
src: url('museo_slab_500-webfont.eot') format('embedded-opentype');
src: url('museo_slab_500-webfont.eot?#iefix') format('embedded-opentype'),
url('museo_slab_500-webfont.woff') format('woff'),
url('museo_slab_500-webfont.ttf') format('truetype'),
url('museo_slab_500-webfont.svg#MuseoSlab500Regular') format('svg');
font-weight: normal;
font-style: normal;
}
I tested opening directly the fonts to see if it was a problem with the files, and the files open. The css is compiled in rails via the assets pipeline, so this piece of code is on the application.css123817391838123123 (random number) file. I have no idea if it's a problem of assets pipeline, I think it's strange because it's working everywhere else (chrome, safari, firefox, opera). And when testing this online in IE9, if I change the browser mode to Quirks Mode, the fonts will load.
So, I'm all out of ideas, anyone might know what may be happening here?
Thanks