Created
August 19, 2014 17:22
-
-
Save fk/507819c58866f2d68eb3 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
<div class="gradient"></div> |
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
// ---- | |
// Sass (v3.3.14) | |
// Compass (v1.0.0) | |
// ---- | |
@import compass | |
$gradientbg: #4c628a | |
html, | |
body | |
background: #283348 | |
padding: 0 | |
margin: 0 | |
html, | |
body, | |
.gradient | |
height: 100% | |
width: 100% | |
.gradient | |
+background(radial-gradient(50% 0, circle, rgba($gradientbg, .75) 0, rgba($gradientbg, 0) 500px)) |
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
html, | |
body { | |
background: #283348; | |
padding: 0; | |
margin: 0; | |
} | |
html, | |
body, | |
.gradient { | |
height: 100%; | |
width: 100%; | |
} | |
.gradient { | |
background: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PHJhZGlhbEdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgY3g9IjUwJSIgY3k9IjAiIHI9IjUwMCUiPjxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9IiM0YzYyOGEiIHN0b3Atb3BhY2l0eT0iMC43NSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzRjNjI4YSIgc3RvcC1vcGFjaXR5PSIwLjAiLz48L3JhZGlhbEdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA='); | |
background: -moz-radial-gradient(50% 0, circle, rgba(76, 98, 138, 0.75) 0%, rgba(76, 98, 138, 0) 500px); | |
background: -webkit-radial-gradient(50% 0, circle, rgba(76, 98, 138, 0.75) 0%, rgba(76, 98, 138, 0) 500px); | |
background: radial-gradient(circle at 50% 0, rgba(76, 98, 138, 0.75) 0%, rgba(76, 98, 138, 0) 500px); | |
} |
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
<div class="gradient"></div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment