Created
February 10, 2016 19:25
-
-
Save Fresh-Dev/ae0837798a6d6390f873 to your computer and use it in GitHub Desktop.
CSS3 Gradients Template
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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