Created
April 7, 2017 05:10
-
-
Save harrisonlingren/39c00189405ada9b2dd2516fd388af00 to your computer and use it in GitHub Desktop.
nice blue gradient from twitter
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
<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