Skip to content

Instantly share code, notes, and snippets.

@kublaj
Forked from jhafner/gradients.css
Created May 31, 2016 11:02
Show Gist options
  • Save kublaj/8d5f30fb06fea8880acda9f2d894b14b to your computer and use it in GitHub Desktop.
Save kublaj/8d5f30fb06fea8880acda9f2d894b14b to your computer and use it in GitHub Desktop.
CSS3 Gradients Template.
#colorbox {
background: #629721;
background-image: -webkit-gradient(linear, left top, left bottom, from(#83b842), to(#629721));
background-image: -webkit-linear-gradient(top, #83b842, #629721);
background-image: -moz-linear-gradient(top, #83b842, #629721);
background-image: -ms-linear-gradient(top, #83b842, #629721);
background-image: -o-linear-gradient(top, #83b842, #629721);
background-image: linear-gradient(top, #83b842, #629721);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment