View Single Post
Old 08-17-2019, 08:56 AM   #932
theducks
Well trained by Cats
theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.
 
theducks's Avatar
 
Posts: 31,086
Karma: 60358908
Join Date: Aug 2009
Location: The Central Coast of California
Device: Kobo Libra2,Kobo Aura2v1, K4NT(Fixed: New Bat.), Galaxy Tab A
Quote:
Originally Posted by capink View Post
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;
 }
theducks is offline   Reply With Quote