Skip to content

Instantly share code, notes, and snippets.

@jonthewayne
Created March 25, 2014 04:59
Show Gist options
  • Select an option

  • Save jonthewayne/9755506 to your computer and use it in GitHub Desktop.

Select an option

Save jonthewayne/9755506 to your computer and use it in GitHub Desktop.
love this css gradient background: http://app.modnotebooks.com/login
.coming-soon-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: #233236;
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #233236), color-stop(100%, #658d8f));
background-image: -webkit-linear-gradient(-415deg, #233236 0%, #658d8f 100%);
background-image: linear-gradient(145deg, #233236 0%,#658d8f 100%);
z-index: 999999;
text-align: center;
display: table;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment