oupala/apaxy

Use protocol agnostic path for font import.

Closed this issue · 1 comments

I'm serving this over https and I get a mixed content error due to the following import statement:

@import url('http://fonts.googleapis.com/css?family=Open+Sans');

Changing this to

@import url('//fonts.googleapis.com/css?family=Open+Sans');

should work for both HTTPS and HTTP as the google servers serve up the correct css.
🐱

Done, thanks.