@font-face
font-family:'Font' // Коала ругает эту строку
src: url('Font.eot')
src: url('Font.eot?#iefix') format('embedded-opentype'),
url('Font.woff2') format('woff2'), // И эту
url('Font.woff') format('woff'),
url('Font.ttf') format('truetype'),
url('Font.svg#SF UI Display Bold') format('svg')
font-weight: 700
font-style: normal
font-stretch: normal
unicode-range: U+0020-00FE@font-face
font-family: "vera-crouz"
src: url(../fonts/vera-crouz.ttf)
src: url(../fonts/vera-crouz.eot)
src: url(../fonts/vera-crouz.woff)
@mixin font-face($font-family, $file-path, $weight: normal, $style: normal, $asset-pipeline: false )
@font-face
font-family: $font-family
font-weight: $weight
font-style: $style
@if $asset-pipeline == true
src: font-url('#{$file-path}.eot')
src: font-url('#{$file-path}.eot?#iefix') format('embedded-opentype'), font-url('#{$file-path}.woff') format('woff'), font-url('#{$file-path}.ttf') format('truetype')
@else
src: url('#{$file-path}.eot')
src: url('#{$file-path}.eot?#iefix') format('embedded-opentype'), url('#{$file-path}.woff') format('woff'), url('#{$file-path}.ttf') format('truetype')