Sha256: 17fd095c172f05aba16214c4d68d366809361eb81dc8e33dabf81330059655f9

Contents?: true

Size: 1.1 KB

Versions: 14

Compression:

Stored size: 1.1 KB

Contents

@import "shared";

// Cross-browser support for @font-face. Supports IE, Gecko, Webkit, Opera.
//
// * $name is required, arbitrary, and what you will use in font stacks.
// * $font-files is required using font-files('relative/location', 'format').
//   for best results use this order: woff, opentype/truetype, svg
// * $eot is required by IE, and is a relative location of the eot file.

@mixin font-face($name, $font-files, $eot: false, $postscript: false, $style: false) {
  @if $postscript or $style {
    @warn "The $postscript and $style variables have been deprecated in favor of the Paul Irish smiley bulletproof technique.";
  }
  @font-face {
    font-family: quote($name);
    @if $eot {
      src: font-url($eot); }
    src: local("☺"), $font-files; 
  } 
}

// EXAMPLE
// +font-face("this name", font-files("this.woff", "woff", "this.otf", "opentype"), "this.eot")
//
// will generate:
//
//   @font-face { 
//     font-family: 'this name'; 
//     src: url('fonts/this.eot'); 
//     src: local("☺"),
//       url('fonts/this.otf') format('woff'), 
//       url('fonts/this.woff') format('opentype'); 
//   }

Version data entries

14 entries across 11 versions & 2 rubygems

Version Path
frontsau-0.0.3 lib/Phamlp/sass/extensions/compass/frameworks/compass/stylesheets/compass/css3/_font-face.scss
frontsau-0.0.3 lib/Phamlp/sass/extensions/compass/stylesheets/compass/css3/_font-face.scss
frontsau-0.0.2 lib/Phamlp/sass/extensions/compass/stylesheets/compass/css3/_font-face.scss
frontsau-0.0.2 lib/Phamlp/sass/extensions/compass/frameworks/compass/stylesheets/compass/css3/_font-face.scss
frontsau-0.0.1 lib/Phamlp/sass/extensions/compass/stylesheets/compass/css3/_font-face.scss
frontsau-0.0.1 lib/Phamlp/sass/extensions/compass/frameworks/compass/stylesheets/compass/css3/_font-face.scss
compass-0.10.5 frameworks/compass/stylesheets/compass/css3/_font-face.scss
compass-0.10.5.pre.1 frameworks/compass/stylesheets/compass/css3/_font-face.scss
compass-0.10.4 frameworks/compass/stylesheets/compass/css3/_font-face.scss
compass-0.10.4.pre.4 frameworks/compass/stylesheets/compass/css3/_font-face.scss
compass-0.10.4.pre.3 frameworks/compass/stylesheets/compass/css3/_font-face.scss
compass-0.10.4.pre.2 frameworks/compass/stylesheets/compass/css3/_font-face.scss
compass-0.10.3 frameworks/compass/stylesheets/compass/css3/_font-face.scss
compass-0.10.3.pre.1 frameworks/compass/stylesheets/compass/css3/_font-face.scss