Skip to content

Instantly share code, notes, and snippets.

@harrisonlingren
Created April 7, 2017 05:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save harrisonlingren/39c00189405ada9b2dd2516fd388af00 to your computer and use it in GitHub Desktop.
Save harrisonlingren/39c00189405ada9b2dd2516fd388af00 to your computer and use it in GitHub Desktop.
nice blue gradient from twitter
<style>
div { width:100%; height:100%; }
.layer-1 { width:1500px; height:500px; }
.layer-1{
background: -moz-linear-gradient(140deg, rgba(105,255,255,1) 0%, rgba(1,68,159,1) 100%);
background: -webkit-linear-gradient(140deg, rgba(105,255,255,1) 0%, rgba(1,68,159,1) 100%);
background: -o-linear-gradient(140deg, rgba(105,255,255,1) 0%, rgba(1,68,159,1) 100%);
background: -ms-linear-gradient(140deg, rgba(105,255,255,1) 0%, rgba(1,68,159,1) 100%);
background: linear-gradient(310deg, rgba(105,255,255,1) 0%, rgba(1,68,159,1) 100%);
}
</style>
<div class='layer-1' >
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment