Sha256: 3bf9f14cce4d42930bb91dc64273ef056a045a8f99c7cc5e69eaf54bf8034e49

Contents?: true

Size: 905 Bytes

Versions: 1

Compression:

Stored size: 905 Bytes

Contents

@mixin font-face($font-family, $file-path, $weight: normal, $style: normal, $asset-pipeline: true )
  @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'), font-url("#{$file-path}.svg##{$font-family}") format('svg')
    @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'), url("#{$file-path}.svg##{$font-family}") format('svg')

+font-face('modicon', 'modicon/modicon', normal, normal, true)
+font-face('HelveticaNeueLTStd-Th', 'helveticaneueltstdth', normal, normal, true)

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
modicon-0.0.1 spec/dummy/app/assets/stylesheets/_config.sass