Created
January 14, 2012 22:08
-
-
Save seanbehan/1613066 to your computer and use it in GitHub Desktop.
gradient h3 tag
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
| h3 { | |
| text-align:left; | |
| padding:8px; | |
| border-bottom:solid 2px #333; | |
| font-weight:400; | |
| font-size:18px; | |
| padding:10px 20px; | |
| background:#f4f4f4; | |
| background:-webkit-gradient(linear,left top,left bottom,from(#f4f4f4),to(#e8e8e8)); | |
| background:-moz-linear-gradient(top,#f4f4f4,#e8e8e8); | |
| background:linear-gradient(top,#f4f4f4,#e8e8e8); | |
| border-bottom:1px solid #d1d1d1; | |
| color:#999; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment