View Single Post
Old 08-08-2009, 11:50 PM   #131
slantybard
my parent's oops...
slantybard ought to be getting tired of karma fortunes by now.slantybard ought to be getting tired of karma fortunes by now.slantybard ought to be getting tired of karma fortunes by now.slantybard ought to be getting tired of karma fortunes by now.slantybard ought to be getting tired of karma fortunes by now.slantybard ought to be getting tired of karma fortunes by now.slantybard ought to be getting tired of karma fortunes by now.slantybard ought to be getting tired of karma fortunes by now.slantybard ought to be getting tired of karma fortunes by now.slantybard ought to be getting tired of karma fortunes by now.slantybard ought to be getting tired of karma fortunes by now.
 
Posts: 493
Karma: 1477572
Join Date: Feb 2009
Device: Vx->Handera->Clie-> Axim->505->650->KPW/Aura ->L2->iOS/CBW
I am currently using the following:

Caecilia Bold = Standard
Caecilia Heavy = Bold
Caecilia Bold Italic = Italic
Caecilia Heavy Italic = Bold Italic

This makes a very readable font for the small zoom on standard calibre conversion and also makes for excellent reading in lower light conditions with the sony reader light.

Code:
@font-face {
  font-family: "Caecilia";
  font-weight: normal;
  font-style: normal;
  src: url(res:///Data/fonts/CaeciliaLTStd-Bold.otf);
}

@font-face {
  font-family: "Caecilia";
  font-weight: bold;
  font-style: normal;
  src: url(res:///Data/fonts/CaeciliaLTStd-Heavy.otf);
}

@font-face {
  font-family: "Caecilia";
  font-weight: normal;
  font-style: italic;
  src: url(res:///Data/fonts/CaeciliaLTStd-BoldItalic.otf);
}

@font-face {
  font-family: "Caecilia";
  font-weight: bold;
  font-style: italic;
  src: url(res:///Data/fonts/CaeciliaLTStd-HeavyItalic.otf);
}

p {
  margin-top: 0pt; margin-bottom:0pt;padding:0pt; text-indent:20pt
}

body {
  font-family: "Caecilia", serif;
}
slantybard is offline   Reply With Quote