Skip to content

Instantly share code, notes, and snippets.

@poteto
Created October 17, 2012 05:41
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 poteto/3903885 to your computer and use it in GitHub Desktop.
Save poteto/3903885 to your computer and use it in GitHub Desktop.
subtle background glow
#content {
width: 800px;
margin: auto;
padding: 100px;
padding-bottom: 60px;
background: -moz-radial-gradient(center,ellipse cover,rgba(255, 255, 255, 0.5) 0,rgba(255, 255, 255, 0) 70%);
background: -webkit-gradient(radial,center center,0px,center center,100%,color-stop(0%,rgba(255, 255, 255, 0.5)),color-stop(70%,rgba(255, 255, 255, 0)));
background: -webkit-radial-gradient(center,ellipse cover,rgba(255, 255, 255, 0.5) 0,rgba(255, 255, 255, 0) 70%);
background: -o-radial-gradient(center,ellipse cover,rgba(255, 255, 255, 0.5) 0,rgba(255, 255, 255, 0) 70%);
background: -ms-radial-gradient(center,ellipse cover,rgba(255, 255, 255, 0.5) 0,rgba(255, 255, 255, 0) 70%);
background: radial-gradient(center,ellipse cover,rgba(255, 255, 255, 0.5) 0,rgba(255, 255, 255, 0) 70%);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment