diff options
| author | Dan Allen <dan.j.allen@gmail.com> | 2014-04-16 20:38:22 -0600 |
|---|---|---|
| committer | Dan Allen <dan.j.allen@gmail.com> | 2014-04-16 20:38:22 -0600 |
| commit | 21f1a227a5bf84d2ea08b08c52de11babc288f95 (patch) | |
| tree | 932a5bd3584a3428d7b0e528ca1a4d82402aa402 /data | |
| parent | 7507d14134bb4e5d098c3c1c40fdfa2d1fb16e01 (diff) | |
recreate Noto Serif fonts with wider subset of code points
Diffstat (limited to 'data')
| -rw-r--r-- | data/fonts/noto-serif-bold-italic.ttf | bin | 51060 -> 282724 bytes | |||
| -rw-r--r-- | data/fonts/noto-serif-bold.ttf | bin | 54272 -> 314512 bytes | |||
| -rw-r--r-- | data/fonts/noto-serif-italic.ttf | bin | 45728 -> 274416 bytes | |||
| -rw-r--r-- | data/fonts/noto-serif-regular.ttf | bin | 49052 -> 301656 bytes | |||
| -rw-r--r-- | data/styles/epub3.css | 13 |
5 files changed, 9 insertions, 4 deletions
diff --git a/data/fonts/noto-serif-bold-italic.ttf b/data/fonts/noto-serif-bold-italic.ttf Binary files differindex 6e8ee18..a3bab00 100644 --- a/data/fonts/noto-serif-bold-italic.ttf +++ b/data/fonts/noto-serif-bold-italic.ttf diff --git a/data/fonts/noto-serif-bold.ttf b/data/fonts/noto-serif-bold.ttf Binary files differindex 8812f62..9cf727a 100644 --- a/data/fonts/noto-serif-bold.ttf +++ b/data/fonts/noto-serif-bold.ttf diff --git a/data/fonts/noto-serif-italic.ttf b/data/fonts/noto-serif-italic.ttf Binary files differindex 495a507..4bec1a6 100644 --- a/data/fonts/noto-serif-italic.ttf +++ b/data/fonts/noto-serif-italic.ttf diff --git a/data/fonts/noto-serif-regular.ttf b/data/fonts/noto-serif-regular.ttf Binary files differindex 1ec81f8..1e0b9a0 100644 --- a/data/fonts/noto-serif-regular.ttf +++ b/data/fonts/noto-serif-regular.ttf diff --git a/data/styles/epub3.css b/data/styles/epub3.css index c72fa7f..b75afaa 100644 --- a/data/styles/epub3.css +++ b/data/styles/epub3.css @@ -435,6 +435,7 @@ ul > li::before { */ float: left; margin-left: -1em; + margin-top: -0.05em; padding-left: 0.25em; /* guarantee it's out of the flow */ width: 0; @@ -442,22 +443,22 @@ ul > li::before { } ul > li::before { - content: '\25AA'; /* small black square */ + content: "\25AA"; /* small black square */ color: #666665; } ul ul > li::before { - content: '\25E6'; /* small white circle */ + content: "\25E6"; /* small white circle */ color: #57AD68; } ul ul ul > li::before { - content: '\2022'; /* small black circle */ + content: "\2022"; /* small black circle */ color: #666665; } ul ul ul ul > li::before { - content: '\25AB'; /* small white square */ + content: "\25AB"; /* small white square */ color: #57AD68; } @@ -1248,6 +1249,7 @@ nav#toc ol { font-family: "Noto Serif"; font-style: normal; font-weight: normal; + /* Enhanced with the zero-width word joiner character, U+2060 */ src: url(../fonts/noto-serif-regular.ttf); } @@ -1255,6 +1257,7 @@ nav#toc ol { font-family: "Noto Serif"; font-style: italic; font-weight: normal; + /* Enhanced with the zero-width word joiner character, U+2060 */ src: url(../fonts/noto-serif-italic.ttf); } @@ -1262,6 +1265,7 @@ nav#toc ol { font-family: "Noto Serif"; font-style: normal; font-weight: bold; + /* Enhanced with the zero-width word joiner character, U+2060 */ src: url(../fonts/noto-serif-bold.ttf); } @@ -1269,6 +1273,7 @@ nav#toc ol { font-family: "Noto Serif"; font-style: italic; font-weight: bold; + /* Enhanced with the zero-width word joiner character, U+2060 */ src: url(../fonts/noto-serif-bold-italic.ttf); } |
