在SASS中更改fonts.com导入的font-family

时间:2016-11-18 09:59:31

标签: css fonts sass font-face

我正在努力让托管的fonts.com导入为客户端命名更好一点。 我无法在fonts.com上重命名,因为其他网站使用相同的托管字体版本,因此这不是一个选项。

我尝试使用类似下面代码的内容,但是因为我在这里显然无法按计划运行:



@import url('http://fast.fonts.net/cssapi/pathtohostedcss.css')

@font-face
  font-family: 'Company Medium'
  src: local('Futura LT W01 Medium')
  font-weight: 500
  font-style: normal

@font-face
  font-family: 'Company Heavy'
  src: local('Futura LT W02 Heavy')
  font-weight: bold
  font-style: normal




在SASS有没有办法做到这一点?不是我使用缩进样式而不是SCSS。

1 个答案:

答案 0 :(得分:0)

我会查看http://fast.fonts.net/cssapi/pathtohostedcss.css,找到@ font-face声明,只需在导入后复制并粘贴它们,同时只更改字体名称。应该可以工作,你会覆盖原来的@ font-face声明。