Last active
August 29, 2015 13:57
-
-
Save nbatalla03/9594513 to your computer and use it in GitHub Desktop.
This file contains 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
.gradient { | |
background-image: -o-linear-gradient(bottom, #8A858B 0%, #A6A0A7 100%); | |
background-image: -moz-linear-gradient(bottom, #8A858B 0%, #A6A0A7 100%); | |
background-image: -webkit-linear-gradient(bottom, #8A858B 0%, #A6A0A7 100%); | |
background-image: -ms-linear-gradient(bottom, #8A858B 0%, #A6A0A7 100%); | |
background-image: linear-gradient(to bottom, #8A858B 0%, #A6A0A7 100%); | |
} | |
.box { | |
border: 1px solid #aaa; | |
padding: 10px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment