I'm looking for feedback on my quick and dirty hack to override the css in downloaded books; removing fonts, "fixing" things like line height, justification, paragraph indentation, etc. I simply append it to the end of the existing css files. (I would use it as kobo_extra.css but the !important gizmo hoses things on the Kobo.)
Here's what I'm using so far. I'm wondering if you have other things you've needed or what your take is on this.
PHP Code:
body {
background-color: initial !important;
font-family: unset !important;
line-height: 1.2 !important;
}
p {
font-family: unset !important; /* MS Word stuff */
line-height: 1.2 !important;
margin: 0em !important;
text-align: left !important;
text-indent: 0 !important;
}
p + p {
text-indent: 1.6em !important;
}