diff --git a/_includes/toc.html b/_includes/toc.html index d31aabd8..35a77f48 100644 --- a/_includes/toc.html +++ b/_includes/toc.html @@ -11,6 +11,7 @@
  • Typefaces and font-stacks
  • Open Source and Libre Fonts We Can Recommend
  • Variable fonts
  • +
  • Using custom fonts with Readium CSS
  • User Overrides’ Classification
  • User Settings and Themes
  • Baseline for a11y-related user settings
  • diff --git a/css/ReadiumCSS-config.css b/css/ReadiumCSS-config.css index 1825dadc..891d3634 100644 --- a/css/ReadiumCSS-config.css +++ b/css/ReadiumCSS-config.css @@ -38,9 +38,6 @@ /* Accessibility normalization */ @custom-selector :--a11y-normalize [style*="readium-a11y-on"]; -/* Accessibility font. You can add selectors, using “, ” as a separator, if you have multiple fonts */ -@custom-selector :--a11y-font [style*="AccessibleDfA"], [style*="IA Writer Duospace"]; - /* Direction i.e. ltr and rtl */ @custom-selector :--ltr [dir="ltr"]; @custom-selector :--rtl [dir="rtl"]; diff --git a/css/dist/ReadiumCSS-after.css b/css/dist/ReadiumCSS-after.css index 11c68886..963b9c6f 100644 --- a/css/dist/ReadiumCSS-after.css +++ b/css/dist/ReadiumCSS-after.css @@ -259,43 +259,28 @@ body{ font-family:revert !important; } -:root[style*="AccessibleDfA"]{ - font-family:AccessibleDfA, Verdana, Tahoma, "Trebuchet MS", sans-serif !important; -} - -:root[style*="IA Writer Duospace"]{ - font-family:"IA Writer Duospace", Menlo, "DejaVu Sans Mono", "Bitstream Vera Sans Mono", Courier, monospace !important; -} - -:root[style*="AccessibleDfA"],:root[style*="IA Writer Duospace"], :root[style*="readium-a11y-on"]{ font-style:normal !important; font-weight:normal !important; } -:root[style*="AccessibleDfA"] body *:not(code):not(var):not(kbd):not(samp),:root[style*="IA Writer Duospace"] body *:not(code):not(var):not(kbd):not(samp), :root[style*="readium-a11y-on"] body *:not(code):not(var):not(kbd):not(samp){ font-family:inherit !important; font-style:inherit !important; font-weight:inherit !important; } -:root[style*="AccessibleDfA"] body *:not(a),:root[style*="IA Writer Duospace"] body *:not(a), :root[style*="readium-a11y-on"] body *:not(a){ text-decoration:none !important; } -:root[style*="AccessibleDfA"] body *,:root[style*="IA Writer Duospace"] body *, :root[style*="readium-a11y-on"] body *{ font-variant-caps:normal !important; font-variant-numeric:normal !important; font-variant-position:normal !important; } -:root[style*="AccessibleDfA"] sup,:root[style*="IA Writer Duospace"] sup, :root[style*="readium-a11y-on"] sup, -:root[style*="AccessibleDfA"] sub, -:root[style*="IA Writer Duospace"] sub, :root[style*="readium-a11y-on"] sub{ font-size:1rem !important; vertical-align:baseline !important; diff --git a/css/dist/ReadiumCSS-before.css b/css/dist/ReadiumCSS-before.css index 5d569100..925a65d3 100644 --- a/css/dist/ReadiumCSS-before.css +++ b/css/dist/ReadiumCSS-before.css @@ -225,34 +225,6 @@ math{ --RS__lineHeightCompensation:1.167; } -@font-face{ - font-family:AccessibleDfA; - font-style:normal; - font-weight:normal; - src:local("AccessibleDfA"), url("fonts/AccessibleDfA-Regular.woff2") format("woff2"), url("fonts/AccessibleDfA-Regular.woff") format("woff"); -} - -@font-face{ - font-family:AccessibleDfA; - font-style:normal; - font-weight:bold; - src:local("AccessibleDfA"), url("fonts/AccessibleDfA-Bold.woff2") format("woff2"); -} - -@font-face{ - font-family:AccessibleDfA; - font-style:italic; - font-weight:normal; - src:local("AccessibleDfA"), url("fonts/AccessibleDfA-Italic.woff2") format("woff2"); -} - -@font-face{ - font-family:"IA Writer Duospace"; - font-style:normal; - font-weight:normal; - src:local("iAWriterDuospace-Regular"), url("fonts/iAWriterDuospace-Regular.ttf") format("truetype"); -} - body{ widows:2; orphans:2; diff --git a/css/dist/android-fonts-patch/ReadMe.md b/css/dist/android-fonts-patch/ReadMe.md deleted file mode 100644 index 6b286e2d..00000000 --- a/css/dist/android-fonts-patch/ReadMe.md +++ /dev/null @@ -1,22 +0,0 @@ -# Android Fonts Patch - -This patch is intended to fix a Fixed-Layout issue on Android, and only on this platform. **It doesn’t apply to reflowable EPUBs or any other platform.** - -See https://github.com/readium/css/issues/149 - -## What it does - -It declares open source fonts alternatives (Nimbus Roman and Nimbus Sans) as the font-families that generic font-family `serif` and `sans-serif` are usually resolving to on other platforms: - -- `Nimbus Roman` as `Times` and `Times New Roman`; -- `Nimbus Sans` as `Helvetica` and `Arial`. - -Indeed, these fonts are fully metric compatible while Droid Serif and Roboto are not, which creates issues with text that is absolutely positioned in Fixed-Layout e.g. overlapping or overflowing text, etc. - -Unfortunately, it is not possible to assign these fonts to generic font-family `serif` and `sans-serif`, we have to target the font-family names they are resolving to. - -## When to load it? - -You want to target Fixed-Layout EPUBs on Android devices, in which there is text (not a manga or a *bande dessinée* made of images) but no font embedded in the package. Ideally, you would check whether `Times`, `Times New Roman`, `Arial` or `Helvetica` can be found in stylesheets (`.css`). - -Logic is up to implementers. \ No newline at end of file diff --git a/css/dist/android-fonts-patch/android-fonts-patch.css b/css/dist/android-fonts-patch/android-fonts-patch.css deleted file mode 100644 index 87acc80e..00000000 --- a/css/dist/android-fonts-patch/android-fonts-patch.css +++ /dev/null @@ -1,136 +0,0 @@ -/* Readium CSS - Android Fonts Patch module - - A stylesheet aligning Android generic serif and sans-serif fonts on other platforms - - Repo: https://github.com/readium/css */ - -/* Android resolves sans-serif to Roboto, and serif to Droid Serif - This created issues for FXL EPUBs relying on Times (New Roman), - Helvetica or Arial while not embedding the font files in the package. - - See https://github.com/readium/css/issues/149 - - Unfortunately it is no possible to target generic family using @font-face, - we have to target specific font-family names e.g. Times, Arial, etc. - - This stylesheet/patch should be loaded only for this case i.e. - a Fixed-Layout EPUB with text but no embedded font on an Android device. - The logic for checking these conditions are up to implementers. -*/ - -/* Serif (Times + Times New Roman) */ - -@font-face { - font-family: Times; - src: url(serif/NimbusRoman.woff) format("woff"); - font-weight: normal; - font-style: normal; -} - -@font-face { - font-family: "Times New Roman"; - src: url(serif/NimbusRoman.woff) format("woff"); - font-weight: normal; - font-style: normal; -} - -@font-face { - font-family: Times; - src: url(serif/NimbusRoman-Italic.woff) format("woff"); - font-weight: normal; - font-style: italic; -} - -@font-face { - font-family: "Times New Roman"; - src: url(serif/NimbusRoman-Italic.woff) format("woff"); - font-weight: normal; - font-style: italic; -} - -@font-face { - font-family: Times; - src: url(serif/NimbusRoman-Bold.woff) format("woff"); - font-weight: bold; - font-style: normal; -} - -@font-face { - font-family: "Times New Roman"; - src: url(serif/NimbusRoman-Bold.woff) format("woff"); - font-weight: bold; - font-style: normal; -} - -@font-face { - font-family: Times; - src: url(serif/NimbusRoman-BoldItalic.woff) format("woff"); - font-weight: bold; - font-style: italic; -} - -@font-face { - font-family: "Times New Roman"; - src: url(serif/NimbusRoman-BoldItalic.woff) format("woff"); - font-weight: bold; - font-style: italic; -} - -/* Sans-serif (Helvetica + Arial) */ - -@font-face { - font-family: Helvetica; - src: url(sans-serif/NimbusSans.woff) format("woff"); - font-weight: normal; - font-style: normal; -} - -@font-face { - font-family: Arial; - src: url(sans-serif/NimbusSans.woff) format("woff"); - font-weight: normal; - font-style: normal; -} - -@font-face { - font-family: Helvetica; - src: url(sans-serif/NimbusSans-Italic.woff) format("woff"); - font-weight: normal; - font-style: italic; -} - -@font-face { - font-family: Arial; - src: url(sans-serif/NimbusSans-Italic.woff) format("woff"); - font-weight: normal; - font-style: italic; -} - -@font-face { - font-family: Helvetica; - src: url(sans-serif/NimbusSans-Bold.woff) format("woff"); - font-weight: bold; - font-style: normal; -} - -@font-face { - font-family: Arial; - src: url(sans-serif/NimbusSans-Bold.woff) format("woff"); - font-weight: bold; - font-style: normal; -} - -@font-face { - font-family: Helvetica; - src: url(sans-serif/NimbusSans-BoldItalic.woff) format("woff"); - font-weight: bold; - font-style: italic; -} - -@font-face { - font-family: Arial; - src: url(sans-serif/NimbusSans-BoldItalic.woff) format("woff"); - font-weight: bold; - font-style: italic; -} \ No newline at end of file diff --git a/css/dist/android-fonts-patch/sans-serif/GNU General Public License.txt b/css/dist/android-fonts-patch/sans-serif/GNU General Public License.txt deleted file mode 100644 index 6db90986..00000000 --- a/css/dist/android-fonts-patch/sans-serif/GNU General Public License.txt +++ /dev/null @@ -1,340 +0,0 @@ -GNU GENERAL PUBLIC LICENSE - Version 2, June 1991 - - Copyright (C) 1989, 1991 Free Software Foundation, Inc. - 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - - Preamble - - The licenses for most software are designed to take away your -freedom to share and change it. By contrast, the GNU General Public -License is intended to guarantee your freedom to share and change free -software--to make sure the software is free for all its users. This -General Public License applies to most of the Free Software -Foundation's software and to any other program whose authors commit to -using it. (Some other Free Software Foundation software is covered by -the GNU Library General Public License instead.) You can apply it to -your programs, too. - - When we speak of free software, we are referring to freedom, not -price. Our General Public Licenses are designed to make sure that you -have the freedom to distribute copies of free software (and charge for -this service if you wish), that you receive source code or can get it -if you want it, that you can change the software or use pieces of it -in new free programs; and that you know you can do these things. - - To protect your rights, we need to make restrictions that forbid -anyone to deny you these rights or to ask you to surrender the rights. -These restrictions translate to certain responsibilities for you if you -distribute copies of the software, or if you modify it. - - For example, if you distribute copies of such a program, whether -gratis or for a fee, you must give the recipients all the rights that -you have. You must make sure that they, too, receive or can get the -source code. And you must show them these terms so they know their -rights. - - We protect your rights with two steps: (1) copyright the software, and -(2) offer you this license which gives you legal permission to copy, -distribute and/or modify the software. - - Also, for each author's protection and ours, we want to make certain -that everyone understands that there is no warranty for this free -software. If the software is modified by someone else and passed on, we -want its recipients to know that what they have is not the original, so -that any problems introduced by others will not reflect on the original -authors' reputations. - - Finally, any free program is threatened constantly by software -patents. We wish to avoid the danger that redistributors of a free -program will individually obtain patent licenses, in effect making the -program proprietary. To prevent this, we have made it clear that any -patent must be licensed for everyone's free use or not licensed at all. - - The precise terms and conditions for copying, distribution and -modification follow. - - GNU GENERAL PUBLIC LICENSE - TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - - 0. This License applies to any program or other work which contains -a notice placed by the copyright holder saying it may be distributed -under the terms of this General Public License. The "Program", below, -refers to any such program or work, and a "work based on the Program" -means either the Program or any derivative work under copyright law: -that is to say, a work containing the Program or a portion of it, -either verbatim or with modifications and/or translated into another -language. (Hereinafter, translation is included without limitation in -the term "modification".) Each licensee is addressed as "you". - -Activities other than copying, distribution and modification are not -covered by this License; they are outside its scope. The act of -running the Program is not restricted, and the output from the Program -is covered only if its contents constitute a work based on the -Program (independent of having been made by running the Program). -Whether that is true depends on what the Program does. - - 1. You may copy and distribute verbatim copies of the Program's -source code as you receive it, in any medium, provided that you -conspicuously and appropriately publish on each copy an appropriate -copyright notice and disclaimer of warranty; keep intact all the -notices that refer to this License and to the absence of any warranty; -and give any other recipients of the Program a copy of this License -along with the Program. - -You may charge a fee for the physical act of transferring a copy, and -you may at your option offer warranty protection in exchange for a fee. - - 2. You may modify your copy or copies of the Program or any portion -of it, thus forming a work based on the Program, and copy and -distribute such modifications or work under the terms of Section 1 -above, provided that you also meet all of these conditions: - - a) You must cause the modified files to carry prominent notices - stating that you changed the files and the date of any change. - - b) You must cause any work that you distribute or publish, that in - whole or in part contains or is derived from the Program or any - part thereof, to be licensed as a whole at no charge to all third - parties under the terms of this License. - - c) If the modified program normally reads commands interactively - when run, you must cause it, when started running for such - interactive use in the most ordinary way, to print or display an - announcement including an appropriate copyright notice and a - notice that there is no warranty (or else, saying that you provide - a warranty) and that users may redistribute the program under - these conditions, and telling the user how to view a copy of this - License. (Exception: if the Program itself is interactive but - does not normally print such an announcement, your work based on - the Program is not required to print an announcement.) - -These requirements apply to the modified work as a whole. If -identifiable sections of that work are not derived from the Program, -and can be reasonably considered independent and separate works in -themselves, then this License, and its terms, do not apply to those -sections when you distribute them as separate works. But when you -distribute the same sections as part of a whole which is a work based -on the Program, the distribution of the whole must be on the terms of -this License, whose permissions for other licensees extend to the -entire whole, and thus to each and every part regardless of who wrote it. - -Thus, it is not the intent of this section to claim rights or contest -your rights to work written entirely by you; rather, the intent is to -exercise the right to control the distribution of derivative or -collective works based on the Program. - -In addition, mere aggregation of another work not based on the Program -with the Program (or with a work based on the Program) on a volume of -a storage or distribution medium does not bring the other work under -the scope of this License. - - 3. You may copy and distribute the Program (or a work based on it, -under Section 2) in object code or executable form under the terms of -Sections 1 and 2 above provided that you also do one of the following: - - a) Accompany it with the complete corresponding machine-readable - source code, which must be distributed under the terms of Sections - 1 and 2 above on a medium customarily used for software interchange; or, - - b) Accompany it with a written offer, valid for at least three - years, to give any third party, for a charge no more than your - cost of physically performing source distribution, a complete - machine-readable copy of the corresponding source code, to be - distributed under the terms of Sections 1 and 2 above on a medium - customarily used for software interchange; or, - - c) Accompany it with the information you received as to the offer - to distribute corresponding source code. (This alternative is - allowed only for noncommercial distribution and only if you - received the program in object code or executable form with such - an offer, in accord with Subsection b above.) - -The source code for a work means the preferred form of the work for -making modifications to it. For an executable work, complete source -code means all the source code for all modules it contains, plus any -associated interface definition files, plus the scripts used to -control compilation and installation of the executable. However, as a -special exception, the source code distributed need not include -anything that is normally distributed (in either source or binary -form) with the major components (compiler, kernel, and so on) of the -operating system on which the executable runs, unless that component -itself accompanies the executable. - -If distribution of executable or object code is made by offering -access to copy from a designated place, then offering equivalent -access to copy the source code from the same place counts as -distribution of the source code, even though third parties are not -compelled to copy the source along with the object code. - - 4. You may not copy, modify, sublicense, or distribute the Program -except as expressly provided under this License. Any attempt -otherwise to copy, modify, sublicense or distribute the Program is -void, and will automatically terminate your rights under this License. -However, parties who have received copies, or rights, from you under -this License will not have their licenses terminated so long as such -parties remain in full compliance. - - 5. You are not required to accept this License, since you have not -signed it. However, nothing else grants you permission to modify or -distribute the Program or its derivative works. These actions are -prohibited by law if you do not accept this License. Therefore, by -modifying or distributing the Program (or any work based on the -Program), you indicate your acceptance of this License to do so, and -all its terms and conditions for copying, distributing or modifying -the Program or works based on it. - - 6. Each time you redistribute the Program (or any work based on the -Program), the recipient automatically receives a license from the -original licensor to copy, distribute or modify the Program subject to -these terms and conditions. You may not impose any further -restrictions on the recipients' exercise of the rights granted herein. -You are not responsible for enforcing compliance by third parties to -this License. - - 7. If, as a consequence of a court judgment or allegation of patent -infringement or for any other reason (not limited to patent issues), -conditions are imposed on you (whether by court order, agreement or -otherwise) that contradict the conditions of this License, they do not -excuse you from the conditions of this License. If you cannot -distribute so as to satisfy simultaneously your obligations under this -License and any other pertinent obligations, then as a consequence you -may not distribute the Program at all. For example, if a patent -license would not permit royalty-free redistribution of the Program by -all those who receive copies directly or indirectly through you, then -the only way you could satisfy both it and this License would be to -refrain entirely from distribution of the Program. - -If any portion of this section is held invalid or unenforceable under -any particular circumstance, the balance of the section is intended to -apply and the section as a whole is intended to apply in other -circumstances. - -It is not the purpose of this section to induce you to infringe any -patents or other property right claims or to contest validity of any -such claims; this section has the sole purpose of protecting the -integrity of the free software distribution system, which is -implemented by public license practices. Many people have made -generous contributions to the wide range of software distributed -through that system in reliance on consistent application of that -system; it is up to the author/donor to decide if he or she is willing -to distribute software through any other system and a licensee cannot -impose that choice. - -This section is intended to make thoroughly clear what is believed to -be a consequence of the rest of this License. - - 8. If the distribution and/or use of the Program is restricted in -certain countries either by patents or by copyrighted interfaces, the -original copyright holder who places the Program under this License -may add an explicit geographical distribution limitation excluding -those countries, so that distribution is permitted only in or among -countries not thus excluded. In such case, this License incorporates -the limitation as if written in the body of this License. - - 9. The Free Software Foundation may publish revised and/or new versions -of the General Public License from time to time. Such new versions will -be similar in spirit to the present version, but may differ in detail to -address new problems or concerns. - -Each version is given a distinguishing version number. If the Program -specifies a version number of this License which applies to it and "any -later version", you have the option of following the terms and conditions -either of that version or of any later version published by the Free -Software Foundation. If the Program does not specify a version number of -this License, you may choose any version ever published by the Free Software -Foundation. - - 10. If you wish to incorporate parts of the Program into other free -programs whose distribution conditions are different, write to the author -to ask for permission. For software which is copyrighted by the Free -Software Foundation, write to the Free Software Foundation; we sometimes -make exceptions for this. Our decision will be guided by the two goals -of preserving the free status of all derivatives of our free software and -of promoting the sharing and reuse of software generally. - - NO WARRANTY - - 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY -FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN -OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES -PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED -OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS -TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE -PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, -REPAIR OR CORRECTION. - - 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING -WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR -REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, -INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING -OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED -TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY -YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER -PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE -POSSIBILITY OF SUCH DAMAGES. - - END OF TERMS AND CONDITIONS - - How to Apply These Terms to Your New Programs - - If you develop a new program, and you want it to be of the greatest -possible use to the public, the best way to achieve this is to make it -free software which everyone can redistribute and change under these terms. - - To do so, attach the following notices to the program. It is safest -to attach them to the start of each source file to most effectively -convey the exclusion of warranty; and each file should have at least -the "copyright" line and a pointer to where the full notice is found. - - - Copyright (C) - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - - -Also add information on how to contact you by electronic and paper mail. - -If the program is interactive, make it output a short notice like this -when it starts in an interactive mode: - - Gnomovision version 69, Copyright (C) year name of author - Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. - This is free software, and you are welcome to redistribute it - under certain conditions; type `show c' for details. - -The hypothetical commands `show w' and `show c' should show the appropriate -parts of the General Public License. Of course, the commands you use may -be called something other than `show w' and `show c'; they could even be -mouse-clicks or menu items--whatever suits your program. - -You should also get your employer (if you work as a programmer) or your -school, if any, to sign a "copyright disclaimer" for the program, if -necessary. Here is a sample; alter the names: - - Yoyodyne, Inc., hereby disclaims all copyright interest in the program - `Gnomovision' (which makes passes at compilers) written by James Hacker. - - , 1 April 1989 - Ty Coon, President of Vice - -This General Public License does not permit incorporating your program into -proprietary programs. If your program is a subroutine library, you may -consider it more useful to permit linking proprietary applications with the -library. If this is what you want to do, use the GNU Library General -Public License instead of this License. \ No newline at end of file diff --git a/css/dist/android-fonts-patch/sans-serif/NimbusSans-Bold.woff b/css/dist/android-fonts-patch/sans-serif/NimbusSans-Bold.woff deleted file mode 100644 index 4d375683..00000000 Binary files a/css/dist/android-fonts-patch/sans-serif/NimbusSans-Bold.woff and /dev/null differ diff --git a/css/dist/android-fonts-patch/sans-serif/NimbusSans-BoldItalic.woff b/css/dist/android-fonts-patch/sans-serif/NimbusSans-BoldItalic.woff deleted file mode 100644 index 3b8e3843..00000000 Binary files a/css/dist/android-fonts-patch/sans-serif/NimbusSans-BoldItalic.woff and /dev/null differ diff --git a/css/dist/android-fonts-patch/sans-serif/NimbusSans-Italic.woff b/css/dist/android-fonts-patch/sans-serif/NimbusSans-Italic.woff deleted file mode 100644 index a28e6f07..00000000 Binary files a/css/dist/android-fonts-patch/sans-serif/NimbusSans-Italic.woff and /dev/null differ diff --git a/css/dist/android-fonts-patch/sans-serif/NimbusSans.woff b/css/dist/android-fonts-patch/sans-serif/NimbusSans.woff deleted file mode 100644 index c7b438f5..00000000 Binary files a/css/dist/android-fonts-patch/sans-serif/NimbusSans.woff and /dev/null differ diff --git a/css/dist/android-fonts-patch/serif/GNU General Public License.txt b/css/dist/android-fonts-patch/serif/GNU General Public License.txt deleted file mode 100644 index 6db90986..00000000 --- a/css/dist/android-fonts-patch/serif/GNU General Public License.txt +++ /dev/null @@ -1,340 +0,0 @@ -GNU GENERAL PUBLIC LICENSE - Version 2, June 1991 - - Copyright (C) 1989, 1991 Free Software Foundation, Inc. - 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - - Preamble - - The licenses for most software are designed to take away your -freedom to share and change it. By contrast, the GNU General Public -License is intended to guarantee your freedom to share and change free -software--to make sure the software is free for all its users. This -General Public License applies to most of the Free Software -Foundation's software and to any other program whose authors commit to -using it. (Some other Free Software Foundation software is covered by -the GNU Library General Public License instead.) You can apply it to -your programs, too. - - When we speak of free software, we are referring to freedom, not -price. Our General Public Licenses are designed to make sure that you -have the freedom to distribute copies of free software (and charge for -this service if you wish), that you receive source code or can get it -if you want it, that you can change the software or use pieces of it -in new free programs; and that you know you can do these things. - - To protect your rights, we need to make restrictions that forbid -anyone to deny you these rights or to ask you to surrender the rights. -These restrictions translate to certain responsibilities for you if you -distribute copies of the software, or if you modify it. - - For example, if you distribute copies of such a program, whether -gratis or for a fee, you must give the recipients all the rights that -you have. You must make sure that they, too, receive or can get the -source code. And you must show them these terms so they know their -rights. - - We protect your rights with two steps: (1) copyright the software, and -(2) offer you this license which gives you legal permission to copy, -distribute and/or modify the software. - - Also, for each author's protection and ours, we want to make certain -that everyone understands that there is no warranty for this free -software. If the software is modified by someone else and passed on, we -want its recipients to know that what they have is not the original, so -that any problems introduced by others will not reflect on the original -authors' reputations. - - Finally, any free program is threatened constantly by software -patents. We wish to avoid the danger that redistributors of a free -program will individually obtain patent licenses, in effect making the -program proprietary. To prevent this, we have made it clear that any -patent must be licensed for everyone's free use or not licensed at all. - - The precise terms and conditions for copying, distribution and -modification follow. - - GNU GENERAL PUBLIC LICENSE - TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - - 0. This License applies to any program or other work which contains -a notice placed by the copyright holder saying it may be distributed -under the terms of this General Public License. The "Program", below, -refers to any such program or work, and a "work based on the Program" -means either the Program or any derivative work under copyright law: -that is to say, a work containing the Program or a portion of it, -either verbatim or with modifications and/or translated into another -language. (Hereinafter, translation is included without limitation in -the term "modification".) Each licensee is addressed as "you". - -Activities other than copying, distribution and modification are not -covered by this License; they are outside its scope. The act of -running the Program is not restricted, and the output from the Program -is covered only if its contents constitute a work based on the -Program (independent of having been made by running the Program). -Whether that is true depends on what the Program does. - - 1. You may copy and distribute verbatim copies of the Program's -source code as you receive it, in any medium, provided that you -conspicuously and appropriately publish on each copy an appropriate -copyright notice and disclaimer of warranty; keep intact all the -notices that refer to this License and to the absence of any warranty; -and give any other recipients of the Program a copy of this License -along with the Program. - -You may charge a fee for the physical act of transferring a copy, and -you may at your option offer warranty protection in exchange for a fee. - - 2. You may modify your copy or copies of the Program or any portion -of it, thus forming a work based on the Program, and copy and -distribute such modifications or work under the terms of Section 1 -above, provided that you also meet all of these conditions: - - a) You must cause the modified files to carry prominent notices - stating that you changed the files and the date of any change. - - b) You must cause any work that you distribute or publish, that in - whole or in part contains or is derived from the Program or any - part thereof, to be licensed as a whole at no charge to all third - parties under the terms of this License. - - c) If the modified program normally reads commands interactively - when run, you must cause it, when started running for such - interactive use in the most ordinary way, to print or display an - announcement including an appropriate copyright notice and a - notice that there is no warranty (or else, saying that you provide - a warranty) and that users may redistribute the program under - these conditions, and telling the user how to view a copy of this - License. (Exception: if the Program itself is interactive but - does not normally print such an announcement, your work based on - the Program is not required to print an announcement.) - -These requirements apply to the modified work as a whole. If -identifiable sections of that work are not derived from the Program, -and can be reasonably considered independent and separate works in -themselves, then this License, and its terms, do not apply to those -sections when you distribute them as separate works. But when you -distribute the same sections as part of a whole which is a work based -on the Program, the distribution of the whole must be on the terms of -this License, whose permissions for other licensees extend to the -entire whole, and thus to each and every part regardless of who wrote it. - -Thus, it is not the intent of this section to claim rights or contest -your rights to work written entirely by you; rather, the intent is to -exercise the right to control the distribution of derivative or -collective works based on the Program. - -In addition, mere aggregation of another work not based on the Program -with the Program (or with a work based on the Program) on a volume of -a storage or distribution medium does not bring the other work under -the scope of this License. - - 3. You may copy and distribute the Program (or a work based on it, -under Section 2) in object code or executable form under the terms of -Sections 1 and 2 above provided that you also do one of the following: - - a) Accompany it with the complete corresponding machine-readable - source code, which must be distributed under the terms of Sections - 1 and 2 above on a medium customarily used for software interchange; or, - - b) Accompany it with a written offer, valid for at least three - years, to give any third party, for a charge no more than your - cost of physically performing source distribution, a complete - machine-readable copy of the corresponding source code, to be - distributed under the terms of Sections 1 and 2 above on a medium - customarily used for software interchange; or, - - c) Accompany it with the information you received as to the offer - to distribute corresponding source code. (This alternative is - allowed only for noncommercial distribution and only if you - received the program in object code or executable form with such - an offer, in accord with Subsection b above.) - -The source code for a work means the preferred form of the work for -making modifications to it. For an executable work, complete source -code means all the source code for all modules it contains, plus any -associated interface definition files, plus the scripts used to -control compilation and installation of the executable. However, as a -special exception, the source code distributed need not include -anything that is normally distributed (in either source or binary -form) with the major components (compiler, kernel, and so on) of the -operating system on which the executable runs, unless that component -itself accompanies the executable. - -If distribution of executable or object code is made by offering -access to copy from a designated place, then offering equivalent -access to copy the source code from the same place counts as -distribution of the source code, even though third parties are not -compelled to copy the source along with the object code. - - 4. You may not copy, modify, sublicense, or distribute the Program -except as expressly provided under this License. Any attempt -otherwise to copy, modify, sublicense or distribute the Program is -void, and will automatically terminate your rights under this License. -However, parties who have received copies, or rights, from you under -this License will not have their licenses terminated so long as such -parties remain in full compliance. - - 5. You are not required to accept this License, since you have not -signed it. However, nothing else grants you permission to modify or -distribute the Program or its derivative works. These actions are -prohibited by law if you do not accept this License. Therefore, by -modifying or distributing the Program (or any work based on the -Program), you indicate your acceptance of this License to do so, and -all its terms and conditions for copying, distributing or modifying -the Program or works based on it. - - 6. Each time you redistribute the Program (or any work based on the -Program), the recipient automatically receives a license from the -original licensor to copy, distribute or modify the Program subject to -these terms and conditions. You may not impose any further -restrictions on the recipients' exercise of the rights granted herein. -You are not responsible for enforcing compliance by third parties to -this License. - - 7. If, as a consequence of a court judgment or allegation of patent -infringement or for any other reason (not limited to patent issues), -conditions are imposed on you (whether by court order, agreement or -otherwise) that contradict the conditions of this License, they do not -excuse you from the conditions of this License. If you cannot -distribute so as to satisfy simultaneously your obligations under this -License and any other pertinent obligations, then as a consequence you -may not distribute the Program at all. For example, if a patent -license would not permit royalty-free redistribution of the Program by -all those who receive copies directly or indirectly through you, then -the only way you could satisfy both it and this License would be to -refrain entirely from distribution of the Program. - -If any portion of this section is held invalid or unenforceable under -any particular circumstance, the balance of the section is intended to -apply and the section as a whole is intended to apply in other -circumstances. - -It is not the purpose of this section to induce you to infringe any -patents or other property right claims or to contest validity of any -such claims; this section has the sole purpose of protecting the -integrity of the free software distribution system, which is -implemented by public license practices. Many people have made -generous contributions to the wide range of software distributed -through that system in reliance on consistent application of that -system; it is up to the author/donor to decide if he or she is willing -to distribute software through any other system and a licensee cannot -impose that choice. - -This section is intended to make thoroughly clear what is believed to -be a consequence of the rest of this License. - - 8. If the distribution and/or use of the Program is restricted in -certain countries either by patents or by copyrighted interfaces, the -original copyright holder who places the Program under this License -may add an explicit geographical distribution limitation excluding -those countries, so that distribution is permitted only in or among -countries not thus excluded. In such case, this License incorporates -the limitation as if written in the body of this License. - - 9. The Free Software Foundation may publish revised and/or new versions -of the General Public License from time to time. Such new versions will -be similar in spirit to the present version, but may differ in detail to -address new problems or concerns. - -Each version is given a distinguishing version number. If the Program -specifies a version number of this License which applies to it and "any -later version", you have the option of following the terms and conditions -either of that version or of any later version published by the Free -Software Foundation. If the Program does not specify a version number of -this License, you may choose any version ever published by the Free Software -Foundation. - - 10. If you wish to incorporate parts of the Program into other free -programs whose distribution conditions are different, write to the author -to ask for permission. For software which is copyrighted by the Free -Software Foundation, write to the Free Software Foundation; we sometimes -make exceptions for this. Our decision will be guided by the two goals -of preserving the free status of all derivatives of our free software and -of promoting the sharing and reuse of software generally. - - NO WARRANTY - - 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY -FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN -OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES -PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED -OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS -TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE -PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, -REPAIR OR CORRECTION. - - 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING -WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR -REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, -INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING -OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED -TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY -YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER -PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE -POSSIBILITY OF SUCH DAMAGES. - - END OF TERMS AND CONDITIONS - - How to Apply These Terms to Your New Programs - - If you develop a new program, and you want it to be of the greatest -possible use to the public, the best way to achieve this is to make it -free software which everyone can redistribute and change under these terms. - - To do so, attach the following notices to the program. It is safest -to attach them to the start of each source file to most effectively -convey the exclusion of warranty; and each file should have at least -the "copyright" line and a pointer to where the full notice is found. - - - Copyright (C) - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - - -Also add information on how to contact you by electronic and paper mail. - -If the program is interactive, make it output a short notice like this -when it starts in an interactive mode: - - Gnomovision version 69, Copyright (C) year name of author - Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. - This is free software, and you are welcome to redistribute it - under certain conditions; type `show c' for details. - -The hypothetical commands `show w' and `show c' should show the appropriate -parts of the General Public License. Of course, the commands you use may -be called something other than `show w' and `show c'; they could even be -mouse-clicks or menu items--whatever suits your program. - -You should also get your employer (if you work as a programmer) or your -school, if any, to sign a "copyright disclaimer" for the program, if -necessary. Here is a sample; alter the names: - - Yoyodyne, Inc., hereby disclaims all copyright interest in the program - `Gnomovision' (which makes passes at compilers) written by James Hacker. - - , 1 April 1989 - Ty Coon, President of Vice - -This General Public License does not permit incorporating your program into -proprietary programs. If your program is a subroutine library, you may -consider it more useful to permit linking proprietary applications with the -library. If this is what you want to do, use the GNU Library General -Public License instead of this License. \ No newline at end of file diff --git a/css/dist/android-fonts-patch/serif/NimbusRoman-Bold.woff b/css/dist/android-fonts-patch/serif/NimbusRoman-Bold.woff deleted file mode 100644 index 02c59569..00000000 Binary files a/css/dist/android-fonts-patch/serif/NimbusRoman-Bold.woff and /dev/null differ diff --git a/css/dist/android-fonts-patch/serif/NimbusRoman-BoldItalic.woff b/css/dist/android-fonts-patch/serif/NimbusRoman-BoldItalic.woff deleted file mode 100644 index ca41be18..00000000 Binary files a/css/dist/android-fonts-patch/serif/NimbusRoman-BoldItalic.woff and /dev/null differ diff --git a/css/dist/android-fonts-patch/serif/NimbusRoman-Italic.woff b/css/dist/android-fonts-patch/serif/NimbusRoman-Italic.woff deleted file mode 100644 index c4629c68..00000000 Binary files a/css/dist/android-fonts-patch/serif/NimbusRoman-Italic.woff and /dev/null differ diff --git a/css/dist/android-fonts-patch/serif/NimbusRoman.woff b/css/dist/android-fonts-patch/serif/NimbusRoman.woff deleted file mode 100644 index f0a31dc6..00000000 Binary files a/css/dist/android-fonts-patch/serif/NimbusRoman.woff and /dev/null differ diff --git a/css/dist/fonts/AccessibleDfA-Bold.woff2 b/css/dist/fonts/AccessibleDfA-Bold.woff2 deleted file mode 100644 index 781eecd9..00000000 Binary files a/css/dist/fonts/AccessibleDfA-Bold.woff2 and /dev/null differ diff --git a/css/dist/fonts/AccessibleDfA-Italic.woff2 b/css/dist/fonts/AccessibleDfA-Italic.woff2 deleted file mode 100644 index e9519272..00000000 Binary files a/css/dist/fonts/AccessibleDfA-Italic.woff2 and /dev/null differ diff --git a/css/dist/fonts/AccessibleDfA-Regular.woff b/css/dist/fonts/AccessibleDfA-Regular.woff deleted file mode 100644 index 20988e0d..00000000 Binary files a/css/dist/fonts/AccessibleDfA-Regular.woff and /dev/null differ diff --git a/css/dist/fonts/AccessibleDfA-Regular.woff2 b/css/dist/fonts/AccessibleDfA-Regular.woff2 deleted file mode 100644 index 14dafdf7..00000000 Binary files a/css/dist/fonts/AccessibleDfA-Regular.woff2 and /dev/null differ diff --git a/css/dist/fonts/LICENSE-AccessibleDfa b/css/dist/fonts/LICENSE-AccessibleDfa deleted file mode 100755 index bf56c051..00000000 --- a/css/dist/fonts/LICENSE-AccessibleDfa +++ /dev/null @@ -1,95 +0,0 @@ -Copyright (c) Orange 2015, www.orange.com -with Reserved Font Name Accessible-Dfa. - -This Font Software is licensed under the SIL Open Font License, Version 1.1. -This license is copied below, and is also available with a FAQ at: -http://scripts.sil.org/OFL - - ------------------------------------------------------------ -SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 ------------------------------------------------------------ - -PREAMBLE -The goals of the Open Font License (OFL) are to stimulate worldwide -development of collaborative font projects, to support the font creation -efforts of academic and linguistic communities, and to provide a free and -open framework in which fonts may be shared and improved in partnership -with others. - -The OFL allows the licensed fonts to be used, studied, modified and -redistributed freely as long as they are not sold by themselves. The -fonts, including any derivative works, can be bundled, embedded, -redistributed and/or sold with any software provided that any reserved -names are not used by derivative works. The fonts and derivatives, -however, cannot be released under any other type of license. The -requirement for fonts to remain under this license does not apply -to any document created using the fonts or their derivatives. - -DEFINITIONS -"Font Software" refers to the set of files released by the Copyright -Holder(s) under this license and clearly marked as such. This may -include source files, build scripts and documentation. - -"Reserved Font Name" refers to any names specified as such after the -copyright statement(s). - -"Original Version" refers to the collection of Font Software components as -distributed by the Copyright Holder(s). - -"Modified Version" refers to any derivative made by adding to, deleting, -or substituting -- in part or in whole -- any of the components of the -Original Version, by changing formats or by porting the Font Software to a -new environment. - -"Author" refers to any designer, engineer, programmer, technical -writer or other person who contributed to the Font Software. - -PERMISSION & CONDITIONS -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Font Software, to use, study, copy, merge, embed, modify, -redistribute, and sell modified and unmodified copies of the Font -Software, subject to the following conditions: - -1) Neither the Font Software nor any of its individual components, -in Original or Modified Versions, may be sold by itself. - -2) Original or Modified Versions of the Font Software may be bundled, -redistributed and/or sold with any software, provided that each copy -contains the above copyright notice and this license. These can be -included either as stand-alone text files, human-readable headers or -in the appropriate machine-readable metadata fields within text or -binary files as long as those fields can be easily viewed by the user. - -3) No Modified Version of the Font Software may use the Reserved Font -Name(s) unless explicit written permission is granted by the corresponding -Copyright Holder. This restriction only applies to the primary font name as -presented to the users. - -4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font -Software shall not be used to promote, endorse or advertise any -Modified Version, except to acknowledge the contribution(s) of the -Copyright Holder(s) and the Author(s) or with their explicit written -permission. - -5) The Font Software, modified or unmodified, in part or in whole, -must be distributed entirely under this license, and must not be -distributed under any other license. The requirement for fonts to -remain under this license does not apply to any document created -using the Font Software. - -TERMINATION -This license becomes null and void if any of the above conditions are -not met. - -DISCLAIMER -THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT -OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE -COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, -INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL -DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM -OTHER DEALINGS IN THE FONT SOFTWARE. - diff --git a/css/dist/fonts/LICENSE-IaWriterDuospace.md b/css/dist/fonts/LICENSE-IaWriterDuospace.md deleted file mode 100755 index 3261f95c..00000000 --- a/css/dist/fonts/LICENSE-IaWriterDuospace.md +++ /dev/null @@ -1,110 +0,0 @@ -# IBM Plex Typeface - -Copyright © 2017 IBM Corp. with Reserved Font Name "Plex" - -This Font Software is licensed under the SIL Open Font License, Version 1.1. -This license is copied below, and is also available with a FAQ at: -http://scripts.sil.org/OFL - ------------------------------------------------------------ -SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 ------------------------------------------------------------ - -PREAMBLE -The goals of the Open Font License (OFL) are to stimulate worldwide -development of collaborative font projects, to support the font creation -efforts of academic and linguistic communities, and to provide a free and -open framework in which fonts may be shared and improved in partnership -with others. - -The OFL allows the licensed fonts to be used, studied, modified and -redistributed freely as long as they are not sold by themselves. The -fonts, including any derivative works, can be bundled, embedded, -redistributed and/or sold with any software provided that any reserved -names are not used by derivative works. The fonts and derivatives, -however, cannot be released under any other type of license. The -requirement for fonts to remain under this license does not apply -to any document created using the fonts or their derivatives. - -DEFINITIONS -"Font Software" refers to the set of files released by the Copyright -Holder(s) under this license and clearly marked as such. This may -include source files, build scripts and documentation. - -"Reserved Font Name" refers to any names specified as such after the -copyright statement(s). - -"Original Version" refers to the collection of Font Software components as -distributed by the Copyright Holder(s). - -"Modified Version" refers to any derivative made by adding to, deleting, -or substituting -- in part or in whole -- any of the components of the -Original Version, by changing formats or by porting the Font Software to a -new environment. - -"Author" refers to any designer, engineer, programmer, technical -writer or other person who contributed to the Font Software. - -PERMISSION & CONDITIONS -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Font Software, to use, study, copy, merge, embed, modify, -redistribute, and sell modified and unmodified copies of the Font -Software, subject to the following conditions: - -1) Neither the Font Software nor any of its individual components, -in Original or Modified Versions, may be sold by itself. - -2) Original or Modified Versions of the Font Software may be bundled, -redistributed and/or sold with any software, provided that each copy -contains the above copyright notice and this license. These can be -included either as stand-alone text files, human-readable headers or -in the appropriate machine-readable metadata fields within text or -binary files as long as those fields can be easily viewed by the user. - -3) No Modified Version of the Font Software may use the Reserved Font -Name(s) unless explicit written permission is granted by the corresponding -Copyright Holder. This restriction only applies to the primary font name as -presented to the users. - -4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font -Software shall not be used to promote, endorse or advertise any -Modified Version, except to acknowledge the contribution(s) of the -Copyright Holder(s) and the Author(s) or with their explicit written -permission. - -5) The Font Software, modified or unmodified, in part or in whole, -must be distributed entirely under this license, and must not be -distributed under any other license. The requirement for fonts to -remain under this license does not apply to any document created -using the Font Software. - -TERMINATION -This license becomes null and void if any of the above conditions are -not met. - -DISCLAIMER -THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT -OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE -COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, -INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL -DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM -OTHER DEALINGS IN THE FONT SOFTWARE. - - -# IBM Type Code - -Copyright 2017 IBM -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. \ No newline at end of file diff --git a/css/dist/fonts/iAWriterDuospace-Regular.ttf b/css/dist/fonts/iAWriterDuospace-Regular.ttf deleted file mode 100755 index 7e75aa35..00000000 Binary files a/css/dist/fonts/iAWriterDuospace-Regular.ttf and /dev/null differ diff --git a/css/dist/webPub/ReadiumCSS-webPub.css b/css/dist/webPub/ReadiumCSS-webPub.css index 29bdcab4..e06e3b95 100644 --- a/css/dist/webPub/ReadiumCSS-webPub.css +++ b/css/dist/webPub/ReadiumCSS-webPub.css @@ -63,43 +63,28 @@ font-family:revert !important; } -:root[style*="AccessibleDfA"]{ - font-family:AccessibleDfA, Verdana, Tahoma, "Trebuchet MS", sans-serif !important; -} - -:root[style*="IA Writer Duospace"]{ - font-family:"IA Writer Duospace", Menlo, "DejaVu Sans Mono", "Bitstream Vera Sans Mono", Courier, monospace !important; -} - -:root[style*="AccessibleDfA"],:root[style*="IA Writer Duospace"], :root[style*="readium-a11y-on"]{ font-style:normal !important; font-weight:normal !important; } -:root[style*="AccessibleDfA"] body *:not(code):not(var):not(kbd):not(samp),:root[style*="IA Writer Duospace"] body *:not(code):not(var):not(kbd):not(samp), :root[style*="readium-a11y-on"] body *:not(code):not(var):not(kbd):not(samp){ font-family:inherit !important; font-style:inherit !important; font-weight:inherit !important; } -:root[style*="AccessibleDfA"] body *:not(a),:root[style*="IA Writer Duospace"] body *:not(a), :root[style*="readium-a11y-on"] body *:not(a){ text-decoration:none !important; } -:root[style*="AccessibleDfA"] body *,:root[style*="IA Writer Duospace"] body *, :root[style*="readium-a11y-on"] body *{ font-variant-caps:normal !important; font-variant-numeric:normal !important; font-variant-position:normal !important; } -:root[style*="AccessibleDfA"] sup,:root[style*="IA Writer Duospace"] sup, :root[style*="readium-a11y-on"] sup, -:root[style*="AccessibleDfA"] sub, -:root[style*="IA Writer Duospace"] sub, :root[style*="readium-a11y-on"] sub{ font-size:1rem !important; vertical-align:baseline !important; diff --git a/css/src/ReadiumCSS-before-cjk-horizontal.css b/css/src/ReadiumCSS-before-cjk-horizontal.css index d22a9379..dbb74e2d 100644 --- a/css/src/ReadiumCSS-before-cjk-horizontal.css +++ b/css/src/ReadiumCSS-before-cjk-horizontal.css @@ -1,6 +1,5 @@ @import "../ReadiumCSS-config.css"; @import "modules/ReadiumCSS-namespaces.css"; @import "modules/ReadiumCSS-base.css"; -/* @import "modules/ReadiumCSS-fonts.css"; */ @import "modules/ReadiumCSS-html5patch.css"; @import "modules/ReadiumCSS-safeguards.css"; \ No newline at end of file diff --git a/css/src/ReadiumCSS-before-cjk-vertical.css b/css/src/ReadiumCSS-before-cjk-vertical.css index 8466ee24..0d273c43 100644 --- a/css/src/ReadiumCSS-before-cjk-vertical.css +++ b/css/src/ReadiumCSS-before-cjk-vertical.css @@ -1,6 +1,5 @@ @import "../ReadiumCSS-config.css"; @import "modules/ReadiumCSS-namespaces.css"; @import "modules/ReadiumCSS-base.css"; -/* @import "modules/ReadiumCSS-fonts.css"; */ @import "modules/ReadiumCSS-html5patch.css"; @import "modules/ReadiumCSS-safeguards-vertical.css"; \ No newline at end of file diff --git a/css/src/ReadiumCSS-before-rtl.css b/css/src/ReadiumCSS-before-rtl.css index d22a9379..dbb74e2d 100644 --- a/css/src/ReadiumCSS-before-rtl.css +++ b/css/src/ReadiumCSS-before-rtl.css @@ -1,6 +1,5 @@ @import "../ReadiumCSS-config.css"; @import "modules/ReadiumCSS-namespaces.css"; @import "modules/ReadiumCSS-base.css"; -/* @import "modules/ReadiumCSS-fonts.css"; */ @import "modules/ReadiumCSS-html5patch.css"; @import "modules/ReadiumCSS-safeguards.css"; \ No newline at end of file diff --git a/css/src/ReadiumCSS-before.css b/css/src/ReadiumCSS-before.css index 6c5a4581..dbb74e2d 100644 --- a/css/src/ReadiumCSS-before.css +++ b/css/src/ReadiumCSS-before.css @@ -1,6 +1,5 @@ @import "../ReadiumCSS-config.css"; @import "modules/ReadiumCSS-namespaces.css"; @import "modules/ReadiumCSS-base.css"; -@import "modules/ReadiumCSS-fonts.css"; @import "modules/ReadiumCSS-html5patch.css"; @import "modules/ReadiumCSS-safeguards.css"; \ No newline at end of file diff --git a/css/src/android-fonts-patch/android-fonts-patch.css b/css/src/android-fonts-patch/android-fonts-patch.css deleted file mode 100644 index 87acc80e..00000000 --- a/css/src/android-fonts-patch/android-fonts-patch.css +++ /dev/null @@ -1,136 +0,0 @@ -/* Readium CSS - Android Fonts Patch module - - A stylesheet aligning Android generic serif and sans-serif fonts on other platforms - - Repo: https://github.com/readium/css */ - -/* Android resolves sans-serif to Roboto, and serif to Droid Serif - This created issues for FXL EPUBs relying on Times (New Roman), - Helvetica or Arial while not embedding the font files in the package. - - See https://github.com/readium/css/issues/149 - - Unfortunately it is no possible to target generic family using @font-face, - we have to target specific font-family names e.g. Times, Arial, etc. - - This stylesheet/patch should be loaded only for this case i.e. - a Fixed-Layout EPUB with text but no embedded font on an Android device. - The logic for checking these conditions are up to implementers. -*/ - -/* Serif (Times + Times New Roman) */ - -@font-face { - font-family: Times; - src: url(serif/NimbusRoman.woff) format("woff"); - font-weight: normal; - font-style: normal; -} - -@font-face { - font-family: "Times New Roman"; - src: url(serif/NimbusRoman.woff) format("woff"); - font-weight: normal; - font-style: normal; -} - -@font-face { - font-family: Times; - src: url(serif/NimbusRoman-Italic.woff) format("woff"); - font-weight: normal; - font-style: italic; -} - -@font-face { - font-family: "Times New Roman"; - src: url(serif/NimbusRoman-Italic.woff) format("woff"); - font-weight: normal; - font-style: italic; -} - -@font-face { - font-family: Times; - src: url(serif/NimbusRoman-Bold.woff) format("woff"); - font-weight: bold; - font-style: normal; -} - -@font-face { - font-family: "Times New Roman"; - src: url(serif/NimbusRoman-Bold.woff) format("woff"); - font-weight: bold; - font-style: normal; -} - -@font-face { - font-family: Times; - src: url(serif/NimbusRoman-BoldItalic.woff) format("woff"); - font-weight: bold; - font-style: italic; -} - -@font-face { - font-family: "Times New Roman"; - src: url(serif/NimbusRoman-BoldItalic.woff) format("woff"); - font-weight: bold; - font-style: italic; -} - -/* Sans-serif (Helvetica + Arial) */ - -@font-face { - font-family: Helvetica; - src: url(sans-serif/NimbusSans.woff) format("woff"); - font-weight: normal; - font-style: normal; -} - -@font-face { - font-family: Arial; - src: url(sans-serif/NimbusSans.woff) format("woff"); - font-weight: normal; - font-style: normal; -} - -@font-face { - font-family: Helvetica; - src: url(sans-serif/NimbusSans-Italic.woff) format("woff"); - font-weight: normal; - font-style: italic; -} - -@font-face { - font-family: Arial; - src: url(sans-serif/NimbusSans-Italic.woff) format("woff"); - font-weight: normal; - font-style: italic; -} - -@font-face { - font-family: Helvetica; - src: url(sans-serif/NimbusSans-Bold.woff) format("woff"); - font-weight: bold; - font-style: normal; -} - -@font-face { - font-family: Arial; - src: url(sans-serif/NimbusSans-Bold.woff) format("woff"); - font-weight: bold; - font-style: normal; -} - -@font-face { - font-family: Helvetica; - src: url(sans-serif/NimbusSans-BoldItalic.woff) format("woff"); - font-weight: bold; - font-style: italic; -} - -@font-face { - font-family: Arial; - src: url(sans-serif/NimbusSans-BoldItalic.woff) format("woff"); - font-weight: bold; - font-style: italic; -} \ No newline at end of file diff --git a/css/src/modules/ReadiumCSS-fonts.css b/css/src/modules/ReadiumCSS-fonts.css deleted file mode 100644 index 65d11a9f..00000000 --- a/css/src/modules/ReadiumCSS-fonts.css +++ /dev/null @@ -1,46 +0,0 @@ -/* Readium CSS - Fonts module - - A stylesheet for embedded fonts - - Repo: https://github.com/readium/css */ - -/* /!\ Mind the path (relative to the folders in which you have stylesheets and the fonts) */ - -@font-face { - font-family: AccessibleDfA; - src: local("AccessibleDfA"), - url("fonts/AccessibleDfA-Regular.woff2") format("woff2"), - url("fonts/AccessibleDfA-Regular.woff") format("woff"); - font-weight: normal; - font-style: normal; -} - -@font-face { - font-family: AccessibleDfA; - src: local("AccessibleDfA"), - url("fonts/AccessibleDfA-Bold.woff2") format("woff2"); - font-weight: bold; - font-style: normal; -} - -@font-face { - font-family: AccessibleDfA; - src: local("AccessibleDfA"), - url("fonts/AccessibleDfA-Italic.woff2") format("woff2"); - font-weight: normal; - font-style: italic; -} - -@font-face { - font-family: "IA Writer Duospace"; - src: local("iAWriterDuospace-Regular"), - url("fonts/iAWriterDuospace-Regular.ttf") format("truetype"); - font-weight: normal; - font-style: normal; -} - -/* If you have different weights/styles, - use `font-weight` and `font-style`, - not prefixes in the font-family name, - or else it will be a nightmare to manage in user settings. */ diff --git a/css/src/modules/user-settings-submodules/ReadiumCSS-a11yFont_pref.css b/css/src/modules/user-settings-submodules/ReadiumCSS-a11yFont_pref.css index 49039003..d91bc74a 100644 --- a/css/src/modules/user-settings-submodules/ReadiumCSS-a11yFont_pref.css +++ b/css/src/modules/user-settings-submodules/ReadiumCSS-a11yFont_pref.css @@ -6,28 +6,14 @@ Repo: https://github.com/readium/css */ -/* For AccessibleDfA, we need to normalize font-weight and font-style since only the normal style is available */ - -:root[style*="AccessibleDfA"] { - /* We won’t use the variable there since we need fallbacks for missing characters */ - font-family: AccessibleDfA, Verdana, Tahoma, "Trebuchet MS", sans-serif !important; -} - -:root[style*="IA Writer Duospace"] { - /* We won’t use the variable there since we need fallbacks for missing characters */ - font-family: "IA Writer Duospace", Menlo, "DejaVu Sans Mono", "Bitstream Vera Sans Mono", Courier, monospace !important; -} - /* Maybe users want a setting to normalize any font offered so there is a “a11y Normalize” flag for it */ -:root:--a11y-font, :root:--a11y-normalize { font-weight: normal !important; font-style: normal !important; } /* Targeting everything except code. Note that Open Dyslexic has a monospaced font for code */ -:root:--a11y-font body *:not(code):not(var):not(kbd):not(samp), :root:--a11y-normalize body *:not(code):not(var):not(kbd):not(samp) { font-family: inherit !important; font-weight: inherit !important; @@ -35,13 +21,11 @@ } /* Normalizing text-decoration */ -:root:--a11y-font body *:not(a), :root:--a11y-normalize body *:not(a) { text-decoration: none !important; } /* Normalizing font-variant */ -:root:--a11y-font body *, :root:--a11y-normalize body * { font-variant-caps: normal !important; font-variant-position: normal !important; @@ -49,9 +33,7 @@ } /* Normalizing sup and sub */ -:root:--a11y-font sup, :root:--a11y-normalize sup, -:root:--a11y-font sub, :root:--a11y-normalize sub { font-size: 1rem !important; vertical-align: baseline !important; diff --git a/docs/CSS09-default_fonts.md b/docs/CSS09-default_fonts.md index d2e30a97..31586de6 100644 --- a/docs/CSS09-default_fonts.md +++ b/docs/CSS09-default_fonts.md @@ -497,4 +497,10 @@ Implementers might want to load this patch only if they find one of the followin - version 1: `ebpaj-guide-1.0` - version 1.1: `1.1` -Since `@font-face` must be used to align with EBPAJ’s specific implementation (rendering engines have to go through 9–11 `local` sources in the worst-case scenario), implementers should expect a performance debt. \ No newline at end of file +Since `@font-face` must be used to align with EBPAJ’s specific implementation (rendering engines have to go through 9–11 `local` sources in the worst-case scenario), implementers should expect a performance debt. + +## Android System Generic families Patch + +In beta versions of Readium CSS 2, we introduced a patch for Times, Times New Roman, Arial, and Helvetica, relying on Nimbus Sans and Nimbus Roman as metric-compatible replacements on Android devices. It can be critical for Fixed-Layout publications using these fonts without having embedded their fonts. + +Since we cannot provide `@font-face` rules for system fonts, this patch was not included in the final version of Readium CSS 2 and you will need to implement it yourself if you want to support these fonts on Android. \ No newline at end of file diff --git a/docs/CSS10-libre_fonts.md b/docs/CSS10-libre_fonts.md index 89c4e01a..2526162f 100644 --- a/docs/CSS10-libre_fonts.md +++ b/docs/CSS10-libre_fonts.md @@ -485,15 +485,12 @@ As a consequence, we strongly recommend prioritizing such system fonts for the c ## Recommended fonts for Accessibility -ReadiumCSS is shipping with 2 a11y-related fonts to be found in the `dist/fonts` folder: +ReadiumCSS cannot ship with fonts as their path cannot be customized dynamically and would therefore require them to be embedded into every EPUB file read in your application. -- [AccessibleDfA](https://github.com/Orange-OpenSource/font-accessible-dfa), by Orange; -- [IA Writer Duospace](https://github.com/iaolo/iA-Fonts/tree/master/iA%20Writer%20Duospace), by iA. - -Those fonts should be applied by those exact names as we need very precise fallbacks for missing characters. We may create variables in the future, once those fonts have been properly reviewed and validated. - -In addition or replacement of AccessibleDfa, we can also recommend: +But here is a list of fonts that can be used for accessibility purposes: +- [AccessibleDfA](https://github.com/Orange-OpenSource/font-accessible-dfa); +- [IA Writer Duospace](https://github.com/iaolo/iA-Fonts/tree/master/iA%20Writer%20Duospace); - [Open Dyslexic](https://github.com/antijingoist/open-dyslexic); - [Luciole Vision](https://www.luciole-vision.com/luciole-en.html); - [Atkinson Hyperlegible](https://brailleinstitute.org/freefont). diff --git a/docs/CSS10c-custom_fonts.md b/docs/CSS10c-custom_fonts.md new file mode 100644 index 00000000..764dcb61 --- /dev/null +++ b/docs/CSS10c-custom_fonts.md @@ -0,0 +1,75 @@ +# Using custom fonts with Readium CSS + +[Implementers’ doc] + +Now that we have seen libre and variable fonts, let's see how to use custom fonts with Readium CSS. + +Readium CSS cannot provide `@font-face` rules, as this would require apps to embed fonts in every EPUB file they render, at a specific path relative to the current resource displayed. This does not scale, would bloat file sizes, and would not resolve the issue of previewing these fonts in the app itself. + +## Declaring fonts + +Apps can declare custom fonts by injecting `@font-face` rules into the content’s `head` element. It is critical that these rules are injected in each content resource, as the browser needs to resolve the `font-family` values used in the Readium CSS stylesheet. + +To declare a static font: + +```css +@font-face { + font-family: "MyCustomFont"; + src: url("https://example.org/path/to/font.woff2") format("woff2"); + font-weight: normal; + font-style: normal; +} + +@font-face { + font-family: "MyCustomFont"; + src: url("https://example.org/path/to/font-italic.woff2") format("woff2"); + font-weight: normal; + font-style: italic; +} + +/* Bold and BoldItalic */ +``` + +To declare a variable font: + +```css +@font-face { + font-family: "MyCustomVariableFont"; + src: url("https://example.org/path/to/variable-font.woff2") format("woff2"); + font-weight: 100 900; + font-stretch: 50% 200%; +} +``` + +Your `src` url must be the exact path to the font file. The path type depends on how you serve the fonts: + +- **Relative paths** (e.g., `url("../fonts/font.woff2")`) when fonts are bundled within the package you serve +- **Full absolute URLs** (e.g., `url("https://example.org/path/to/font.woff2")`) when fonts are hosted externally + +This is important because the CSS may be used in different contexts such as iframes where incorrect path resolution will fail to load the font. + +## Applying a custom font + +Once you have declared a custom font, you can apply it to elements in your EPUB content by using the `--USER__fontFamily` property of Readium CSS. + +```javascript +document.documentElement.style.setProperty("--USER__fontFamily", "MyCustomFont, sans-serif"); +``` + +You can also leverage variable fonts by using their dedicated properties: + +- `--USER__fontWeight` +- `--USER__fontWidth` + +Then: + +```javascript +document.documentElement.style.setProperty("--USER__fontWeight", "575"); +document.documentElement.style.setProperty("--USER__fontWidth", "125%"); +``` + +And for accessibility purposes, you can normalize text, which will remove all italics, font variants such as small capitals, subscript, and superscript formatting: + +```javascript +document.documentElement.style.setProperty("--USER__a11yNormalize", "readium-a11y-on"); +``` diff --git a/docs/CSS28-migration_guide.md b/docs/CSS28-migration_guide.md index 37293704..4cd6111c 100644 --- a/docs/CSS28-migration_guide.md +++ b/docs/CSS28-migration_guide.md @@ -150,14 +150,6 @@ While it’s possible to provide users with a complete selection of variable fon If you want to implement the other two, you will have to do so on a variable font basis. -## Addition of a fonts patch for Android - -This patch is intended to fix a [Fixed-Layout issue on Android](https://github.com/readium/css/issues/149), and only on this platform. **It doesn’t apply to reflowable EPUBs or any other platform.** - -It declares fully metric compatible open source fonts alternatives (Nimbus Roman and Nimbus Sans) as the font-families that generic font-family `serif` and `sans-serif` are usually resolving to on other platforms. Droid Serif and Roboto are not, which creates issues with text that is absolutely positioned in Fixed-Layout e.g. overlapping or overflowing text, etc. - -The logic for loading this patch is up to implementers. - ## Public exposition of some Reading System Variables As of version `2.0.0-alpha.19`, ReadiumCSS is exposing variables for pagination, default font-stacks, and default colors, in JSON form. diff --git a/docs/ReadiumCSS_docs.epub b/docs/ReadiumCSS_docs.epub index 9eeebac4..6230e65b 100644 Binary files a/docs/ReadiumCSS_docs.epub and b/docs/ReadiumCSS_docs.epub differ diff --git a/docs/ReadiumCSS_docs/OEBPS/Text/Section-009.xhtml b/docs/ReadiumCSS_docs/OEBPS/Text/Section-009.xhtml index fc81c596..3a2122a5 100644 --- a/docs/ReadiumCSS_docs/OEBPS/Text/Section-009.xhtml +++ b/docs/ReadiumCSS_docs/OEBPS/Text/Section-009.xhtml @@ -957,6 +957,14 @@ unicode-range: U+0500-052F;

    Since @font-face must be used to align with EBPAJ’s specific implementation (rendering engines have to go through 9–11 local sources in the worst-case scenario), implementers should expect a performance debt.

    + +
    +

    Android System Generic families Patch

    + +

    In beta versions of Readium CSS 2, we introduced a patch for Times, Times New Roman, Arial, and Helvetica, relying on Nimbus Sans and Nimbus Roman as metric-compatible replacements on Android devices. It can be critical for Fixed-Layout publications using these fonts without having embedded their fonts.

    + +

    Since we cannot provide @font-face rules for system fonts, this patch was not included in the final version of Readium CSS 2 and you will need to implement it yourself if you want to support these fonts on Android.

    +
    \ No newline at end of file diff --git a/docs/ReadiumCSS_docs/OEBPS/Text/Section-010.xhtml b/docs/ReadiumCSS_docs/OEBPS/Text/Section-010.xhtml index aaf71b85..550fec8f 100644 --- a/docs/ReadiumCSS_docs/OEBPS/Text/Section-010.xhtml +++ b/docs/ReadiumCSS_docs/OEBPS/Text/Section-010.xhtml @@ -848,19 +848,15 @@ -
    -

    Addition of a fonts patch for Android

    - -

    This patch is intended to fix a Fixed-Layout issue on Android, and only on this platform. It doesn’t apply to reflowable EPUBs or any other platform.

    - -

    It declares fully metric compatible open source fonts alternatives (Nimbus Roman and Nimbus Sans) as the font-families that generic font-family serif and sans-serif are usually resolving to on other platforms. Droid Serif and Roboto are not, which creates issues with text that is absolutely positioned in Fixed-Layout e.g. overlapping or overflowing text, etc.

    - -

    The logic for loading this patch is up to implementers.

    -
    -

    Public exposition of some Reading System Variables

    diff --git a/docs/ReadiumCSS_docs/OEBPS/Text/nav.xhtml b/docs/ReadiumCSS_docs/OEBPS/Text/nav.xhtml index 2d3b628c..37d4f787 100644 --- a/docs/ReadiumCSS_docs/OEBPS/Text/nav.xhtml +++ b/docs/ReadiumCSS_docs/OEBPS/Text/nav.xhtml @@ -269,6 +269,9 @@
  • EBPAJ patch for Japanese
  • +
  • + Android System Generic families Patch +
  • @@ -323,6 +326,17 @@
  • +
  • + Using custom Fonts with Readium CSS +
      +
    1. + Declaring fonts +
    2. +
    3. + Applying a custom font +
    4. +
    +
  • User Overrides’ Classification
      @@ -726,9 +740,6 @@
    1. Support for variable fonts
    2. -
    3. - Addition of a fonts patch for Android -
    4. Public exposition of some Reading System Variables
    5. diff --git a/docs/ReadiumCSS_docs/OEBPS/content.opf b/docs/ReadiumCSS_docs/OEBPS/content.opf index 45670e43..ff8b62e0 100644 --- a/docs/ReadiumCSS_docs/OEBPS/content.opf +++ b/docs/ReadiumCSS_docs/OEBPS/content.opf @@ -8,7 +8,7 @@ en urn:uuid:527D093B-9C0A-4C83-8AF6-0A40E91D30FC - 2025-11-03T17:21:00Z + 2026-02-19T10:52:18Z displayTransformability readingOrder @@ -77,6 +77,7 @@ + @@ -106,6 +107,7 @@ + diff --git a/docs/ReadiumCSS_docs/OEBPS/toc.ncx b/docs/ReadiumCSS_docs/OEBPS/toc.ncx index 60216707..e0291ea3 100644 --- a/docs/ReadiumCSS_docs/OEBPS/toc.ncx +++ b/docs/ReadiumCSS_docs/OEBPS/toc.ncx @@ -1,1400 +1,1418 @@ - - + + - - - - + + + + - - Readium CSS Implementers’ doc - - - - - Readium CSS Implementers’ doc - - - - - - Readium CSS Fundamental Concepts - - - - - 1. We’re the User Agent - - - - - - 2. Aim at Interoperability - - - - - - 3. Leverage Modern CSS - - - - - - 4. Openness and Transparency - - - - - - - Quickstart - - - - - Important info - - - - - - How To - - - - - - Customize - - - - - - Build dist stylesheets - - - - - - Manage User Settings - - - - - - Create Themes - - - - - - - Inject and paginate EPUB contents - - - - - Injection - - - - - - Pagination - - - - - - - How the multicolumn layout works - - - - - Introduction - - - - - - The multi-column model - - - - - - The number and width of columns - - - - - - Column gaps and rules - - - - - - Fragmentation (column break) - - - - - - Column span - - - - - - Filling columns - - - - - - Overflow - - - - - - Reflow - - - - - - Notorious limitations - - - - - - Notes - - - - - - - Reading Systems Requirements for reflowable text - - - - - CSS Snapshot - - - - - - Prefixed properties - - - - - - HTML Suggested Rendering - - - - - - Reading System Overrides - - - - - - Notes - - - - - - - Order in which to append Readium CSS reflowable modules - - - - - Dist stylesheets - - - - - - Src modules - - - - - - - How to use CSS custom properties (a.k.a. variables) - - - - - What are CSS variables? - - - - - - Cascade and inheritance - - - - - - Fallback - - - - - - Using CSS variables in JavaScript - - - - - - Interesting hacks - - - - - - - Defaults - - - - - Base - - - - - - Default - - - - - - - Typefaces and font-stacks - - - - - Test files - - - - - - Fundamentals - - - - - - UI - - - - - - Latin - - - - - - Amharic (am) - - - - - - Arabic (ar) - - - - - - Bengali/Bangla (bn) - - - - - - Tibetan (bo) - - - - - - Cherokee (chr) - - - - - - Persian (fa) - - - - - - Gujarati (gu) - - - - - - Hebrew (he) - - - - - - Hindi (hi) - - - - - - Armenian (hy) - - - - - - Inuktitut (iu) - - - - - - Japanese (ja) - - - - - - Khmer (km) - - - - - - Kannada (kn) - - - - - - Korean (ko) - - - - - - Lao (lo) - - - - - - Malayalam (ml) - - - - - - Oriya (or) - - - - - - Punjabi (pa) - - - - - - Sinhalese (si) - - - - - - Tamil (ta) - - - - - - Telugu (te) - - - - - - Thai (th) - - - - - - Chinese (zh-CN) - - - - - - Chinese – Hong Kong (zh-HK) - - - - - - Chinese – Taiwan (zh-TW) - - - - - - Dyslexic - - - - - - Math - - - - - - EBPAJ patch for Japanese - - - + + Readium CSS Implementers’ doc + + + + + Readium CSS Implementers’ doc + + + + + + Readium CSS Fundamental Concepts + + + + + 1. We’re the User Agent + + + + + + 2. Aim at Interoperability + + + + + + 3. Leverage Modern CSS + + + + + + 4. Openness and Transparency + + + + + + + Quickstart + + + + + Important info + + + + + + How To + + + + + + Customize + + + + + + Build dist stylesheets + + + + + + Manage User Settings + + + + + + Create Themes + + + + + + + Inject and paginate EPUB contents + + + + + Injection + + + + + + Pagination + + + + + + + How the multicolumn layout works + + + + + Introduction + + + + + + The multi-column model + + + + + + The number and width of columns + + + + + + Column gaps and rules + + + + + + Fragmentation (column break) + + + + + + Column span + + + + + + Filling columns + + + + + + Overflow + + + + + + Reflow + + + + + + Notorious limitations + + + + + + Notes + + + + + + + Reading Systems Requirements for reflowable text + + + + + CSS Snapshot + + + + + + Prefixed properties + + + + + + HTML Suggested Rendering + + + + + + Reading System Overrides + + + + + + Notes + + + + + + + Order in which to append Readium CSS reflowable modules + + + + + Dist stylesheets + + + + + + Src modules + + + + + + + How to use CSS custom properties (a.k.a. variables) + + + + + What are CSS variables? + + + + + + Cascade and inheritance + + + + + + Fallback + + + + + + Using CSS variables in JavaScript + + + + + + Interesting hacks + + + + + + + Defaults + + + + + Base + + + + + + Default + + + + + + + Typefaces and font-stacks + + + + + Test files + + + + + + Fundamentals + + + + + + UI + + + + + + Latin + + + + + + Amharic (am) + + + + + + Arabic (ar) + + + + + + Bengali/Bangla (bn) + + + + + + Tibetan (bo) + + + + + + Cherokee (chr) + + + + + + Persian (fa) + + + + + + Gujarati (gu) + + + + + + Hebrew (he) + + + + + + Hindi (hi) + + + + + + Armenian (hy) + + + + + + Inuktitut (iu) + + + + + + Japanese (ja) + + + + + + Khmer (km) + + + + + + Kannada (kn) + + + + + + Korean (ko) + + + + + + Lao (lo) + + + + + + Malayalam (ml) + + + + + + Oriya (or) + + + + + + Punjabi (pa) + + + + + + Sinhalese (si) + + + + + + Tamil (ta) + + + + + + Telugu (te) + + + + + + Thai (th) + + + + + + Chinese (zh-CN) + + + + + + Chinese – Hong Kong (zh-HK) + + + + + + Chinese – Taiwan (zh-TW) + + + + + + Dyslexic + + + + + + Math + + + + + + EBPAJ patch for Japanese + + + + + + Android System Generic families Patch + + + + + + + Open Source and Libre Fonts We Can Recommend + + + + + How were those fonts reviewed + + + + + + Results + + + + + + Recommended Typefaces + + + + + + Recommended fonts for Accessibility + + + + + + Recommended fonts for CJK + + + + + + Recommended fonts for Hebrew + + + + + + Recommended fonts for Arabic and Persian + + + + + + Recommended fonts for Indic + + + + + + + Variable Fonts + + + + + Challenges + + + + + + System Fonts + + + + + + How were these fonts picked + + + + + + Latin + + + + + + Accessibility + + + + + + Arabic (ar) and Persian (fa) + + + + + + + Using custom Fonts with Readium CSS + + + + + Declaring fonts + + + + + + Applying a custom font + + + + + + + User Overrides’ Classification + + + + + Chrome + + + + + + Chrome advanced + + + + + + User overrides + + + + + + User overrides advanced + + + + + + + User Settings and Themes + + + + + Mechanism for user settings + + + + + + Flags + + + + + + List of variables + + + + + + Themes + + + + + + Alternative options + + + + + + User settings can be language-specific + + + + + + + Baseline for a11y-related user settings + + + + + OS settings + + + + + + Current a11y Features on the market + + + + + + Vestibular disorders + + + + + + Internationalization + + + + + + + Recommendations for User Settings Management + + + + + Managing conflicts + + + + + + !important + + + + + + Number of columns + + + + + + Line length + + + + + + Themes + + + + + + Font family (typeface) + + + + + + Font size + + + + + + Line height (leading) + + + + + + Text align (justification) + + + + + + Hyphenation + + - + - Open Source and Libre Fonts We Can Recommend - - - - - How were those fonts reviewed - - - - - - Results - - - - - - Recommended Typefaces - - - - - - Recommended fonts for Accessibility - - - - - - Recommended fonts for CJK - - - - - - Recommended fonts for Hebrew - - - - - - Recommended fonts for Arabic and Persian - - - - - - Recommended fonts for Indic - - - + Paragraphs’ formatting + + - + - Variable Fonts - - - - - Challenges - - - - - - System Fonts - - - - - - How were these fonts picked - - - - - - Latin - - - - - - Accessibility - - - - - - Arabic (ar) and Persian (fa) - - - + Characters’ spacing + + - + - User Overrides’ Classification - - - - - Chrome - - - - - - Chrome advanced - - - - - - User overrides - - - - - - User overrides advanced - - - + Ligatures + + - + + + + User preferences’ insights + + + - User Settings and Themes - - - - - Mechanism for user settings - - - - - - Flags - - - - - - List of variables - - - - - - Themes - - - - - - Alternative options - - - - - - User settings can be language-specific - - - + User Settings + + - + - Baseline for a11y-related user settings - - - - - OS settings - - - - - - Current a11y Features on the market - - - - - - Vestibular disorders - - - - - - Internationalization - - - + Typography + + - + + + + Internationalization + + + - Recommendations for User Settings Management - - - - - Managing conflicts - - - - - - !important - - - - - - Number of columns - - - - - - Line length - - - - - - Themes - - - - - - Font family (typeface) - - - - - - Font size - - - - - - Line height (leading) - - - - - - Text align (justification) - - - - - - Hyphenation - - - - - - Paragraphs’ formatting - - - - - - Characters’ spacing - - - - - - Ligatures - - - + The current situation + + - + - User preferences’ insights - - - - - User Settings - - - - - - Typography - - - + Resources + + - + - Internationalization + What implementers need - - - - The current situation - - - - - - Resources - - - - - - What implementers need - - - - - - How authors can help - - - - - - Overarching issues - - - - - - Out of scope - - - - - - Glossary - - - + - Internationalization – A Typography Primer - - - - - Abstract - - - - - - Fonts - - - - - - Text decoration - - - - - - Emphasis - - - - - - Line breaking - - - - - - Hyphenation - - - - - - Justification - - - - - - Indents - - - - - - Vertical text - - - + How authors can help + + + + + + Overarching issues + + + + + + Out of scope + + + + + + Glossary + + + + + + + Internationalization – A Typography Primer + + + + + Abstract + + + + + + Fonts + + + + + + Text decoration + + + + + + Emphasis + + + + + + Line breaking + + - Readium CSS Further Details: Explaining the CSS Voodoo - - - - - The Internal Framework - - - - - - Conditional Selectors for user settings - - - - - - Themes and Presets - - - - - - - Readium CSS Variables API - - - - - How to set and remove user preferences - - - - - - Customizable medias - - - - - - Customizable flags - - - - - - Reading System Styles - - - - - - Themes - - - - - - User Settings - - - + Hyphenation + + + + + + Justification + + + + + + Indents + + + + + + Vertical text + + + + + + + Readium CSS Further Details: Explaining the CSS Voodoo + + + + + The Internal Framework + + + + + + Conditional Selectors for user settings + + + + + + Themes and Presets + + + + + + + Readium CSS Variables API + + + + + How to set and remove user preferences + + + + + + Customizable medias + + - List of proposals and specs impacting Readium CSS - - - - - Media Queries Level 5 - - - - - - Logical Properties and Values - - - - - - CSS Extensions - - - - - - Calc notation: min() and max() - - - - - - User Agent Properties - - - - - - CSS Rhythmic Sizing - - - - - - CSS Fonts Module Level 4 - - - - - - COGA Semantics to Enable Personalization - - - - - - Multicol editing - - - - - - W3C i18n - - - - - - CSSOM (a.k.a. Houdini) - - - + Customizable flags + + + + + + Reading System Styles + + + + + + Themes + + + + + + User Settings + + + + + + + List of proposals and specs impacting Readium CSS + + + + + Media Queries Level 5 + + + + + + Logical Properties and Values + + + + + + CSS Extensions + + + + + + Calc notation: min() and max() + + + + + + User Agent Properties + + + + + + CSS Rhythmic Sizing + + + + + + CSS Fonts Module Level 4 + + - EPUB Compatibility - - - - - Introduction - - - - - - CSS At-rules - - - - - - Non-standard Kindle Media queries - - - - - - Interactive and Fixed-layout EPUB 2 - - - - - - Metadata - - - - - - Attributes - - - - - - Webkit’s CSS multi-column extensions - - - - - - Non-standard CSS properties - - - - - - EPUB properties - - - + COGA Semantics to Enable Personalization + + + + + + Multicol editing + + + + + + W3C i18n + + + + + + CSSOM (a.k.a. Houdini) + + + + + + + EPUB Compatibility + + + + + Introduction + + + + + + CSS At-rules + + + + + + Non-standard Kindle Media queries + + + + + + Interactive and Fixed-layout EPUB 2 + + + + + + Metadata + + - Install, test and build Readium CSS - - - - - Install and init references for regression tests - - - - - - Build - - - - - - Test - - - - - - - Fixed-layouts’ Reading Systems Requirements - - - - - Styling - - - - - - Scaling - - - - - - Notes - - - - - - - E-production feedback and requests - - - - - CSS Authors’ typical profile - - - - - - Workflow and authoring - - - - - - Worries and issues - - - - - - Popular requests - - - - - - Interoperability issues reported - - - + Attributes + + + + + + Webkit’s CSS multi-column extensions + + + + + + Non-standard CSS properties + + + + + + EPUB properties + + + + + + + Install, test and build Readium CSS + + + + + Install and init references for regression tests + + + + + + Build + + + + + + Test + + + + + + + Fixed-layouts’ Reading Systems Requirements + + + + + Styling + + + + + + Scaling + + + + + + Notes + + + + + + + E-production feedback and requests + + + + + CSS Authors’ typical profile + + - CSS Performance Hacks - - - - - Will-change - - - - - - CSS Containment - - - + Workflow and authoring + + + + + + Worries and issues + + + + + + Popular requests + + - i18n glossary - - - - - Arabic - - - - - - Chinese - - - - - - Indic - - - - - - Japanese - - - + Interoperability issues reported + + + + + + + CSS Performance Hacks + + + + + Will-change + + + + + + CSS Containment + + + + + + i18n glossary + + - Features that were considered but not implemented - - - - - Alternate background colors for lines (A11Y) - - - - - - Contrasting text against backgrounds in custom user themes - - - - - - Handle day/night theme based on OSs’ light/dark mode - - - - - - - Migration Guide - - - - - Removal of responsive columns - - - - - - Number of columns is no longer limited - - - - - - Addition of a flag to disable vertical-writing pagination - - - - - - Removal of -webkit-perspective hack for older versions of Chromium - - - - - - Replacement of page margins user setting with line length user setting - - - - - - Improvement of overflow - - - - - - Re-implementation of the font-size user setting - - - - - - Extension of the font-family user setting override - - - - - - Updated default font stacks - - - - - - Updated recommandations for libre and open source fonts - - - - - - Support for variable fonts - - - - - - Addition of a fonts patch for Android - - - - - - Public exposition of some Reading System Variables - - - - - - Theming Improvements - - - - - - Removal of Dynamic Leading - - - - - - Removal of advanced settings flag - - - - - - Removal of line-height compensation for A11y fonts and normalization - - - - - - Removal of font-override flag - - - - - - Addition of a flag to disable overflow - - - - - - Addition of scroll-padding module - - - - - - Ligatures moved to the global space - - - - - - Experimental Web Publications stylesheet - - - - - - Experimental Features Flags - - - - - - \ No newline at end of file + Arabic + + + + + + Chinese + + + + + + Indic + + + + + + Japanese + + + + + + + Features that were considered but not implemented + + + + + Alternate background colors for lines (A11Y) + + + + + + Contrasting text against backgrounds in custom user themes + + + + + + Handle day/night theme based on OSs’ light/dark mode + + + + + + + Migration Guide + + + + + Removal of responsive columns + + + + + + Number of columns is no longer limited + + + + + + Addition of a flag to disable vertical-writing pagination + + + + + + Removal of -webkit-perspective hack for older versions of Chromium + + + + + + Replacement of page margins user setting with line length user setting + + + + + + Improvement of overflow + + + + + + Re-implementation of the font-size user setting + + + + + + Extension of the font-family user setting override + + + + + + Updated default font stacks + + + + + + Updated recommandations for libre and open source fonts + + + + + + Support for variable fonts + + + + + + Public exposition of some Reading System Variables + + + + + + Theming Improvements + + + + + + Removal of Dynamic Leading + + + + + + Removal of advanced settings flag + + + + + + Removal of line-height compensation for A11y fonts and normalization + + + + + + Removal of font-override flag + + + + + + Addition of a flag to disable overflow + + + + + + Addition of scroll-padding module + + + + + + Ligatures moved to the global space + + + + + + Experimental Web Publications stylesheet + + + + + + Experimental Features Flags + + + + + + diff --git a/package.json b/package.json index 25b6ec87..8194d955 100644 --- a/package.json +++ b/package.json @@ -51,7 +51,7 @@ "build:rtl": "postcss css/src/ReadiumCSS-before-rtl.css -o css/dist/rtl/ReadiumCSS-before.css && postcss css/src/ReadiumCSS-default-rtl.css -o css/dist/rtl/ReadiumCSS-default.css && postcss css/src/ReadiumCSS-after-rtl.css -o css/dist/rtl/ReadiumCSS-after.css", "build:cjk": "postcss css/src/ReadiumCSS-before-cjk-horizontal.css -o css/dist/cjk-horizontal/ReadiumCSS-before.css && postcss css/src/ReadiumCSS-default-cjk-horizontal.css -o css/dist/cjk-horizontal/ReadiumCSS-default.css && postcss css/src/ReadiumCSS-after-cjk-horizontal.css -o css/dist/cjk-horizontal/ReadiumCSS-after.css", "build:vertical": "postcss css/src/ReadiumCSS-before-cjk-vertical.css -o css/dist/cjk-vertical/ReadiumCSS-before.css && postcss css/src/ReadiumCSS-default-cjk-vertical.css -o css/dist/cjk-vertical/ReadiumCSS-default.css && postcss css/src/ReadiumCSS-after-cjk-vertical.css -o css/dist/cjk-vertical/ReadiumCSS-after.css", - "copyPatches": "copyfiles -u 2 css/src/ReadiumCSS-ebpaj_fonts_patch.css 'css/src/android-fonts-patch/android-fonts-patch.css' css/dist", + "copyPatches": "copyfiles -u 2 css/src/ReadiumCSS-ebpaj_fonts_patch.css css/dist", "start": "node \"./server.js\"", "test": "npm run build && (npm start & for i in {1..10}; do if curl -s http://localhost:8000 >/dev/null; then backstop test; pkill -f \"node ./server.js\"; echo '\\nVisual Regression testing has been completed.\\n'; exit 0; fi; sleep 1; done; echo 'Failed to start server'; exit 1)", "test:ref": "npm start & backstop reference && pkill -9 -f \"node ./server.js\" && echo '\nVisual Regression references have been generated.\n'",