Quote:
Originally Posted by capink
One of the good predictors of epub quality is the size of the css file. epubs with css less than 1 Kb usually turn out to be of bad quality. I checked my library that way outside calibre by extracting the size of the css for each epub. My coding skills are not really up to the task of adding such functionality to this plugin. Is someone is still maintaining the plugin he might consider adding this.
|

Boy is that a wide shot.
IMHO that is a possible sign of bloat
Here is my basic stylesheet (modeled after Webcriptions of old), 609 bytes and it includes some stuff some would have kittens over.
Code:
body{
display: block;
font-size: 1.2em;
margin-bottom: 0;
margin-left: 2pt;
margin-right: 2pt;
margin-top: 0;
padding-left: 0;
padding-right: 0;
text-align: justify
}
.indented{
display: block;
margin: 0.5em 0 0 0;
text-indent: 1.5em;
}
.nonindented{
display: block;
margin: 0.5em 0 0 0;
text-indent: 0;
}
.chapno {
display: block;
font-size: 1.5em;
margin: 1em 0;
border: 0;
padding: 0;
text-indent: 0;
text-align: center;
}
.scene {
display: block;
margin: 1em 0;
text-align: center;
}