Last active
August 29, 2015 14:11
-
-
Save cimmanon/e36efdff935f70cc2215 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
<button>Foo</button> |
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.9) | |
// Compass (v1.0.1) | |
// Bourbon (v4.0.2) | |
// ---- | |
@import "bourbon/bourbon"; | |
$foobar: #D8D8D8; | |
$lightFoo: lighten($foobar, 10%); | |
body { | |
@include linear-gradient($lightFoo 0%, $foobar 10%, $foobar 90%, $lightFoo 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
body { | |
background-color: #f2f2f2; | |
background-image: -webkit-linear-gradient(#f2f2f2 0%, #D8D8D8 10%, #D8D8D8 90%, #f2f2f2 100%); | |
background-image: linear-gradient(#f2f2f2 0%, #D8D8D8 10%, #D8D8D8 90%, #f2f2f2 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
<button>Foo</button> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment