Dan and Alism, can you share what settings you use in Calibre to make the Arial Fonts readable in XS? Here are some of my settings:
Base Font Size: 11.5
Line Height: 13.0 (tightly packed page without being overly cramped to my eyes)
Here is the CSS code I use in "Extra CSS"
@font-face {
font-family: "LexiaDaMa";
font-weight: normal;
font-style: normal;
src: url(res:///Data/fonts/LexiaDaMa.otf);
}
@font-face {
font-family: "LexiaDaMa";
font-weight: bold;
font-style: normal;
src: url(res:///Data/fonts/LexiaDaMa-Bold.otf);
}
@font-face {
font-family: "LexiaDaMa";
font-weight: normal;
font-style: italic;
src: url(res:///Data/fonts/LexiaDaMa-Italic.otf);
}
@font-face {
font-family: "LexiaDaMa";
font-weight: bold;
font-style: italic;
src: url(res:///Data/fonts/LexiaDaMa-BoldItalic.otf);
}
body {
font-family: "LexiaDaMa";
}
Any help would be greatly appreciated. If you could copy and paste some of the CSS code, it would help me out immensely.
|