Calibre 3.6
Kepub metadata writer 2.7.1
If I take an epub with the following code into the .css file:
Code:
.colophon {
font-size: 0.92em;
text-indent: 0;
text-align: center;
}
and convert it in kepub I obtain a file with the following code in the .css file:
Code:
.colophon {
display: block;
font-size: 0.75em;
text-align: center;
text-indent: 0;
margin: 0
}
QUESTIONS:
- Why the font-size value is changed from .92em to .75em?
- Is it a good practice to manually re-change the font-size value into the kepub opening it with an archive manager?
Thanks.