font fixes

This commit is contained in:
kurpfish
2021-08-13 15:18:18 +03:00
parent fd8558ec02
commit a168d71497
16 changed files with 41 additions and 9 deletions

BIN
src/fonts/MullerBold.ttf Normal file

Binary file not shown.

BIN
src/fonts/MullerBold.woff Normal file

Binary file not shown.

BIN
src/fonts/MullerBold.woff2 Normal file

Binary file not shown.

BIN
src/fonts/MullerLight.ttf Normal file

Binary file not shown.

BIN
src/fonts/MullerLight.woff Normal file

Binary file not shown.

BIN
src/fonts/MullerLight.woff2 Normal file

Binary file not shown.

BIN
src/fonts/MullerRegular.ttf Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -318,9 +318,31 @@
@font-face {
font-family: 'Muller';
src: url('muller_extrabold_demo.woff2') format('woff2'), url('muller_extrabold_demo.woff') format('woff'),
url('muller_extrabold_demo.ttf') format('truetype');
font-weight: bold;
src: local('Muller Bold'), local('Muller-Bold'),
url('MullerBold.woff2') format('woff2'),
url('MullerBold.woff') format('woff'),
url('MullerBold.ttf') format('truetype');
font-weight: 700;
font-style: normal;
}
@font-face {
font-family: 'Muller';
src: local('Muller Regular'), local('Muller-Regular'),
url('MullerRegular.woff2') format('woff2'),
url('MullerRegular.woff') format('woff'),
url('MullerRegular.ttf') format('truetype');
font-weight: 400;
font-style: normal;
}
@font-face {
font-family: 'Muller';
src: local('Muller Light'), local('Muller-Light'),
url('MullerLight.woff2') format('woff2'),
url('MullerLight.woff') format('woff'),
url('MullerLight.ttf') format('truetype');
font-weight: 300;
font-style: normal;
}