all the best things in life come with disclaimers

Signed-off-by: Christine Dodrill <me@christine.website>
This commit is contained in:
Christine Dodrill 2021-04-23 08:25:15 -04:00
parent 60e561c239
commit a02b990eb4
4 changed files with 74 additions and 3 deletions

View File

@ -0,0 +1,15 @@
<center>
<p><i>This book is dedicated to all of those that need a ray of hope in these
trying times.</i></p>
This book is a Within Studios publication. Find out more at
https://withinstudios.itch.io
This book is a work of fiction, Names, characters, business, events and
incidents are the products of the authors imagination. Any resemblance to
actual persons, living or dead, or actual events is purely coincidental.
However, the topics that the author alludes to are entirely real and serious
problems that require deep thought and consideration.
</center>

View File

@ -7,7 +7,7 @@ FILES="$(ls ./**/*.md | grep -v plans)"
echo $FILES echo $FILES
pandoc -o ../out/Spellblade.epub --resource-path=. title.txt $FILES pandoc -o ../out/Spellblade.epub --resource-path=. --css style.css title.txt $FILES
ebook-convert ../out/Spellblade.epub ../out/Spellblade.mobi ebook-convert ../out/Spellblade.epub ../out/Spellblade.mobi
pandoc --lua-filter wordcount.lua $FILES pandoc --lua-filter wordcount.lua $FILES

56
src/style.css Normal file
View File

@ -0,0 +1,56 @@
html {
font-size: 100%;
-webkit-text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
}
body {
font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", serif;
margin: auto;
text-align: justify;
font-size: 16px;
line-height: 1.7;
}
h1 { text-align: left; }
h2 { text-align: left; }
h3 { text-align: left; }
h4 { text-align: left; }
h5 { text-align: left; }
h6 { text-align: left; }
h1.title {
margin-top: 0;
text-align: center;
}
p.author {
text-align: center;
}
ol.toc {
padding: 0;
margin: 1em 0;
padding: 0 0 0 2em;
}
ul.toc ul, ol.toc ol {
margin: .3em 0;
}
li { margin: 0; padding: 0 5px; }
code {
font-family: monospace;
background-color: rgb(247, 247, 247);
}
pre {
font-family: monospace;;
padding: 16px;
overflow: auto;
font-size: 80%;
line-height: 1.45;
border-radius: 3px;
background-color: rgb(247, 247, 247);
}