Skip to content

Commit

Permalink
Added https protocol to font links
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewBelt committed Jun 9, 2015
1 parent 41e644e commit db66dd9
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -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 */
Expand Down Expand Up @@ -226,4 +226,4 @@ div.tleft {

pre, code {
font-family: "Latin Modern Mono", monospace !important;
}
}

0 comments on commit db66dd9

Please sign in to comment.