Created
November 26, 2013 17:36
-
-
Save trevor-atlas/7662600 to your computer and use it in GitHub Desktop.
Better HR tag styling
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
hr.carved { | |
float: none; | |
width: 100%; | |
height: 2px; | |
margin: 1.4em 0; | |
border: none; | |
background: #ddd; | |
background-image: -webkit-gradient( | |
linear, | |
left top, | |
left bottom, | |
color-stop(0.5, rgb(221,221,221)), | |
color-stop(0.5, rgb(255,255,255)) | |
); | |
background-image: -moz-linear-gradient( | |
center top, | |
rgb(221,221,221) 50%, | |
rgb(255,255,255) 50% | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment