diff options
author | Tor Andersson <tor@ccxvii.net> | 2023-06-12 11:51:57 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2023-06-12 12:29:09 +0200 |
commit | 634cdf0f3e0f3e92e14df4c400d83ccaf4156c9a (patch) | |
tree | 9585a898e8534abfe6c00ef70d8ec75902c8c140 | |
parent | 0335c34c0ec5b81b83e578478f9681c279f87717 (diff) | |
download | server-634cdf0f3e0f3e92e14df4c400d83ccaf4156c9a.tar.gz |
Add Tinos web font.
-rw-r--r-- | public/fonts/README | 3 | ||||
-rw-r--r-- | public/fonts/Tinos-Bold.woff2 | bin | 0 -> 26868 bytes | |||
-rw-r--r-- | public/fonts/Tinos-BoldItalic.woff2 | bin | 0 -> 27192 bytes | |||
-rw-r--r-- | public/fonts/Tinos-Italic.woff2 | bin | 0 -> 28080 bytes | |||
-rw-r--r-- | public/fonts/Tinos-Regular.woff2 | bin | 0 -> 29800 bytes | |||
-rw-r--r-- | public/fonts/fonts.css | 5 |
6 files changed, 8 insertions, 0 deletions
diff --git a/public/fonts/README b/public/fonts/README index c73d3f6..979a2c7 100644 --- a/public/fonts/README +++ b/public/fonts/README @@ -19,3 +19,6 @@ Gentium Basic is from SIL International under the SIL Open Font License. Dinish is from playbeing under the SIL Open Font License. https://fonts.playbeing.com/ https://github.com/playbeing/dinish + +Tinos is from Google Fonts under the SIL Open Font License. + https://github.com/googlefonts/tinos diff --git a/public/fonts/Tinos-Bold.woff2 b/public/fonts/Tinos-Bold.woff2 Binary files differnew file mode 100644 index 0000000..5bc2cba --- /dev/null +++ b/public/fonts/Tinos-Bold.woff2 diff --git a/public/fonts/Tinos-BoldItalic.woff2 b/public/fonts/Tinos-BoldItalic.woff2 Binary files differnew file mode 100644 index 0000000..f26b925 --- /dev/null +++ b/public/fonts/Tinos-BoldItalic.woff2 diff --git a/public/fonts/Tinos-Italic.woff2 b/public/fonts/Tinos-Italic.woff2 Binary files differnew file mode 100644 index 0000000..8e66d5c --- /dev/null +++ b/public/fonts/Tinos-Italic.woff2 diff --git a/public/fonts/Tinos-Regular.woff2 b/public/fonts/Tinos-Regular.woff2 Binary files differnew file mode 100644 index 0000000..1bd2873 --- /dev/null +++ b/public/fonts/Tinos-Regular.woff2 diff --git a/public/fonts/fonts.css b/public/fonts/fonts.css index 5d47424..05ed936 100644 --- a/public/fonts/fonts.css +++ b/public/fonts/fonts.css @@ -21,3 +21,8 @@ @font-face{font-family:'Gentium Basic';font-style:italic;src:url('GentiumBasic-Italic.woff2')format('woff2')} @font-face{font-family:'Gentium Basic';font-weight:bold;src:url('GentiumBasic-Bold.woff2')format('woff2')} @font-face{font-family:'Gentium Basic';font-weight:bold;font-style:italic;src:url('GentiumBasic-BoldItalic.woff2')format('woff2')} + +@font-face{font-family:'Tinos';font-weight:bold;src:url('Tinos-Bold.woff2')format('woff2')} +@font-face{font-family:'Tinos';font-weight:bold;font-style:italic;src:url('Tinos-BoldItalic.woff2')format('woff2')} +@font-face{font-family:'Tinos';font-style:italic;src:url('Tinos-Italic.woff2')format('woff2')} +@font-face{font-family:'Tinos';src:url('Tinos-Regular.woff2')format('woff2')} |