Added https protocol to font links

This commit is contained in:
Andrew Belt 2015-06-09 01:35:58 -04:00
parent 41e644ef0d
commit db66dd957f

View File

@ -21,42 +21,42 @@ https://github.com/AndrewBelt/WiTeX
font-family: 'Latin Modern Roman'; font-family: 'Latin Modern Roman';
font-weight: normal; font-weight: normal;
font-style: normal; font-style: normal;
src: url('//cdn.rawgit.com/AndrewBelt/WiTeX/master/fonts/lmroman10-regular.woff') format('woff'); src: url('https://cdn.rawgit.com/AndrewBelt/WiTeX/master/fonts/lmroman10-regular.woff') format('woff');
} }
@font-face { @font-face {
font-family: 'Latin Modern Roman'; font-family: 'Latin Modern Roman';
font-weight: bold; font-weight: bold;
font-style: normal; font-style: normal;
src: url('//cdn.rawgit.com/AndrewBelt/WiTeX/master/fonts/lmroman10-bold.woff') format('woff'); src: url('https://cdn.rawgit.com/AndrewBelt/WiTeX/master/fonts/lmroman10-bold.woff') format('woff');
} }
@font-face { @font-face {
font-family: 'Latin Modern Roman'; font-family: 'Latin Modern Roman';
font-weight: normal; font-weight: normal;
font-style: italic; font-style: italic;
src: url('//cdn.rawgit.com/AndrewBelt/WiTeX/master/fonts/lmroman10-italic.woff') format('woff'); src: url('https://cdn.rawgit.com/AndrewBelt/WiTeX/master/fonts/lmroman10-italic.woff') format('woff');
} }
@font-face { @font-face {
font-family: 'Latin Modern Roman'; font-family: 'Latin Modern Roman';
font-weight: bold; font-weight: bold;
font-style: italic; font-style: italic;
src: url('//cdn.rawgit.com/AndrewBelt/WiTeX/master/fonts/lmroman10-bolditalic.woff') format('woff'); src: url('https://cdn.rawgit.com/AndrewBelt/WiTeX/master/fonts/lmroman10-bolditalic.woff') format('woff');
} }
@font-face { @font-face {
font-family: 'Latin Modern Mono'; font-family: 'Latin Modern Mono';
font-weight: normal; font-weight: normal;
font-style: normal; font-style: normal;
src: url('//cdn.rawgit.com/AndrewBelt/WiTeX/master/fonts/lmmono10-regular.woff') format('woff'); src: url('https://cdn.rawgit.com/AndrewBelt/WiTeX/master/fonts/lmmono10-regular.woff') format('woff');
} }
@font-face { @font-face {
font-family: 'Latin Modern Mono'; font-family: 'Latin Modern Mono';
font-weight: normal; font-weight: normal;
font-style: italic; font-style: italic;
src: url('//cdn.rawgit.com/AndrewBelt/WiTeX/master/fonts/lmmono10-italic.woff') format('woff'); src: url('https://cdn.rawgit.com/AndrewBelt/WiTeX/master/fonts/lmmono10-italic.woff') format('woff');
} }
/* Page Layout */ /* Page Layout */
@ -226,4 +226,4 @@ div.tleft {
pre, code { pre, code {
font-family: "Latin Modern Mono", monospace !important; font-family: "Latin Modern Mono", monospace !important;
} }