From ed33201f616cd299634c4eeac4b2b5c1dc5b6614 Mon Sep 17 00:00:00 2001 From: Michael Reed Date: Mon, 15 Jun 2020 12:34:06 -0400 Subject: [PATCH] epub.css: Fix path to embedded fonts Found with the help of Calibre. --- epub.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/epub.css b/epub.css index bb2986f3..812d650e 100644 --- a/epub.css +++ b/epub.css @@ -4,19 +4,19 @@ font-family: 'mononoki'; font-weight: normal; font-style: normal; - src: url('fonts/mononoki-Regular.ttf'); + src: url('../fonts/mononoki-Regular.ttf'); } @font-face { font-family: 'DejaVu Sans Mono'; font-weight: normal; font-style: normal; - src: url('fonts/DejaVuSansMono.ttf'); + src: url('../fonts/DejaVuSansMono.ttf'); } @font-face { font-family: 'Source Code Pro'; font-weight: normal; font-style: normal; - src: url('fonts/SourceCodePro-Regular.ttf'); + src: url('../fonts/SourceCodePro-Regular.ttf'); } /* TODO: add freemono font from agda.css */ body { margin: 5%; text-align: justify; font-size: medium; }