create/update 'config - Calibre Content Server css.md' file

This commit is contained in:
anonymous
2023-12-19 14:09:35 -05:00
parent c4e28b3da4
commit 882ad4687c

View File

@@ -1,34 +1,39 @@
This is the one I've used the most and I want to try others, so I need to save this one someplace. This is the one I've used the most and I want to try others, so I need to save this one someplace.
```css ```css
@import url(https://fonts.googleapis.com/css?family=Goudy+Bookletter+1911); @import url(https://fonts.googleapis.com/css?family=Bitter);
html { @import url(https://fonts.googleapis.com/css?family=Ubuntu+Mono);
font-family: "Goudy Bookletter 1911", serif;
font-size: 1.05em; body.calibre-viewer-paginated {
color: #92979f; font-family: "Bitter", "Ubuntu Mono" !important;
-webkit-text-size-adjust: 100%; font-size: 100%;
-ms-text-size-adjust: 100%; text-indent: 2em !important;
line-height: 150% !important;
padding: 10px;
word-wrap: break-word;
} }
body { p, p.footnote {
text-align: justify; font-family: "Bitter", "Ubuntu Mono" !important;
text-indent: 2em; font-size: 100%;
line-height: 150%; word-wrap: break-word;
background-color: #27323c; }
margin: 0 auto;
max-width: 23cm; strong, emi, i {
border: 2pt dashed #27323c; color: #ffffcc;
box-shadow: 0 0 20px #000;
padding: 1em;
} }
h1, h2, h3, h4, h5, h6 { h1, h2, h3, h4, h5, h6 {
font-family: "Goudy Bookletter 1911", serif; font-family: "Bitter", serif;
font-weight: 700; font-weight: 600;
text-align: center; line-height: 150% !important;
color: #d39151; text-align: left;
color: #ffcc00;
} }
a { span {display: inline;}
color: #fdfd96;
}``` img {max-width: 100%;}
hr {border: 2px solid; border-radius: 2px;}
```