commit db66dd957f8c2bc8b16b49554a6cc4e4504a5914 parent 41e644ef0d436c62cce2b8974686f3a1e961fbd8 Author: Andrew Belt <andrewpbelt@gmail.com> Date: Tue, 9 Jun 2015 01:35:58 -0400 Added https protocol to font links Diffstat:
| M | style.css | | | 15 | +++++++-------- |
1 file changed, 7 insertions(+), 8 deletions(-)
diff --git a/style.css b/style.css @@ -21,42 +21,42 @@ https://github.com/AndrewBelt/WiTeX font-family: 'Latin Modern Roman'; font-weight: 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-family: 'Latin Modern Roman'; font-weight: bold; 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-family: 'Latin Modern Roman'; font-weight: normal; 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-family: 'Latin Modern Roman'; font-weight: bold; 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-family: 'Latin Modern Mono'; font-weight: 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-family: 'Latin Modern Mono'; font-weight: normal; 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 */ @@ -226,4 +226,4 @@ div.tleft { pre, code { font-family: "Latin Modern Mono", monospace !important; -} -\ No newline at end of file +}