diff --git a/fonts.json b/fonts.json index 4a4efa8..c0cd756 100644 --- a/fonts.json +++ b/fonts.json @@ -1426,6 +1426,26 @@ "website": "https://github.com/nerdypepper/scientifica", "year": 2019 }, + "serious-sans": { + "author": "Kyle Beechly", + "description": "A legible monospace font for playful professionals. Comic Sans for hackers.", + "license": "MIT", + "ligatures": false, + "name": "Serious Sans", + "rendering": "vector", + "style": "sans", + "zerostyle": "slashed", + "variants": [ + "light", + "light-italic", + "bold", + "bold-italic", + "italic", + "regular" + ], + "website": "https://kabeech.github.io/serious-sans/", + "year": 2023 + }, "share-tech": { "author": "Ralph du Carrois", "ligatures": false, diff --git a/fonts/resources/serious-sans/LICENSE.txt b/fonts/resources/serious-sans/LICENSE.txt new file mode 100644 index 0000000..346d2a1 --- /dev/null +++ b/fonts/resources/serious-sans/LICENSE.txt @@ -0,0 +1,23 @@ +MIT License + +Original work Copyright (c) 2018 Shannon Miwa +Modified work Copyright (c) 2019 dtinth +Modified work Copyright (c) 2023 Kyle Beechly + +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. diff --git a/fonts/resources/serious-sans/serious-sans-bold-italic.ttf b/fonts/resources/serious-sans/serious-sans-bold-italic.ttf new file mode 100644 index 0000000..c108398 Binary files /dev/null and b/fonts/resources/serious-sans/serious-sans-bold-italic.ttf differ diff --git a/fonts/resources/serious-sans/serious-sans-bold.ttf b/fonts/resources/serious-sans/serious-sans-bold.ttf new file mode 100644 index 0000000..5c1616c Binary files /dev/null and b/fonts/resources/serious-sans/serious-sans-bold.ttf differ diff --git a/fonts/resources/serious-sans/serious-sans-italic.ttf b/fonts/resources/serious-sans/serious-sans-italic.ttf new file mode 100644 index 0000000..122f8b7 Binary files /dev/null and b/fonts/resources/serious-sans/serious-sans-italic.ttf differ diff --git a/fonts/resources/serious-sans/serious-sans.ttf b/fonts/resources/serious-sans/serious-sans.ttf new file mode 100644 index 0000000..4c6b5df Binary files /dev/null and b/fonts/resources/serious-sans/serious-sans.ttf differ diff --git a/fonts/stylesheets/fonts.less b/fonts/stylesheets/fonts.less index 1e846f5..12c0e6b 100755 --- a/fonts/stylesheets/fonts.less +++ b/fonts/stylesheets/fonts.less @@ -344,6 +344,11 @@ .font ( 'scientifica', bold, normal, 'scientifica/scientifica-bold.ttf' ); .font ( 'scientifica', normal, italic, 'scientifica/scientifica-italic.ttf' ); +.font ( 'serious-sans', bold, italic, 'serious-sans/serious-sans-bold-italic.ttf' ); +.font ( 'serious-sans', bold, normal, 'serious-sans/serious-sans-bold.ttf' ); +.font ( 'serious-sans', normal, italic, 'serious-sans/serious-sans-italic.ttf' ); +.font ( 'serious-sans', normal, normal, 'serious-sans/serious-sans.ttf' ); + .font ( 'share-tech', normal, normal, 'share-tech/share-tech.ttf' ); .font ( 'sk-modernist', normal, normal, 'sk-modernist/sk-modernist.woff' ); diff --git a/fonts/stylesheets/stylesheet.css b/fonts/stylesheets/stylesheet.css index 3337d62..2250d7a 100755 --- a/fonts/stylesheets/stylesheet.css +++ b/fonts/stylesheets/stylesheet.css @@ -1462,6 +1462,30 @@ font-style: italic; src: url('../resources/scientifica/scientifica-italic.ttf'); } +@font-face { + font-family: 'serious-sans'; + font-weight: bold; + font-style: italic; + src: url('../resources/serious-sans/serious-sans-bold-italic.ttf'); +} +@font-face { + font-family: 'serious-sans'; + font-weight: bold; + font-style: normal; + src: url('../resources/serious-sans/serious-sans-bold.ttf'); +} +@font-face { + font-family: 'serious-sans'; + font-weight: normal; + font-style: italic; + src: url('../resources/serious-sans/serious-sans-italic.ttf'); +} +@font-face { + font-family: 'serious-sans'; + font-weight: normal; + font-style: normal; + src: url('../resources/serious-sans/serious-sans.ttf'); +} @font-face { font-family: 'share-tech'; font-weight: normal;