Skip to content

Commit

Permalink
Fixed failure to use fonts
Browse files Browse the repository at this point in the history
  • Loading branch information
HanryYu committed Jul 8, 2020
1 parent d31a7d9 commit 421e689
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions inside.css
Expand Up @@ -6,35 +6,35 @@
font-style: normal;
font-weight: 300;
src: local('Noto Sans SC Light'), local('NotoSansSC-Light'),
url('../Inside/noto-sans-sc-v11-latin-300.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
url('../Inside/noto-sans-sc-v11-latin-300.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
url('./Inside/noto-sans-sc-v11-latin-300.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
url('./Inside/noto-sans-sc-v11-latin-300.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* noto-sans-sc-regular - latin */
@font-face {
font-family: 'Noto Sans SC';
font-style: normal;
font-weight: 400;
src: local('Noto Sans SC Regular'), local('NotoSansSC-Regular'),
url('../Inside/noto-sans-sc-v11-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
url('../Inside/noto-sans-sc-v11-latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
url('./Inside/noto-sans-sc-v11-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
url('./Inside/noto-sans-sc-v11-latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* noto-sans-sc-500 - latin */
@font-face {
font-family: 'Noto Sans SC';
font-style: normal;
font-weight: 500;
src: local('Noto Sans SC Medium'), local('NotoSansSC-Medium'),
url('../Inside/noto-sans-sc-v11-latin-500.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
url('../Inside/noto-sans-sc-v11-latin-500.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
url('./Inside/noto-sans-sc-v11-latin-500.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
url('./Inside/noto-sans-sc-v11-latin-500.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* noto-sans-sc-700 - latin */
@font-face {
font-family: 'Noto Sans SC';
font-style: normal;
font-weight: 700;
src: local('Noto Sans SC Bold'), local('NotoSansSC-Bold'),
url('../Inside/noto-sans-sc-v11-latin-700.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
url('../Inside/noto-sans-sc-v11-latin-700.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
url('./Inside/noto-sans-sc-v11-latin-700.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
url('./Inside/noto-sans-sc-v11-latin-700.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* noto-sans-sc-900 - latin */
Expand Down Expand Up @@ -136,7 +136,7 @@
font-family: 'CascadiaCode';
font-style: normal;
src: local(''),
url('../Inside/CascadiaCode.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
url('./Inside/CascadiaCode.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
}


Expand Down

0 comments on commit 421e689

Please sign in to comment.