Skip to content

Instantly share code, notes, and snippets.

@Lorezz
Created March 11, 2015 11:18
Show Gist options
  • Save Lorezz/a29c418a2d29f4e108c3 to your computer and use it in GitHub Desktop.
Save Lorezz/a29c418a2d29f4e108c3 to your computer and use it in GitHub Desktop.
Simple CSS Gradient
body{ background: -webkit-linear-gradient(45deg, #085078 10%, #85d8ce 90%);
background: -moz-linear-gradient(45deg, #085078 10%, #85d8ce 90%);
background: -ms-linear-gradient(45deg, #085078 10%, #85d8ce 90%);
background: -o-linear-gradient(45deg, #085078 10%, #85d8ce 90%);
background: linear-gradient(45deg, #085078 10%, #85d8ce 90%);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment