Sha256: c857dbcb911affce84260811048bb55d207fb683f6efe19df12928644ec1f8de

Contents?: true

Size: 853 Bytes

Versions: 3

Compression:

Stored size: 853 Bytes

Contents

@mixin vertical-gradient($from-hex, $to-hex) {

  background-color: $from-hex;
  background-image: -webkit-gradient(linear, left top, left bottom, from($from-hex), to($to-hex));
  background-image: -webkit-linear-gradient(top, $from-hex, $to-hex);
  background-image: -moz-linear-gradient(top, $from-hex, $to-hex);
  background-image: -o-linear-gradient(top, $from-hex, $to-hex);
  background-image: -ms-linear-gradient(top, $from-hex, $to-hex);
  background-image: linear-gradient(top, $from-hex, $to-hex);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='$from-hex', EndColorStr='$to-hex');

}

@mixin font-face($font-family, $url) {
   @font-face {
      font-family: '#{$font-family}';
      src: url('#{$url}.eot?') format('eot'), url('#{$url}.woff') format('woff'), url('#{$url}.ttf') format('truetype');
   }
}

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
dust-cms-0.0.07 app/assets/stylesheets/cms/lib/mixins.css.scss
dust-cms-0.0.06 app/assets/stylesheets/cms/lib/mixins.css.scss
dust-cms-0.0.05 app/assets/stylesheets/cms/lib/mixins.css.scss