-
-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Padding Type layout for epub, xhtml and txt #328
Comments
Thank you for your feedback and suggestions. Please note that the author might only respond on weekends, so we kindly ask for your patience and understanding. |
Only when the padding style is enabled the below 6 buttons should be editable, otherwise uneditable. |
Will be adding it as low priority, so might take a long time before its implemented. But you can use this css as temporary solution. body #app #EPubReader section.main>.cont{
border: 1px solid;
border-color: red;
padding-left:40px;
padding-right:40px;
background-color: grey;
} add this to your existing custom .css file or create a new |
If you want to use background color from the reader setting, then do this. #EPubReader > section{
background:var(--body-bg-color);
}
body #app #EPubReader section.main>.cont{
border: 1px solid;
border-color: red;
padding-left:40px;
padding-right:40px;
} and if you want border color to be same as font color replace with this border-color: var(--epub-font-color); |
A couple reminders for the purpose of clarity,
|
Nice Layout. |
Type of reader (if reader related)
epub
Description of the new feature / enhancement
Reference For The Requested Feature - Padding Type Layout
1. For this type of layout there should be six new buttons / values in epub reader settings,
2. The border line should respect the border padding left and right value while Increasing / Decreasing Font Size and width.
Zooming.Behavior.mp4
3. Sample / Reference Image Of Reader Settings,
Scenario when this would be used?
For reading epubs, xhtml with lesser eye strain. That layout also looks good.
Supporting information
I copied hex value of the colors used on the website and applied the same in yomikiru, but without the border and border outside bg color, it does not feel right.
The text was updated successfully, but these errors were encountered: