diff --git a/services/web/frontend/fonts/README.md b/services/web/frontend/fonts/README.md new file mode 100644 index 0000000000..9f08062694 --- /dev/null +++ b/services/web/frontend/fonts/README.md @@ -0,0 +1,12 @@ +This directory contains fonts used by the Overleaf web application. + +* [DM Mono](https://github.com/googlefonts/dm-mono) +* [Font Awesome](https://fontawesome.com/v4/) +* [Lato](https://www.latofonts.com/) +* [Material Symbols](https://github.com/google/material-design-icons) +* [Merriweather](https://github.com/SorkinType/Merriweather) +* [Noto Sans](https://notofonts.github.io/#latin-greek-cyrillic) +* [Noto Serif](https://notofonts.github.io/#latin-greek-cyrillic) +* [Open Sans](https://github.com/googlefonts/opensans) +* [Source Code Pro](https://github.com/adobe-fonts/source-code-pro) +* [STIX Two Math](https://github.com/stipub/stixfonts/) diff --git a/services/web/frontend/fonts/STIXTwoMath/LICENSE.txt b/services/web/frontend/fonts/STIXTwoMath/OFL.txt similarity index 100% rename from services/web/frontend/fonts/STIXTwoMath/LICENSE.txt rename to services/web/frontend/fonts/STIXTwoMath/OFL.txt diff --git a/services/web/frontend/fonts/STIXTwoMath/STIXTwoMath-Regular.woff2 b/services/web/frontend/fonts/STIXTwoMath/STIXTwoMath-Regular.woff2 index 76f8db85a4..3b97c9c897 100644 Binary files a/services/web/frontend/fonts/STIXTwoMath/STIXTwoMath-Regular.woff2 and b/services/web/frontend/fonts/STIXTwoMath/STIXTwoMath-Regular.woff2 differ diff --git a/services/web/frontend/fonts/STIXTwoMath/stix-two-math.css b/services/web/frontend/fonts/STIXTwoMath/stix-two-math.css new file mode 100644 index 0000000000..25ed7253a6 --- /dev/null +++ b/services/web/frontend/fonts/STIXTwoMath/stix-two-math.css @@ -0,0 +1,4 @@ +@font-face { + font-family: 'Stix Two Math'; + src: url('STIXTwoMath-Regular.woff2') format('woff2'); +} diff --git a/services/web/frontend/fonts/build-fonts.mjs b/services/web/frontend/fonts/build-fonts.mjs new file mode 100644 index 0000000000..4d5231d54c --- /dev/null +++ b/services/web/frontend/fonts/build-fonts.mjs @@ -0,0 +1,186 @@ +import fs from 'node:fs/promises' +import { createWriteStream } from 'node:fs' +import { basename, join } from 'node:path' +import { tmpdir } from 'node:os' +import { execSync } from 'node:child_process' +import yauzl from 'yauzl' + +// brew install woff2 + +const families = [ + { + folder: 'dm-mono', + url: 'https://github.com/googlefonts/dm-mono', + fonts: [ + 'https://github.com/googlefonts/dm-mono/raw/refs/heads/main/exports/DMMono-Italic.ttf', + 'https://github.com/googlefonts/dm-mono/raw/refs/heads/main/exports/DMMono-Medium.ttf', + 'https://github.com/googlefonts/dm-mono/raw/refs/heads/main/exports/DMMono-MediumItalic.ttf', + 'https://github.com/googlefonts/dm-mono/raw/refs/heads/main/exports/DMMono-Regular.ttf', + ], + }, + { + folder: 'font-awesome', + url: 'https://fontawesome.com/v4/', + archive: 'https://fontawesome.com/v4/assets/font-awesome-4.7.0.zip', + fonts: ['font-awesome-4.7.0/fonts/fontawesome-webfont.woff2'], + }, + { + folder: 'lato', + url: 'https://www.latofonts.com/', + archive: 'https://www.latofonts.com/download/lato2oflweb-zip/', + fonts: [ + 'Lato2OFLWeb/LatoLatin/fonts/LatoLatin-Bold.woff2', + 'Lato2OFLWeb/LatoLatin/fonts/LatoLatin-BoldItalic.woff2', + 'Lato2OFLWeb/LatoLatin/fonts/LatoLatin-Italic.woff2', + 'Lato2OFLWeb/LatoLatin/fonts/LatoLatin-Regular.woff2', + ], + }, + { + folder: 'merriweather', + url: 'https://github.com/SorkinType/Merriweather', + fonts: [ + 'https://github.com/SorkinType/Merriweather/raw/refs/heads/master/fonts/webfonts/Merriweather-Bold.woff2', + 'https://github.com/SorkinType/Merriweather/raw/refs/heads/master/fonts/webfonts/Merriweather-BoldItalic.woff2', + 'https://github.com/SorkinType/Merriweather/raw/refs/heads/master/fonts/webfonts/Merriweather-Italic.woff2', + 'https://github.com/SorkinType/Merriweather/raw/refs/heads/master/fonts/webfonts/Merriweather-Regular.woff2', + ], + license: + 'https://github.com/SorkinType/Merriweather/raw/refs/heads/master/OFL.txt', + }, + { + folder: 'noto-sans', + url: 'https://notofonts.github.io/#latin-greek-cyrillic', + fonts: [ + 'https://github.com/notofonts/notofonts.github.io/raw/refs/heads/main/fonts/NotoSans/full/ttf/NotoSans-Italic.ttf', + 'https://github.com/notofonts/notofonts.github.io/raw/refs/heads/main/fonts/NotoSans/full/ttf/NotoSans-Medium.ttf', + 'https://github.com/notofonts/notofonts.github.io/raw/refs/heads/main/fonts/NotoSans/full/ttf/NotoSans-MediumItalic.ttf', + 'https://github.com/notofonts/notofonts.github.io/raw/refs/heads/main/fonts/NotoSans/full/ttf/NotoSans-Regular.ttf', + 'https://github.com/notofonts/notofonts.github.io/raw/refs/heads/main/fonts/NotoSans/full/ttf/NotoSans-SemiBold.ttf', + 'https://github.com/notofonts/notofonts.github.io/raw/refs/heads/main/fonts/NotoSans/full/ttf/NotoSans-SemiBoldItalic.ttf', + ], + license: + 'https://raw.githubusercontent.com/notofonts/latin-greek-cyrillic/refs/heads/main/OFL.txt', + }, + { + folder: 'noto-serif', + url: 'https://notofonts.github.io/#latin-greek-cyrillic', + fonts: [ + 'https://github.com/notofonts/notofonts.github.io/raw/refs/heads/main/fonts/NotoSerif/unhinted/slim-variable-ttf/NotoSerif%5Bwght%5D.ttf', + 'https://github.com/notofonts/notofonts.github.io/raw/refs/heads/main/fonts/NotoSerif/unhinted/slim-variable-ttf/NotoSerif-Italic%5Bwght%5D.ttf', + ], + license: + 'https://raw.githubusercontent.com/notofonts/latin-greek-cyrillic/refs/heads/main/OFL.txt', + }, + { + folder: 'open-sans', + url: 'https://github.com/googlefonts/opensans', + fonts: [ + 'https://github.com/googlefonts/opensans/raw/refs/heads/main/fonts/ttf/OpenSans-Bold.ttf', + 'https://github.com/googlefonts/opensans/raw/refs/heads/main/fonts/ttf/OpenSans-Light.ttf', + 'https://github.com/googlefonts/opensans/raw/refs/heads/main/fonts/ttf/OpenSans-Regular.ttf', + 'https://github.com/googlefonts/opensans/raw/refs/heads/main/fonts/ttf/OpenSans-SemiBold.ttf', + ], + license: + 'https://raw.githubusercontent.com/googlefonts/opensans/refs/heads/main/OFL.txt', + }, + { + folder: 'source-code-pro', + url: 'https://github.com/adobe-fonts/source-code-pro', + fonts: [ + 'https://github.com/adobe-fonts/source-code-pro/raw/refs/heads/release/WOFF2/TTF/SourceCodePro-Regular.ttf.woff2', + ], + license: + 'https://raw.githubusercontent.com/adobe-fonts/source-code-pro/refs/heads/release/LICENSE.md', + }, + { + folder: 'STIXTwoMath', + url: 'https://github.com/stipub/stixfonts', + fonts: [ + 'https://github.com/stipub/stixfonts/raw/refs/heads/master/fonts/static_otf_woff2/STIXTwoMath-Regular.woff2', + ], + license: + 'https://raw.githubusercontent.com/stipub/stixfonts/refs/heads/master/OFL.txt', + }, +] + +const fetchFile = async (url, path) => { + console.log(`${url}\n${path}`) + const response = await fetch(url) + if (!response.ok) { + throw new Error(response.statusText) + } + await fs.writeFile(path, response.body) +} + +for (const family of families) { + if (!family.folder) { + throw new Error('Missing family information') + } + + await fs.mkdir(family.folder, { recursive: true }) + + const fonts = new Set(family.fonts) + + if (family.archive) { + const dir = await fs.mkdtemp(join(tmpdir(), 'fonts-')) + const filename = decodeURIComponent(basename(family.archive)) + const path = `${dir}/${filename}` + await fetchFile(family.archive, path) + + await new Promise((resolve, reject) => { + yauzl.open(path, { lazyEntries: true }, (err, zipfile) => { + if (err) { + reject(err) + } else { + zipfile.on('entry', entry => { + if (fonts.has(entry.fileName)) { + console.log(entry.fileName) + zipfile.openReadStream(entry, (err, readStream) => { + if (err) { + reject(err) + } else { + const path = `${family.folder}/${basename(entry.fileName)}` + const output = createWriteStream(path) + readStream.on('end', async () => { + output.close() + if (path.endsWith('.ttf')) { + execSync(`woff2_compress "${path}"`) + await fs.unlink(path) + } + zipfile.readEntry() + }) + readStream.pipe(output) + } + }) + } else { + zipfile.readEntry() + } + }) + zipfile.on('error', reject) + zipfile.on('end', resolve) + zipfile.readEntry() + } + }) + }) + + await fs.unlink(path) + } else { + for (const url of fonts) { + const filename = decodeURIComponent(basename(url)) + const path = `${family.folder}/${filename}` + await fetchFile(url, path) + + if (path.endsWith('.ttf')) { + execSync(`woff2_compress "${path}"`) + await fs.unlink(path) + } + } + } + + if (family.license) { + const url = family.license + const filename = decodeURIComponent(basename(url)) + const path = `${family.folder}/${filename}` + await fetchFile(url, path) + } +} diff --git a/services/web/frontend/fonts/dm-mono/DMMono-Italic.woff2 b/services/web/frontend/fonts/dm-mono/DMMono-Italic.woff2 index 54fdc20759..404632fb4d 100644 Binary files a/services/web/frontend/fonts/dm-mono/DMMono-Italic.woff2 and b/services/web/frontend/fonts/dm-mono/DMMono-Italic.woff2 differ diff --git a/services/web/frontend/fonts/dm-mono/DMMono-Medium.woff2 b/services/web/frontend/fonts/dm-mono/DMMono-Medium.woff2 index aa607dee19..aa5f78d21f 100644 Binary files a/services/web/frontend/fonts/dm-mono/DMMono-Medium.woff2 and b/services/web/frontend/fonts/dm-mono/DMMono-Medium.woff2 differ diff --git a/services/web/frontend/fonts/dm-mono/DMMono-MediumItalic.woff2 b/services/web/frontend/fonts/dm-mono/DMMono-MediumItalic.woff2 index daa5a6c181..c89c9780d7 100644 Binary files a/services/web/frontend/fonts/dm-mono/DMMono-MediumItalic.woff2 and b/services/web/frontend/fonts/dm-mono/DMMono-MediumItalic.woff2 differ diff --git a/services/web/frontend/fonts/dm-mono/DMMono-Regular.woff2 b/services/web/frontend/fonts/dm-mono/DMMono-Regular.woff2 index c36abf67ba..2e26b5a696 100644 Binary files a/services/web/frontend/fonts/dm-mono/DMMono-Regular.woff2 and b/services/web/frontend/fonts/dm-mono/DMMono-Regular.woff2 differ diff --git a/services/web/frontend/fonts/dm-mono.css b/services/web/frontend/fonts/dm-mono/dm-mono.css similarity index 64% rename from services/web/frontend/fonts/dm-mono.css rename to services/web/frontend/fonts/dm-mono/dm-mono.css index 30c8989f2a..44c1828cfb 100644 --- a/services/web/frontend/fonts/dm-mono.css +++ b/services/web/frontend/fonts/dm-mono/dm-mono.css @@ -3,7 +3,7 @@ font-style: normal; font-weight: 400; font-display: fallback; - src: url('dm-mono/DMMono-Regular.woff2') format('woff2'); + src: url('DMMono-Regular.woff2') format('woff2'); } @font-face { @@ -11,7 +11,7 @@ font-style: italic; font-weight: 400; font-display: fallback; - src: url('dm-mono/DMMono-Italic.woff2') format('woff2'); + src: url('DMMono-Italic.woff2') format('woff2'); } @font-face { @@ -19,7 +19,7 @@ font-style: normal; font-weight: 500; font-display: fallback; - src: url('dm-mono/DMMono-Medium.woff2') format('woff2'); + src: url('DMMono-Medium.woff2') format('woff2'); } @font-face { @@ -27,5 +27,5 @@ font-style: italic; font-weight: 500; font-display: fallback; - src: url('dm-mono/DMMono-MediumItalic.woff2') format('woff2'); + src: url('DMMono-MediumItalic.woff2') format('woff2'); } diff --git a/services/web/frontend/fonts/font-awesome-v470.woff b/services/web/frontend/fonts/font-awesome-v470.woff deleted file mode 100644 index 400014a4b0..0000000000 Binary files a/services/web/frontend/fonts/font-awesome-v470.woff and /dev/null differ diff --git a/services/web/frontend/fonts/font-awesome/LICENSE.txt b/services/web/frontend/fonts/font-awesome/LICENSE.txt new file mode 100644 index 0000000000..e69c5e39a3 --- /dev/null +++ b/services/web/frontend/fonts/font-awesome/LICENSE.txt @@ -0,0 +1,165 @@ +Fonticons, Inc. (https://fontawesome.com) + +-------------------------------------------------------------------------------- + +Font Awesome Free License + +Font Awesome Free is free, open source, and GPL friendly. You can use it for +commercial projects, open source projects, or really almost whatever you want. +Full Font Awesome Free license: https://fontawesome.com/license/free. + +-------------------------------------------------------------------------------- + +# Icons: CC BY 4.0 License (https://creativecommons.org/licenses/by/4.0/) + +The Font Awesome Free download is licensed under a Creative Commons +Attribution 4.0 International License and applies to all icons packaged +as SVG and JS file types. + +-------------------------------------------------------------------------------- + +# Fonts: SIL OFL 1.1 License + +In the Font Awesome Free download, the SIL OFL license applies to all icons +packaged as web and desktop font files. + +Copyright (c) 2024 Fonticons, Inc. (https://fontawesome.com) +with Reserved Font Name: "Font Awesome". + +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. + +-------------------------------------------------------------------------------- + +# Code: MIT License (https://opensource.org/licenses/MIT) + +In the Font Awesome Free download, the MIT license applies to all non-font and +non-icon files. + +Copyright 2024 Fonticons, Inc. + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in the +Software without restriction, including without limitation the rights to use, copy, +modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, +and to permit persons to whom the Software is furnished to do so, subject to the +following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, +INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT +HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +-------------------------------------------------------------------------------- + +# Attribution + +Attribution is required by MIT, SIL OFL, and CC BY licenses. Downloaded Font +Awesome Free files already contain embedded comments with sufficient +attribution, so you shouldn't need to do anything additional when using these +files normally. + +We've kept attribution comments terse, so we ask that you do not actively work +to remove them from files, especially code. They're a great way for folks to +learn about Font Awesome. + +-------------------------------------------------------------------------------- + +# Brand Icons + +All brand icons are trademarks of their respective owners. The use of these +trademarks does not indicate endorsement of the trademark holder by Font +Awesome, nor vice versa. **Please do not use brand logos for any purpose except +to represent the company, product, or service to which they refer.** diff --git a/services/web/frontend/fonts/font-awesome.css b/services/web/frontend/fonts/font-awesome/font-awesome.css similarity index 99% rename from services/web/frontend/fonts/font-awesome.css rename to services/web/frontend/fonts/font-awesome/font-awesome.css index 0c31964a4c..602f34fefe 100644 --- a/services/web/frontend/fonts/font-awesome.css +++ b/services/web/frontend/fonts/font-awesome/font-awesome.css @@ -4,9 +4,7 @@ */ @font-face { font-family: 'FontAwesome'; - src: - url('font-awesome-v470.woff2') format('woff2'), - url('font-awesome-v470.woff') format('woff'); + src: url('fontawesome-webfont.woff2') format('woff2'); font-weight: normal; font-style: normal; } diff --git a/services/web/frontend/fonts/font-awesome-v470.woff2 b/services/web/frontend/fonts/font-awesome/fontawesome-webfont.woff2 similarity index 100% rename from services/web/frontend/fonts/font-awesome-v470.woff2 rename to services/web/frontend/fonts/font-awesome/fontawesome-webfont.woff2 diff --git a/services/web/frontend/fonts/lato.css b/services/web/frontend/fonts/lato.css deleted file mode 100644 index 16d2dd953b..0000000000 --- a/services/web/frontend/fonts/lato.css +++ /dev/null @@ -1,35 +0,0 @@ -@font-face { - font-family: 'Lato'; - font-style: normal; - font-weight: 400; - src: - url('lato/lato-v2-latin-ext-regular.woff2') format('woff2'), - url('lato/lato-v2-latin-ext-regular.woff') format('woff'); -} - -@font-face { - font-family: 'Lato'; - font-style: italic; - font-weight: 400; - src: - url('lato/lato-v2-latin-ext-italic.woff2') format('woff2'), - url('lato/lato-v2-latin-ext-italic.woff') format('woff'); -} - -@font-face { - font-family: 'Lato'; - font-style: normal; - font-weight: 700; - src: - url('lato/lato-v2-latin-ext-700.woff2') format('woff2'), - url('lato/lato-v2-latin-ext-700.woff') format('woff'); -} - -@font-face { - font-family: 'Lato'; - font-style: italic; - font-weight: 700; - src: - url('lato/lato-v2-latin-ext-700italic.woff2') format('woff2'), - url('lato/lato-v2-latin-ext-700italic.woff') format('woff'); -} diff --git a/services/web/frontend/fonts/lato/lato-v2-latin-ext-700.woff2 b/services/web/frontend/fonts/lato/LatoLatin-Bold.woff2 similarity index 100% rename from services/web/frontend/fonts/lato/lato-v2-latin-ext-700.woff2 rename to services/web/frontend/fonts/lato/LatoLatin-Bold.woff2 diff --git a/services/web/frontend/fonts/lato/lato-v2-latin-ext-700italic.woff2 b/services/web/frontend/fonts/lato/LatoLatin-BoldItalic.woff2 similarity index 100% rename from services/web/frontend/fonts/lato/lato-v2-latin-ext-700italic.woff2 rename to services/web/frontend/fonts/lato/LatoLatin-BoldItalic.woff2 diff --git a/services/web/frontend/fonts/lato/lato-v2-latin-ext-italic.woff2 b/services/web/frontend/fonts/lato/LatoLatin-Italic.woff2 similarity index 100% rename from services/web/frontend/fonts/lato/lato-v2-latin-ext-italic.woff2 rename to services/web/frontend/fonts/lato/LatoLatin-Italic.woff2 diff --git a/services/web/frontend/fonts/lato/lato-v2-latin-ext-regular.woff2 b/services/web/frontend/fonts/lato/LatoLatin-Regular.woff2 similarity index 100% rename from services/web/frontend/fonts/lato/lato-v2-latin-ext-regular.woff2 rename to services/web/frontend/fonts/lato/LatoLatin-Regular.woff2 diff --git a/services/web/frontend/fonts/lato/lato-v2-latin-ext-700.woff b/services/web/frontend/fonts/lato/lato-v2-latin-ext-700.woff deleted file mode 100644 index cdfcbe0fbc..0000000000 Binary files a/services/web/frontend/fonts/lato/lato-v2-latin-ext-700.woff and /dev/null differ diff --git a/services/web/frontend/fonts/lato/lato-v2-latin-ext-700italic.woff b/services/web/frontend/fonts/lato/lato-v2-latin-ext-700italic.woff deleted file mode 100644 index 3e683fea7c..0000000000 Binary files a/services/web/frontend/fonts/lato/lato-v2-latin-ext-700italic.woff and /dev/null differ diff --git a/services/web/frontend/fonts/lato/lato-v2-latin-ext-italic.woff b/services/web/frontend/fonts/lato/lato-v2-latin-ext-italic.woff deleted file mode 100644 index d8cf84c8b9..0000000000 Binary files a/services/web/frontend/fonts/lato/lato-v2-latin-ext-italic.woff and /dev/null differ diff --git a/services/web/frontend/fonts/lato/lato-v2-latin-ext-regular.woff b/services/web/frontend/fonts/lato/lato-v2-latin-ext-regular.woff deleted file mode 100644 index bf73a6d9f9..0000000000 Binary files a/services/web/frontend/fonts/lato/lato-v2-latin-ext-regular.woff and /dev/null differ diff --git a/services/web/frontend/fonts/lato/lato.css b/services/web/frontend/fonts/lato/lato.css new file mode 100644 index 0000000000..38c9eca203 --- /dev/null +++ b/services/web/frontend/fonts/lato/lato.css @@ -0,0 +1,27 @@ +@font-face { + font-family: 'Lato'; + font-style: normal; + font-weight: 400; + src: url('LatoLatin-Regular.woff2') format('woff2'); +} + +@font-face { + font-family: 'Lato'; + font-style: italic; + font-weight: 400; + src: url('LatoLatin-Italic.woff2') format('woff2'); +} + +@font-face { + font-family: 'Lato'; + font-style: normal; + font-weight: 700; + src: url('LatoLatin-Bold.woff2') format('woff2'); +} + +@font-face { + font-family: 'Lato'; + font-style: italic; + font-weight: 700; + src: url('LatoLatin-BoldItalic.woff2') format('woff2'); +} diff --git a/services/web/frontend/fonts/material-symbols.css b/services/web/frontend/fonts/material-symbols/material-symbols.css similarity index 90% rename from services/web/frontend/fonts/material-symbols.css rename to services/web/frontend/fonts/material-symbols/material-symbols.css index 6d29541ba0..a6a8e093a9 100644 --- a/services/web/frontend/fonts/material-symbols.css +++ b/services/web/frontend/fonts/material-symbols/material-symbols.css @@ -7,7 +7,7 @@ Generated from MaterialSymbolsRounded[FILL,GRAD,opsz,wght].woff2 with specific values: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 20 */ - src: url('material-symbols/MaterialSymbolsRoundedSlice.woff2') format('woff2'); + src: url('MaterialSymbolsRoundedSlice.woff2') format('woff2'); } .material-symbols { diff --git a/services/web/frontend/fonts/merriweather-v21-latin-700.woff b/services/web/frontend/fonts/merriweather-v21-latin-700.woff deleted file mode 100644 index afd6fecdcb..0000000000 Binary files a/services/web/frontend/fonts/merriweather-v21-latin-700.woff and /dev/null differ diff --git a/services/web/frontend/fonts/merriweather-v21-latin-700.woff2 b/services/web/frontend/fonts/merriweather-v21-latin-700.woff2 deleted file mode 100644 index ead7c09601..0000000000 Binary files a/services/web/frontend/fonts/merriweather-v21-latin-700.woff2 and /dev/null differ diff --git a/services/web/frontend/fonts/merriweather-v21-latin-700italic.woff b/services/web/frontend/fonts/merriweather-v21-latin-700italic.woff deleted file mode 100644 index a572ccaac9..0000000000 Binary files a/services/web/frontend/fonts/merriweather-v21-latin-700italic.woff and /dev/null differ diff --git a/services/web/frontend/fonts/merriweather-v21-latin-700italic.woff2 b/services/web/frontend/fonts/merriweather-v21-latin-700italic.woff2 deleted file mode 100644 index 051450d3be..0000000000 Binary files a/services/web/frontend/fonts/merriweather-v21-latin-700italic.woff2 and /dev/null differ diff --git a/services/web/frontend/fonts/merriweather-v21-latin-italic.woff b/services/web/frontend/fonts/merriweather-v21-latin-italic.woff deleted file mode 100644 index fe2e3dc0bf..0000000000 Binary files a/services/web/frontend/fonts/merriweather-v21-latin-italic.woff and /dev/null differ diff --git a/services/web/frontend/fonts/merriweather-v21-latin-italic.woff2 b/services/web/frontend/fonts/merriweather-v21-latin-italic.woff2 deleted file mode 100644 index 3c26191b83..0000000000 Binary files a/services/web/frontend/fonts/merriweather-v21-latin-italic.woff2 and /dev/null differ diff --git a/services/web/frontend/fonts/merriweather-v21-latin-regular.woff b/services/web/frontend/fonts/merriweather-v21-latin-regular.woff deleted file mode 100644 index 2f2ab42177..0000000000 Binary files a/services/web/frontend/fonts/merriweather-v21-latin-regular.woff and /dev/null differ diff --git a/services/web/frontend/fonts/merriweather-v21-latin-regular.woff2 b/services/web/frontend/fonts/merriweather-v21-latin-regular.woff2 deleted file mode 100644 index 099840930c..0000000000 Binary files a/services/web/frontend/fonts/merriweather-v21-latin-regular.woff2 and /dev/null differ diff --git a/services/web/frontend/fonts/merriweather.css b/services/web/frontend/fonts/merriweather.css deleted file mode 100644 index aa53e02420..0000000000 --- a/services/web/frontend/fonts/merriweather.css +++ /dev/null @@ -1,40 +0,0 @@ -@font-face { - font-family: 'Merriweather'; - font-style: normal; - font-weight: 400; - src: - local('Merriweather Regular'), - local('Merriweather-Regular'), - url('merriweather-v21-latin-regular.woff2') format('woff2'), - url('merriweather-v21-latin-regular.woff') format('woff'); -} -@font-face { - font-family: 'Merriweather'; - font-style: italic; - font-weight: 400; - src: - local('Merriweather Italic'), - local('Merriweather-Italic'), - url('merriweather-v21-latin-italic.woff2') format('woff2'), - url('merriweather-v21-latin-italic.woff') format('woff'); -} -@font-face { - font-family: 'Merriweather'; - font-style: normal; - font-weight: 700; - src: - local('Merriweather Bold'), - local('Merriweather-Bold'), - url('merriweather-v21-latin-700.woff2') format('woff2'), - url('merriweather-v21-latin-700.woff') format('woff'); -} -@font-face { - font-family: 'Merriweather'; - font-style: italic; - font-weight: 700; - src: - local('Merriweather Bold Italic'), - local('Merriweather-BoldItalic'), - url('merriweather-v21-latin-700italic.woff2') format('woff2'), - url('merriweather-v21-latin-700italic.woff') format('woff'); -} diff --git a/services/web/frontend/fonts/merriweather/Merriweather-Bold.woff2 b/services/web/frontend/fonts/merriweather/Merriweather-Bold.woff2 new file mode 100644 index 0000000000..92d9d8a2d9 Binary files /dev/null and b/services/web/frontend/fonts/merriweather/Merriweather-Bold.woff2 differ diff --git a/services/web/frontend/fonts/merriweather/Merriweather-BoldItalic.woff2 b/services/web/frontend/fonts/merriweather/Merriweather-BoldItalic.woff2 new file mode 100644 index 0000000000..33324b2f0f Binary files /dev/null and b/services/web/frontend/fonts/merriweather/Merriweather-BoldItalic.woff2 differ diff --git a/services/web/frontend/fonts/merriweather/Merriweather-Italic.woff2 b/services/web/frontend/fonts/merriweather/Merriweather-Italic.woff2 new file mode 100644 index 0000000000..828c3245b5 Binary files /dev/null and b/services/web/frontend/fonts/merriweather/Merriweather-Italic.woff2 differ diff --git a/services/web/frontend/fonts/merriweather/Merriweather-Regular.woff2 b/services/web/frontend/fonts/merriweather/Merriweather-Regular.woff2 new file mode 100644 index 0000000000..e5134cd97c Binary files /dev/null and b/services/web/frontend/fonts/merriweather/Merriweather-Regular.woff2 differ diff --git a/services/web/frontend/fonts/merriweather/OFL.txt b/services/web/frontend/fonts/merriweather/OFL.txt new file mode 100644 index 0000000000..042a4c436f --- /dev/null +++ b/services/web/frontend/fonts/merriweather/OFL.txt @@ -0,0 +1,93 @@ +Copyright 2016 The Merriweather Project Authors (https://github.com/EbenSorkin/Merriweather), with Reserved Font Name "Merriweather". + +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/services/web/frontend/fonts/merriweather/merriweather.css b/services/web/frontend/fonts/merriweather/merriweather.css new file mode 100644 index 0000000000..a2aef426c1 --- /dev/null +++ b/services/web/frontend/fonts/merriweather/merriweather.css @@ -0,0 +1,24 @@ +@font-face { + font-family: 'Merriweather'; + font-style: normal; + font-weight: 400; + src: url('Merriweather-Regular.woff2') format('woff2'); +} +@font-face { + font-family: 'Merriweather'; + font-style: italic; + font-weight: 400; + src: url('Merriweather-Italic.woff2') format('woff2'); +} +@font-face { + font-family: 'Merriweather'; + font-style: normal; + font-weight: 700; + src: url('Merriweather-Bold.woff2') format('woff2'); +} +@font-face { + font-family: 'Merriweather'; + font-style: italic; + font-weight: 700; + src: url('Merriweather-BoldItalic.woff2') format('woff2'); +} diff --git a/services/web/frontend/fonts/noto-sans/NotoSans-Italic.woff2 b/services/web/frontend/fonts/noto-sans/NotoSans-Italic.woff2 index b629234070..0894d11b4d 100644 Binary files a/services/web/frontend/fonts/noto-sans/NotoSans-Italic.woff2 and b/services/web/frontend/fonts/noto-sans/NotoSans-Italic.woff2 differ diff --git a/services/web/frontend/fonts/noto-sans/NotoSans-Medium.woff2 b/services/web/frontend/fonts/noto-sans/NotoSans-Medium.woff2 index e1412c5109..769583f3d0 100644 Binary files a/services/web/frontend/fonts/noto-sans/NotoSans-Medium.woff2 and b/services/web/frontend/fonts/noto-sans/NotoSans-Medium.woff2 differ diff --git a/services/web/frontend/fonts/noto-sans/NotoSans-MediumItalic.woff2 b/services/web/frontend/fonts/noto-sans/NotoSans-MediumItalic.woff2 index ae058da378..10e723f4f2 100644 Binary files a/services/web/frontend/fonts/noto-sans/NotoSans-MediumItalic.woff2 and b/services/web/frontend/fonts/noto-sans/NotoSans-MediumItalic.woff2 differ diff --git a/services/web/frontend/fonts/noto-sans/NotoSans-Regular.woff2 b/services/web/frontend/fonts/noto-sans/NotoSans-Regular.woff2 index a6c6696bfc..eaff027723 100644 Binary files a/services/web/frontend/fonts/noto-sans/NotoSans-Regular.woff2 and b/services/web/frontend/fonts/noto-sans/NotoSans-Regular.woff2 differ diff --git a/services/web/frontend/fonts/noto-sans/NotoSans-SemiBold.woff2 b/services/web/frontend/fonts/noto-sans/NotoSans-SemiBold.woff2 index 20d9d0d114..89236c6026 100644 Binary files a/services/web/frontend/fonts/noto-sans/NotoSans-SemiBold.woff2 and b/services/web/frontend/fonts/noto-sans/NotoSans-SemiBold.woff2 differ diff --git a/services/web/frontend/fonts/noto-sans/NotoSans-SemiBoldItalic.woff2 b/services/web/frontend/fonts/noto-sans/NotoSans-SemiBoldItalic.woff2 index c861f2f71f..b7792cd665 100644 Binary files a/services/web/frontend/fonts/noto-sans/NotoSans-SemiBoldItalic.woff2 and b/services/web/frontend/fonts/noto-sans/NotoSans-SemiBoldItalic.woff2 differ diff --git a/services/web/frontend/fonts/noto-sans/OFL.txt b/services/web/frontend/fonts/noto-sans/OFL.txt index 90b7332683..6843f31878 100644 --- a/services/web/frontend/fonts/noto-sans/OFL.txt +++ b/services/web/frontend/fonts/noto-sans/OFL.txt @@ -1,93 +1,93 @@ -Copyright 2015-2021 Google LLC. All Rights Reserved. - -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. +Copyright 2022 The Noto Project Authors (https://github.com/notofonts/latin-greek-cyrillic) + +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: +https://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/services/web/frontend/fonts/noto-sans.css b/services/web/frontend/fonts/noto-sans/noto-sans.css similarity index 65% rename from services/web/frontend/fonts/noto-sans.css rename to services/web/frontend/fonts/noto-sans/noto-sans.css index 07c2f364f6..6e965153be 100644 --- a/services/web/frontend/fonts/noto-sans.css +++ b/services/web/frontend/fonts/noto-sans/noto-sans.css @@ -4,7 +4,7 @@ font-style: normal; font-weight: 400; font-display: fallback; - src: url('noto-sans/NotoSans-Regular.woff2') format('woff2'); + src: url('NotoSans-Regular.woff2') format('woff2'); } @font-face { @@ -12,7 +12,7 @@ font-style: italic; font-weight: 400; font-display: fallback; - src: url('noto-sans/NotoSans-Italic.woff2') format('woff2'); + src: url('NotoSans-Italic.woff2') format('woff2'); } /* Noto Sans - Medium */ @@ -21,7 +21,7 @@ font-style: normal; font-weight: 500; font-display: fallback; - src: url('noto-sans/NotoSans-Medium.woff2') format('woff2'); + src: url('NotoSans-Medium.woff2') format('woff2'); } @font-face { @@ -29,7 +29,7 @@ font-style: italic; font-weight: 500; font-display: fallback; - src: url('noto-sans/NotoSans-MediumItalic.woff2') format('woff2'); + src: url('NotoSans-MediumItalic.woff2') format('woff2'); } /* Noto Sans - SemiBold */ @@ -38,7 +38,7 @@ font-style: normal; font-weight: 600; font-display: fallback; - src: url('noto-sans/NotoSans-SemiBold.woff2') format('woff2'); + src: url('NotoSans-SemiBold.woff2') format('woff2'); } @font-face { @@ -46,5 +46,5 @@ font-style: italic; font-weight: 600; font-display: fallback; - src: url('noto-sans/NotoSans-SemiBoldItalic.woff2') format('woff2'); + src: url('NotoSans-SemiBoldItalic.woff2') format('woff2'); } diff --git a/services/web/frontend/fonts/noto-serif/NotoSerif-Italic[wght].woff2 b/services/web/frontend/fonts/noto-serif/NotoSerif-Italic[wght].woff2 index 1138b15a67..dd6e397584 100644 Binary files a/services/web/frontend/fonts/noto-serif/NotoSerif-Italic[wght].woff2 and b/services/web/frontend/fonts/noto-serif/NotoSerif-Italic[wght].woff2 differ diff --git a/services/web/frontend/fonts/noto-serif/NotoSerif[wght].woff2 b/services/web/frontend/fonts/noto-serif/NotoSerif[wght].woff2 index 0c32900247..fec54552e0 100644 Binary files a/services/web/frontend/fonts/noto-serif/NotoSerif[wght].woff2 and b/services/web/frontend/fonts/noto-serif/NotoSerif[wght].woff2 differ diff --git a/services/web/frontend/fonts/noto-serif/OFL.txt b/services/web/frontend/fonts/noto-serif/OFL.txt index 7d7fbd8f75..6843f31878 100644 --- a/services/web/frontend/fonts/noto-serif/OFL.txt +++ b/services/web/frontend/fonts/noto-serif/OFL.txt @@ -18,7 +18,7 @@ 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, +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 diff --git a/services/web/frontend/fonts/noto-serif.css b/services/web/frontend/fonts/noto-serif/noto-serif.css similarity index 63% rename from services/web/frontend/fonts/noto-serif.css rename to services/web/frontend/fonts/noto-serif/noto-serif.css index a537fa083e..316697fb94 100644 --- a/services/web/frontend/fonts/noto-serif.css +++ b/services/web/frontend/fonts/noto-serif/noto-serif.css @@ -3,7 +3,7 @@ font-style: normal; font-weight: 200 700; font-stretch: 62.5% 100%; - src: url('noto-serif/NotoSerif[wght].woff2') format('woff2'); + src: url('NotoSerif[wght].woff2') format('woff2'); } @font-face { @@ -11,5 +11,5 @@ font-style: italic; font-weight: 200 700; font-stretch: 62.5% 100%; - src: url('noto-serif/NotoSerif-Italic[wght].woff2') format('woff2'); + src: url('NotoSerif-Italic[wght].woff2') format('woff2'); } diff --git a/services/web/frontend/fonts/open-sans-v17-latin-300.woff b/services/web/frontend/fonts/open-sans-v17-latin-300.woff deleted file mode 100644 index 26567ff259..0000000000 Binary files a/services/web/frontend/fonts/open-sans-v17-latin-300.woff and /dev/null differ diff --git a/services/web/frontend/fonts/open-sans-v17-latin-300.woff2 b/services/web/frontend/fonts/open-sans-v17-latin-300.woff2 deleted file mode 100644 index 7bf901c28e..0000000000 Binary files a/services/web/frontend/fonts/open-sans-v17-latin-300.woff2 and /dev/null differ diff --git a/services/web/frontend/fonts/open-sans-v17-latin-600.woff b/services/web/frontend/fonts/open-sans-v17-latin-600.woff deleted file mode 100644 index 9d0eb42db0..0000000000 Binary files a/services/web/frontend/fonts/open-sans-v17-latin-600.woff and /dev/null differ diff --git a/services/web/frontend/fonts/open-sans-v17-latin-600.woff2 b/services/web/frontend/fonts/open-sans-v17-latin-600.woff2 deleted file mode 100644 index 5c5d54e2f2..0000000000 Binary files a/services/web/frontend/fonts/open-sans-v17-latin-600.woff2 and /dev/null differ diff --git a/services/web/frontend/fonts/open-sans-v17-latin-700.woff b/services/web/frontend/fonts/open-sans-v17-latin-700.woff deleted file mode 100644 index b8b46d0b40..0000000000 Binary files a/services/web/frontend/fonts/open-sans-v17-latin-700.woff and /dev/null differ diff --git a/services/web/frontend/fonts/open-sans-v17-latin-700.woff2 b/services/web/frontend/fonts/open-sans-v17-latin-700.woff2 deleted file mode 100644 index 3a38286c67..0000000000 Binary files a/services/web/frontend/fonts/open-sans-v17-latin-700.woff2 and /dev/null differ diff --git a/services/web/frontend/fonts/open-sans-v17-latin-regular.woff b/services/web/frontend/fonts/open-sans-v17-latin-regular.woff deleted file mode 100644 index 39e88ed924..0000000000 Binary files a/services/web/frontend/fonts/open-sans-v17-latin-regular.woff and /dev/null differ diff --git a/services/web/frontend/fonts/open-sans-v17-latin-regular.woff2 b/services/web/frontend/fonts/open-sans-v17-latin-regular.woff2 deleted file mode 100644 index e9f58b775e..0000000000 Binary files a/services/web/frontend/fonts/open-sans-v17-latin-regular.woff2 and /dev/null differ diff --git a/services/web/frontend/fonts/open-sans.css b/services/web/frontend/fonts/open-sans.css deleted file mode 100644 index 236dbf63d8..0000000000 --- a/services/web/frontend/fonts/open-sans.css +++ /dev/null @@ -1,40 +0,0 @@ -@font-face { - font-family: 'Open Sans'; - font-style: normal; - font-weight: 300; - src: - local('Open Sans Light'), - local('OpenSans-Light'), - url('open-sans-v17-latin-300.woff2') format('woff2'), - url('open-sans-v17-latin-300.woff') format('woff'); -} -@font-face { - font-family: 'Open Sans'; - font-style: normal; - font-weight: 400; - src: - local('Open Sans Regular'), - local('OpenSans-Regular'), - url('open-sans-v17-latin-regular.woff2') format('woff2'), - url('open-sans-v17-latin-regular.woff') format('woff'); -} -@font-face { - font-family: 'Open Sans'; - font-style: normal; - font-weight: 600; - src: - local('Open Sans SemiBold'), - local('OpenSans-SemiBold'), - url('open-sans-v17-latin-600.woff2') format('woff2'), - url('open-sans-v17-latin-600.woff') format('woff'); -} -@font-face { - font-family: 'Open Sans'; - font-style: normal; - font-weight: 700; - src: - local('Open Sans Bold'), - local('OpenSans-Bold'), - url('open-sans-v17-latin-700.woff2') format('woff2'), - url('open-sans-v17-latin-700.woff') format('woff'); -} diff --git a/services/web/frontend/fonts/open-sans/OFL.txt b/services/web/frontend/fonts/open-sans/OFL.txt new file mode 100644 index 0000000000..2e76eefd4e --- /dev/null +++ b/services/web/frontend/fonts/open-sans/OFL.txt @@ -0,0 +1,88 @@ +Copyright 2020 The Open Sans Project Authors (https://github.com/googlefonts/opensans) + +----------------------------------------------------------- +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/services/web/frontend/fonts/open-sans/OpenSans-Bold.woff2 b/services/web/frontend/fonts/open-sans/OpenSans-Bold.woff2 new file mode 100644 index 0000000000..6d6a299673 Binary files /dev/null and b/services/web/frontend/fonts/open-sans/OpenSans-Bold.woff2 differ diff --git a/services/web/frontend/fonts/open-sans/OpenSans-Light.woff2 b/services/web/frontend/fonts/open-sans/OpenSans-Light.woff2 new file mode 100644 index 0000000000..2f5ee39252 Binary files /dev/null and b/services/web/frontend/fonts/open-sans/OpenSans-Light.woff2 differ diff --git a/services/web/frontend/fonts/open-sans/OpenSans-Regular.woff2 b/services/web/frontend/fonts/open-sans/OpenSans-Regular.woff2 new file mode 100644 index 0000000000..23eec574fd Binary files /dev/null and b/services/web/frontend/fonts/open-sans/OpenSans-Regular.woff2 differ diff --git a/services/web/frontend/fonts/open-sans/OpenSans-SemiBold.woff2 b/services/web/frontend/fonts/open-sans/OpenSans-SemiBold.woff2 new file mode 100644 index 0000000000..13b0ac0226 Binary files /dev/null and b/services/web/frontend/fonts/open-sans/OpenSans-SemiBold.woff2 differ diff --git a/services/web/frontend/fonts/open-sans/open-sans.css b/services/web/frontend/fonts/open-sans/open-sans.css new file mode 100644 index 0000000000..8b1b52c216 --- /dev/null +++ b/services/web/frontend/fonts/open-sans/open-sans.css @@ -0,0 +1,24 @@ +@font-face { + font-family: 'Open Sans'; + font-style: normal; + font-weight: 300; + src: url('OpenSans-Light.woff2') format('woff2'); +} +@font-face { + font-family: 'Open Sans'; + font-style: normal; + font-weight: 400; + src: url('OpenSans-Regular.woff2') format('woff2'); +} +@font-face { + font-family: 'Open Sans'; + font-style: normal; + font-weight: 600; + src: url('OpenSans-SemiBold.woff2') format('woff2'); +} +@font-face { + font-family: 'Open Sans'; + font-style: normal; + font-weight: 700; + src: url('OpenSans-Bold.woff2') format('woff2'); +} diff --git a/services/web/frontend/fonts/source-code-pro-v13-latin-regular.woff b/services/web/frontend/fonts/source-code-pro-v13-latin-regular.woff deleted file mode 100644 index 9f393eb942..0000000000 Binary files a/services/web/frontend/fonts/source-code-pro-v13-latin-regular.woff and /dev/null differ diff --git a/services/web/frontend/fonts/source-code-pro-v13-latin-regular.woff2 b/services/web/frontend/fonts/source-code-pro-v13-latin-regular.woff2 deleted file mode 100644 index 90d1a423b4..0000000000 Binary files a/services/web/frontend/fonts/source-code-pro-v13-latin-regular.woff2 and /dev/null differ diff --git a/services/web/frontend/fonts/source-code-pro.css b/services/web/frontend/fonts/source-code-pro.css deleted file mode 100644 index f52eb466af..0000000000 --- a/services/web/frontend/fonts/source-code-pro.css +++ /dev/null @@ -1,10 +0,0 @@ -@font-face { - font-family: 'Source Code Pro'; - font-style: normal; - font-weight: 400; - src: - local('Source Code Pro Regular'), - local('SourceCodePro-Regular'), - url('source-code-pro-v13-latin-regular.woff2') format('woff2'), - url('source-code-pro-v13-latin-regular.woff') format('woff'); -} diff --git a/services/web/frontend/fonts/source-code-pro/LICENSE.md b/services/web/frontend/fonts/source-code-pro/LICENSE.md new file mode 100644 index 0000000000..70288a864f --- /dev/null +++ b/services/web/frontend/fonts/source-code-pro/LICENSE.md @@ -0,0 +1,93 @@ +© 2023 Adobe (http://www.adobe.com/), with Reserved Font Name 'Source'. All Rights Reserved. Source is a trademark of Adobe in the United States and/or other countries. + +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/services/web/frontend/fonts/source-code-pro/SourceCodePro-Regular.ttf.woff2 b/services/web/frontend/fonts/source-code-pro/SourceCodePro-Regular.ttf.woff2 new file mode 100644 index 0000000000..40826f1a67 Binary files /dev/null and b/services/web/frontend/fonts/source-code-pro/SourceCodePro-Regular.ttf.woff2 differ diff --git a/services/web/frontend/fonts/source-code-pro/source-code-pro.css b/services/web/frontend/fonts/source-code-pro/source-code-pro.css new file mode 100644 index 0000000000..f7e3ceaf84 --- /dev/null +++ b/services/web/frontend/fonts/source-code-pro/source-code-pro.css @@ -0,0 +1,6 @@ +@font-face { + font-family: 'Source Code Pro'; + font-style: normal; + font-weight: 400; + src: url('SourceCodePro-Regular.ttf.woff2') format('woff2'); +} diff --git a/services/web/frontend/fonts/stix-two-math.css b/services/web/frontend/fonts/stix-two-math.css deleted file mode 100644 index 13528348aa..0000000000 --- a/services/web/frontend/fonts/stix-two-math.css +++ /dev/null @@ -1,4 +0,0 @@ -@font-face { - font-family: 'Stix Two Math'; - src: url('./STIXTwoMath/STIXTwoMath-Regular.woff2') format('woff2'); -} diff --git a/services/web/frontend/stylesheets/bootstrap-5/main-style.scss b/services/web/frontend/stylesheets/bootstrap-5/main-style.scss index 0060b630bb..b28275d8f2 100644 --- a/services/web/frontend/stylesheets/bootstrap-5/main-style.scss +++ b/services/web/frontend/stylesheets/bootstrap-5/main-style.scss @@ -1,12 +1,12 @@ // Web fonts -@import '../../fonts/noto-sans'; -@import '../../fonts/dm-mono'; -@import '../../fonts/merriweather'; -@import '../../fonts/source-code-pro'; -@import '../../fonts/stix-two-math'; -@import '../../fonts/noto-serif'; -@import '../../fonts/material-symbols'; -@import '../../fonts/font-awesome'; +@import '../../fonts/noto-sans/noto-sans.css'; +@import '../../fonts/dm-mono/dm-mono.css'; +@import '../../fonts/merriweather/merriweather.css'; +@import '../../fonts/source-code-pro/source-code-pro.css'; +@import '../../fonts/STIXTwoMath/stix-two-math.css'; +@import '../../fonts/noto-serif/noto-serif.css'; +@import '../../fonts/material-symbols/material-symbols.css'; +@import '../../fonts/font-awesome/font-awesome.css'; // Vendor CSS // TODO Bootstrap 5: Check whether this works with Bootstrap 5, and whether we can replace it diff --git a/services/web/frontend/stylesheets/main-style.less b/services/web/frontend/stylesheets/main-style.less index 6b2db59ca8..81651dfb9b 100644 --- a/services/web/frontend/stylesheets/main-style.less +++ b/services/web/frontend/stylesheets/main-style.less @@ -1,11 +1,11 @@ -@import (less) '../fonts/lato.css'; -@import (less) '../fonts/dm-mono.css'; -@import (less) '../fonts/noto-sans.css'; -@import (less) '../fonts/merriweather.css'; -@import (less) '../fonts/source-code-pro.css'; -@import (less) '../fonts/stix-two-math.css'; -@import (less) '../fonts/noto-serif.css'; -@import (less) '../fonts/material-symbols.css'; +@import (less) '../fonts/lato/lato.css'; +@import (less) '../fonts/dm-mono/dm-mono.css'; +@import (less) '../fonts/noto-sans/noto-sans.css'; +@import (less) '../fonts/merriweather/merriweather.css'; +@import (less) '../fonts/source-code-pro/source-code-pro.css'; +@import (less) '../fonts/STIXTwoMath/stix-two-math.css'; +@import (less) '../fonts/noto-serif/noto-serif.css'; +@import (less) '../fonts/material-symbols/material-symbols.css'; @is-overleaf-light: false; @@ -13,7 +13,7 @@ @import 'variables/all.less'; @import 'variables/css-variables.less'; @import 'app/ol-style-guide.less'; -@import (less) '../fonts/font-awesome.css'; +@import (less) '../fonts/font-awesome/font-awesome.css'; @import 'core/mixins.less'; diff --git a/services/web/package.json b/services/web/package.json index 4149c49f14..4022975c45 100644 --- a/services/web/package.json +++ b/services/web/package.json @@ -65,7 +65,7 @@ "local:test": "npm run local:test:unit && npm run local:test:frontend && npm run local:test:acceptance" }, "browserslist": [ - "defaults", + "defaults and supports woff2", "last 1 year", "safari > 13" ],