This commit is contained in:
Rhiannon Morris 2020-10-30 07:56:57 +01:00
parent f41c23f6f3
commit 776ae2ccee
14 changed files with 92 additions and 10 deletions

1
.gitignore vendored
View File

@ -1,3 +1,4 @@
_build
_tmp
dist-newstyle
style/fonts/pragmatapro/*.woff2

BIN
style/fonts/andika/Andika-R.woff (Stored with Git LFS)

Binary file not shown.

View File

@ -1,4 +0,0 @@
@font-face {
font-family: Andika;
src: url(Andika-R.woff);
}

BIN
style/fonts/charis/CharisSIL-B.ttf (Stored with Git LFS) Normal file

Binary file not shown.

BIN
style/fonts/charis/CharisSIL-B.woff (Stored with Git LFS) Normal file

Binary file not shown.

BIN
style/fonts/charis/CharisSIL-BI.ttf (Stored with Git LFS) Normal file

Binary file not shown.

BIN
style/fonts/charis/CharisSIL-BI.woff (Stored with Git LFS) Normal file

Binary file not shown.

BIN
style/fonts/charis/CharisSIL-I.ttf (Stored with Git LFS) Normal file

Binary file not shown.

BIN
style/fonts/charis/CharisSIL-I.woff (Stored with Git LFS) Normal file

Binary file not shown.

BIN
style/fonts/charis/CharisSIL-R.ttf (Stored with Git LFS) Normal file

Binary file not shown.

BIN
style/fonts/charis/CharisSIL-R.woff (Stored with Git LFS) Normal file

Binary file not shown.

View File

@ -0,0 +1,33 @@
@font-face {
font-family: Charis;
font-weight: 400;
src:
url(CharisSIL-R.ttf) format('truetype'),
url(CharisSIL-R.woff) format('woff');
}
@font-face {
font-family: Charis;
font-weight: 500;
src:
url(CharisSIL-B.ttf) format('truetype'),
url(CharisSIL-B.woff) format('woff');
}
@font-face {
font-family: Charis;
font-weight: 400;
font-style: italic;
src:
url(CharisSIL-I.ttf) format('truetype'),
url(CharisSIL-I.woff) format('woff');
}
@font-face {
font-family: Charis;
font-weight: 500;
font-style: italic;
src:
url(CharisSIL-BI.ttf) format('truetype'),
url(CharisSIL-BI.woff) format('woff');
}

View File

@ -0,0 +1,25 @@
@font-face {
font-family: PragmataPro;
font-weight: 400;
src: url(r.woff2);
}
@font-face {
font-family: PragmataPro;
font-weight: 500;
src: url(b.woff2);
}
@font-face {
font-family: PragmataPro;
font-weight: 400;
font-style: italic;
src: url(i.woff2);
}
@font-face {
font-family: PragmataPro;
font-weight: 500;
font-style: italic;
src: url(bi.woff2);
}

View File

@ -1,5 +1,6 @@
@import url(fonts/muller/muller.css);
@import url(fonts/andika/andika.css);
@import url(fonts/charis/charis.css);
@import url(fonts/pragmatapro/pragmatapro.css);
@import url(counters.css);
@ -8,6 +9,8 @@
--fg-col: hsl(336deg, 17%, 11%);
--bg-col: hsl(40deg, 91%, 98%);
--link-col: hsl(355deg, 52%, 48%);
--ipa-font: Charis;
}
:root {
@ -91,6 +94,9 @@ ul li {
.ipa, .lang {
font-family: Andika;
font-feature-settings: "ss01" 1, "litr" 0;
font-family: var(--ipa-font);
}
.lang {
font-weight: 500;
}