Created
May 9, 2014 20:00
-
-
Save alienresident/c7332196b5a25ed47cec to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ---- | |
// Sass (v3.2.19) | |
// Compass (v) | |
// ---- | |
@import "compass"; | |
$repeating-linear-gradient: repeating-linear-gradient(#ededed, #ededed 33px, #d4d4d4 33px, #d4d4d4 38px); | |
.foo { | |
@include experimental-value(background-image, $repeating-linear-gradient, false, true, false, false); | |
} | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.foo { | |
background-image: -webkit-repeating-linear-gradient(#ededed, #ededed 33px, #d4d4d4 33px, #d4d4d4 38px); | |
background-image: repeating-linear-gradient(#ededed, #ededed 33px, #d4d4d4 33px, #d4d4d4 38px); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment