Created
June 8, 2015 00:08
-
-
Save cimmanon/de8fbdd66a5f75837f93 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.4.13) | |
// Compass (v1.0.3) | |
// ---- | |
.foo { | |
background-image: -moz-linear-gradient(left,rgba(0,0,0,0) 0,#000 100%); | |
background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0%,rgba(0,0,0,0)),color-stop(100%,#000)); | |
background-image: -webkit-linear-gradient(left,rgba(0,0,0,0) 0,#000 100%); | |
background-image: -o-linear-gradient(left,rgba(0,0,0,0) 0,#000 100%); | |
background-image: -ms-linear-gradient(left,rgba(0,0,0,0) 0,#000 100%); | |
background-image: linear,left,rgba(0,0,0,0) 0,black 100%; | |
} |
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: -moz-linear-gradient(left, transparent 0, #000 100%); | |
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, transparent), color-stop(100%, #000)); | |
background-image: -webkit-linear-gradient(left, transparent 0, #000 100%); | |
background-image: -o-linear-gradient(left, transparent 0, #000 100%); | |
background-image: -ms-linear-gradient(left, transparent 0, #000 100%); | |
background-image: linear, left, transparent 0, black 100%; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment