Created
March 27, 2014 20:18
-
-
Save plapier/9817554 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
<div>foobar</div> |
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.3.4) | |
// Compass (v1.0.0.alpha.18) | |
// Bourbon (v3.2.0.beta.1.a) | |
// ---- | |
@import "bourbon/bourbon"; | |
div { | |
@include linear-gradient(#341533 0%, #2a1129 100%, $fallback: red); | |
} | |
div { | |
@include background(linear-gradient(#341533 0%, #2a1129 100%), $fallback: #341533); | |
} |
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
div { | |
background-color: red; | |
background-image: -webkit-linear-gradient(#341533 0%, #2a1129 100%); | |
background-image: linear-gradient(#341533 0%, #2a1129 100%); | |
} | |
div { | |
background-color: #341533; | |
background: -webkit-linear-gradient( #341533 0%, #2a1129 100%); | |
background: linear-gradient( #341533 0%, #2a1129 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
<div>foobar</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment