From d7b269568dd586002670eaedbf6acbfdf0c9120e Mon Sep 17 00:00:00 2001 From: Yuki Joou Date: Sun, 28 May 2023 13:59:41 +0200 Subject: [PATCH] common/fonts: Added notices to point people to the font licenses --- src/common/fonts/CherryBombOne.css | 6 ++++++ src/common/fonts/IBMPlexMono.css | 31 +++++++++++++++++------------- 2 files changed, 24 insertions(+), 13 deletions(-) diff --git a/src/common/fonts/CherryBombOne.css b/src/common/fonts/CherryBombOne.css index 8d5b5e6..95c226d 100644 --- a/src/common/fonts/CherryBombOne.css +++ b/src/common/fonts/CherryBombOne.css @@ -1,3 +1,9 @@ +/* + * This loads the "Cherry Bomb One" font. This is a redistribution of the + * "Cherry Bomb One" software. Check out the license at + * CherryBombOne/LICENSE.txt + */ + @font-face { font-family: "Cherry Bomb One"; src: url("CherryBombOne/Regular.woff2") format("woff2"); diff --git a/src/common/fonts/IBMPlexMono.css b/src/common/fonts/IBMPlexMono.css index 5c654ee..ef09fe6 100644 --- a/src/common/fonts/IBMPlexMono.css +++ b/src/common/fonts/IBMPlexMono.css @@ -1,24 +1,29 @@ +/* + * This loads the "IBM Plex Mono" font. This is a redistribution of the + * "IBM Plex Mono" software. Check out the license at IBMPlexMono/LICENSE.txt + */ + @font-face { - font-family: 'IBM Plex Mono'; - src: url("IBMPlexMono/Regular.woff2") format("woff2"); + font-family: "IBM Plex Mono"; + src: url("IBMPlexMono/Regular.woff2") format("woff2"); } @font-face { - font-family: 'IBM Plex Mono'; - src: url("IBMPlexMono/Bold.woff2") format("woff2"); - font-weight: bold; + font-family: "IBM Plex Mono"; + src: url("IBMPlexMono/Bold.woff2") format("woff2"); + font-weight: bold; } @font-face { - font-family: 'IBM Plex Mono'; - src: url("IBMPlexMono/Italic.woff2") format("woff2"); - font-weight: normal; - font-style: italic; + font-family: "IBM Plex Mono"; + src: url("IBMPlexMono/Italic.woff2") format("woff2"); + font-weight: normal; + font-style: italic; } @font-face { - font-family: 'IBM Plex Mono'; - src: url("IBMPlexMono/BoldItalic.woff2") format("woff2"); - font-weight: bold; - font-style: italic; + font-family: "IBM Plex Mono"; + src: url("IBMPlexMono/BoldItalic.woff2") format("woff2"); + font-weight: bold; + font-style: italic; }