I'm having trouble changing the look and feel of Calibre's full screen mode. The User CSS can change the font size and color, but I can't seem to change the top/bottom margins, or text justification. Right now, the text is justified and I want it to be aligned left. Also, there are no margins at the top or bottom, creating a shadow at the top. I'd like to add a margin to the top and bottom.
Here's my User CSS:
Code:
@page { margin-top: 32px; margin-bottom: 32px }
body {
color: rgb(124,124,124);
background-color:rgb(20,20,20);
line-spacing:2.0;
margin-top:32px !important;
margin-bottom:32px !important;
text-align: left !important;
}
The @page, margin-top/bottom, and text-align lines don't seem to have any effect on calibre's full screen mode. Am I missing something?