From 8e865e68bf45a6f66e8f2463e51088415ddb304b Mon Sep 17 00:00:00 2001 From: Rhiannon Morris Date: Mon, 24 May 2021 11:36:23 +0200 Subject: [PATCH] replace ipa font --- fonts/breezesans/breezesans.css | 64 --------------------------------- fonts/noto/noto.css | 8 +++++ style.css | 5 +-- 3 files changed, 11 insertions(+), 66 deletions(-) delete mode 100644 fonts/breezesans/breezesans.css create mode 100644 fonts/noto/noto.css diff --git a/fonts/breezesans/breezesans.css b/fonts/breezesans/breezesans.css deleted file mode 100644 index 1e9656c..0000000 --- a/fonts/breezesans/breezesans.css +++ /dev/null @@ -1,64 +0,0 @@ -@font-face { - src: url(100.ttf); - font-family: 'BreezeSans'; - font-weight: 100; -} - -@font-face { - src: url(100c.ttf); - font-family: 'BreezeSans'; - font-weight: 100; - font-stretch: condensed; -} - -@font-face { - src: url(300.ttf); - font-family: 'BreezeSans'; - font-weight: 300; -} - -@font-face { - src: url(300c.ttf); - font-family: 'BreezeSans'; - font-weight: 300; - font-stretch: condensed; -} - -@font-face { - src: url(400.ttf); - font-family: 'BreezeSans'; - font-weight: 400; -} - -@font-face { - src: url(400c.ttf); - font-family: 'BreezeSans'; - font-weight: 400; - font-stretch: condensed; -} - -@font-face { - src: url(600.ttf); - font-family: 'BreezeSans'; - font-weight: 600; -} - -@font-face { - src: url(600c.ttf); - font-family: 'BreezeSans'; - font-weight: 600; - font-stretch: condensed; -} - -@font-face { - src: url(700.ttf); - font-family: 'BreezeSans'; - font-weight: 700; -} - -@font-face { - src: url(700c.ttf); - font-family: 'BreezeSans'; - font-weight: 700; - font-stretch: condensed; -} diff --git a/fonts/noto/noto.css b/fonts/noto/noto.css new file mode 100644 index 0000000..c00338c --- /dev/null +++ b/fonts/noto/noto.css @@ -0,0 +1,8 @@ +@font-face { + font-family: NotoSans; + font-weight: 900; + src: + local('Noto Sans Black'), + url(NotoSans-Black.ttf) format('ttf'); +} + diff --git a/style.css b/style.css index 41d11fb..48d3879 100644 --- a/style.css +++ b/style.css @@ -1,5 +1,5 @@ @import url(fonts/muller/muller.css); -@import url(fonts/breezesans/breezesans.css); +@import url(fonts/noto/noto.css); body { --gradient: @@ -173,7 +173,8 @@ h1, h2 { --around-image: url(images/sparkles.svg); } .ipa { - font-family: BreezeSans; + font-family: NotoSans; + font-weight: 900; font-size: 90%; }