Created
January 27, 2016 13:54
-
-
Save dennisv/2c61a16422b08fa49100 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains 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
// ---- | |
// libsass (v3.3.2) | |
// ---- | |
@import "bourbon/bourbon"; | |
.box { | |
@include background(linear-gradient(red, green) left repeat); | |
@include background(linear-gradient(red, green) left repeat, radial-gradient(red, orange)); | |
@include background(url("/images/a.png"), linear-gradient(red, green), center no-repeat orange scroll); | |
} |
This file contains 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
.box { | |
background: -webkit-linear-gradient(red, green); | |
background: linear-gradient(red, green); | |
background: -webkit-linear-gradient(red, green), -webkit-radial-gradient(red, orange); | |
background: linear-gradient(red, green), radial-gradient(red, orange); | |
background: url("/images/a.png"), -webkit-linear-gradient(red, green), center; | |
background: url("/images/a.png"), linear-gradient(red, green), center; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment