View Single Post
Old 09-15-2020, 09:49 PM   #3
Rand Brittain
Bookmaker
Rand Brittain ought to be getting tired of karma fortunes by now.Rand Brittain ought to be getting tired of karma fortunes by now.Rand Brittain ought to be getting tired of karma fortunes by now.Rand Brittain ought to be getting tired of karma fortunes by now.Rand Brittain ought to be getting tired of karma fortunes by now.Rand Brittain ought to be getting tired of karma fortunes by now.Rand Brittain ought to be getting tired of karma fortunes by now.Rand Brittain ought to be getting tired of karma fortunes by now.Rand Brittain ought to be getting tired of karma fortunes by now.Rand Brittain ought to be getting tired of karma fortunes by now.Rand Brittain ought to be getting tired of karma fortunes by now.
 
Posts: 427
Karma: 2143650
Join Date: Sep 2010
Device: Cybook Opus
I can't get Borkify to work, so I'll just post a bit of a page.

Code:
<div class="indent-2em">
      <p>“If something’s on your mind, just say it.”</p>
    </div>

    <div class="indent-2em">
      <p>The man seemed bothered by her question.</p>
    </div>

    <div class="indent-2em">
      <p>“It’s not like that─I’m just a little out of place. I’m an island monkey. I don’t think I’ve ever stepped on wood so shiny.”</p>
    </div>
The CSS is as follows:

Code:
body {
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-align: justify;
}
div, p {
  display: block;
  margin: 0;
  padding: 0;
}
body, div, p {
  text-indent: 0;
}
body > p, div > p {
  text-indent: inherit;
}
h1, h2, h3, h4, h5, h6 {
  display: block;
  margin: 0;
  padding: 0;
  font-size: 100%;
  font-weight: inherit;
  background: transparent;
}
img {
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
  border: none;
  vertical-align: baseline;
  background: transparent;
}
a {
  font-style: inherit;
  font-weight: inherit;
  text-decoration: inherit;
  color: inherit;
  background: transparent;
}
.align-center {
  text-align: center;
}
.align-right, .align-end {
  text-align: right;
}
.hltr a {
  text-decoration: underline;
}
a:link, a:visited, a:hover, a:focus, a:active {
  color: #00f;
}
img.gaiji, img.gaiji-line, img.gaiji-wide {
  display: inline-block;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
}
img.gaiji {
  width: 1em;
  height: 1em;
}
.hltr img.gaiji, .hltr img.gaiji-line, .hltr img.gaiji-wide {
  vertical-align: text-bottom;
}
.fit {
  display: inline-block;
  page-break-inside: avoid;
  max-height: 100%;
  max-width: 100%;
}
.hltr .fit {
  vertical-align: top;
}
.super {
  font-size: x-small;
  vertical-align: super;
}
.hltr .gfont, .vrtl .gfont {
  font-family: sans-serif;
}
.font-090per {
  font-size: 90%;
}
.font-110per {
  font-size: 110%;
}
.bold {
  font-weight: bold;
}
.italic {
  font-style: italic;
}
.indent-2em {
  text-indent: 10%;
}
.hltr .h-indent-2em {
  text-indent: -2em;
  padding-left: 2em;
}
.hltr .start-3em {
  margin-left: 3em;
}
.hltr .start-5em {
  margin-left: 5em;
}
.hltr .end-3em {
  margin-right: 3em;
}
.hltr .align-right, .vrtl .hltr .align-right {
  text-align: right;
  padding-left: 3em;
}
a:visited {
  color: #00008b;
}
.cover-page .main {
  margin: 0;
  padding: 0;
  text-align: center;
}
.image-page .main {
  margin: 0;
  padding: 0;
  text-align: center;
}
Rand Brittain is offline   Reply With Quote