Skip to content

Instantly share code, notes, and snippets.

@ezos86
Created December 16, 2014 22:05
Show Gist options
  • Save ezos86/cf66831003a509008694 to your computer and use it in GitHub Desktop.
Save ezos86/cf66831003a509008694 to your computer and use it in GitHub Desktop.
Simple Linear Gradient
<section class="content">
<h1>Simple Linear Gradient Example</h1>
</section>
html, body{
background: -webkit-linear-gradient( bottom , #3aa0d1, #3ad2d1);
background: linear-gradient(to top, #3aa0d1, #3ad2d1);
height:100%;
width:100%;
}
h1{
text-align:Center;
color:#f1f1f1;
text-shadow:0 2px 3px #333;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment