答案 0 :(得分:7)
一切都没有变得粗体,但你得到的是备用字体(sans-serif
)而不是你想要的字体。
这是因为您尝试从Google Webfonts加载的字体已硬编码为style.css
中的常规http。
@import url(http://fonts.googleapis.com/css?family=News+Cycle:400,700);
将该行更改为以下内容,并根据当前加载的页面选择http或https。
@import url(//fonts.googleapis.com/css?family=News+Cycle:400,700);