/* Style Sheet voor ePub Books */ /* Set margins op 2% (Dit geeft een witte rand om het boek) */ body {margin-left:2%; margin-right:2%; margin-top:2%; margin-bottom:2%;} /* Fonts */ @font-face { font-family: 'CharisSILModifiedLarger'; font-weight: normal; font-style: normal; src: url('../Fonts/CharisSILModifiedLarger-Regular.ttf'); } @font-face { font-family: 'CharisSILModifiedLarger'; font-weight: bold; font-style: normal; src: url('../Fonts/CharisSILModifiedLarger-Bold.ttf'); } @font-face { font-family: 'CharisSILModifiedLarger'; font-weight: normal; font-style: italic; src: url('../Fonts/CharisSILModifiedLarger-Italic.ttf'); } @font-face { font-family: 'CharisSILModifiedLarger'; font-weight: bold; font-style: italic; src: url('../Fonts/CharisSILModifiedLarger-BoldItalic.ttf'); } /* Text indent zorgt ervoor dat een alinea inspringt, dit heeft dezelfde werking als het gebruik van een tab bij een nieuwe alinea.De margin instellingen zorgen ervoor dat de witte regels om de alinea's verdwijnen zodat het er meer als een echt boek uitziet. De text-align staat op justify, maar je kan dit ook op left zetten of de regel verwijderen. Verder is een font gespecificeerd dat in deze epub zit ingesloten, deze regel is echter niet noodzakelijk */ p {margin-left:0; margin-right:0; margin-top:0; margin-bottom:0; text-align: justify; font-family:"CharisSILModifiedLarger"; } /* Hieronder zorgen we ervoor dat de hoofdstuk titels gecentreerd worden. Verder krijgen de titels hetzelfde font als de rest van het boek */ h1 {text-align: center; font-family:"CharisSILModifiedLarger"; } h2 {text-align: center; font-family:"CharisSILModifiedLarger"; }