Created
January 18, 2013 20:23
-
-
Save steinsag/4568202 to your computer and use it in GitHub Desktop.
Some simple CSS to define a background gradient.
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
header nav { | |
position: relative; | |
border-top: 1px solid #73BBCF; | |
border-bottom: 1px solid #73BBCF; | |
} | |
header nav { | |
padding: 12px 0; | |
font-weight: bold; | |
font-size: 0.875em; | |
background-image: -moz-linear-gradient(top, #008DC2 0%, white 25%); | |
background-image: -webkit-linear-gradient(top, #008DC2 0%, white 25%); | |
background-image: -ms-linear-gradient(top, #008DC2 0%, white 25%); | |
background-image: -o-linear-gradient(top, #008DC2 0%, white 25%); | |
background-image: linear-gradient(top, #008DC2 0%, white 25%); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment