forked from github/pelican
External resources should be scheme-independent
By using "//" instead of "http://" when referring to external resources such as fonts (e.g., from within CSS files), warnings about "insecure" content can be avoided.
This commit is contained in:
parent
c3e9d0e96e
commit
9eda0f79bd
3 changed files with 3 additions and 3 deletions
|
|
@ -11,7 +11,7 @@
|
|||
@import url("reset.css");
|
||||
@import url("pygment.css");
|
||||
@import url("typogrify.css");
|
||||
@import url(http://fonts.googleapis.com/css?family=Yanone+Kaffeesatz&subset=latin);
|
||||
@import url(//fonts.googleapis.com/css?family=Yanone+Kaffeesatz&subset=latin);
|
||||
|
||||
/***** Global *****/
|
||||
/* Body */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue