Created
June 13, 2014 14:12
-
-
Save yoksel/6ca22d6459b5775a95f6 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.8) | |
// Compass (v1.0.0.alpha.19) | |
// ---- | |
HTML, BODY { | |
height: 100%; | |
} | |
$out: orangered, gold; | |
// this does not work for radial gradient, but it works for linear: | |
$out: append($out, purple, comma); | |
BODY { | |
//background: linear-gradient($out); | |
background: radial-gradient(circle, $out); | |
} |
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
HTML, BODY { | |
height: 100%; | |
} | |
BODY { | |
background: radial-gradient(circle, #ff4500, #ffd700, #800080); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment