Skip to content

Instantly share code, notes, and snippets.

@sou-lab
Created August 28, 2014 11:10
Show Gist options
  • Save sou-lab/f1449c2a5ed27295a68f to your computer and use it in GitHub Desktop.
Save sou-lab/f1449c2a5ed27295a68f to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.1)
// Compass (v1.0.1)
// ----
$graceful-usage-threshold: 9;
//$supported-browsers: ("chrome");
@import "compass";
$debug-browser-support: true;
.brs {
@include border-radius (4px);
@include box-shadow (2px);
}
.grd {
@include background(linear-gradient(to bottom, #000, #fff));
}
.brs {
/* Capability border-radius is not prefixed with -moz because 0.25036% of users are affected which is less than the threshold of 9. */
/* Capability border-radius is not prefixed with -ms because 0% of users are affected which is less than the threshold of 9. */
/* Capability border-radius is not prefixed with -o because 0% of users are affected which is less than the threshold of 9. */
/* Capability border-radius is not prefixed with -webkit because 0.1583% of users are affected which is less than the threshold of 9. */
border-radius: 4px;
/* Capability css-boxshadow is not prefixed with -moz because 0.16452% of users are affected which is less than the threshold of 9. */
/* Capability css-boxshadow is not prefixed with -ms because 0% of users are affected which is less than the threshold of 9. */
/* Capability css-boxshadow is not prefixed with -o because 0% of users are affected which is less than the threshold of 9. */
/* Capability css-boxshadow is not prefixed with -webkit because 1.6785% of users are affected which is less than the threshold of 9. */
box-shadow: 2px;
}
.grd {
/* Content for ie 9 omitted.
Minimum support is . */
/* Content for opera 9.5-9.6 omitted.
Minimum support is . */
/* Content for android 2.1 - 3 omitted.
Minimum support is . */
/* Capability css-gradients is not prefixed with -moz because 0.75106% of users are affected which is less than the threshold of 9. */
/* Capability css-gradients is not prefixed with -ms because 0% of users are affected which is less than the threshold of 9. */
/* Capability css-gradients is not prefixed with -o because 0.07115% of users are affected which is less than the threshold of 9. */
/* Capability css-gradients is prefixed with -webkit because 9.61489% of users need it which is more than the threshold of 9%. */
/* Creating new -webkit context. */
background: -webkit-linear-gradient(top, #000000, #ffffff);
background: linear-gradient(to bottom, #000000, #ffffff);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment