Created
March 10, 2014 14:31
-
-
Save nhunzaker/9465991 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.3.0) | |
// Compass (v1.0.0.alpha.18) | |
// ---- | |
@import "compass"; | |
body { | |
@include background-image(linear-gradient(rgba(#000, 0.03), rgba(#000, 0.3))); | |
} |
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
body { | |
background-image: -moz-linear-gradient(rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.3)); | |
background-image: -o-linear-gradient(rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.3)); | |
background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.3)); | |
background-image: linear-gradient(rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.3)); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment