Skip to content

Instantly share code, notes, and snippets.

@groenewege
Created October 26, 2012 08:31
Show Gist options
  • Save groenewege/3957627 to your computer and use it in GitHub Desktop.
Save groenewege/3957627 to your computer and use it in GitHub Desktop.
css - gradient
div[class*="gradient"]{
background-color: #DEB8A0;
box-shadow: 0 0 0 1px #a27b62;
}
.gradient-light-linear {
background-image: linear-gradient(rgba(255,255,255,.5), rgba(255,255,255,0));
}
.gradient-dark-linear {
background-image: linear-gradient(rgba(0,0,0,.25), rgba(0,0,0,0));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment