Skip to content

Instantly share code, notes, and snippets.

@trevor-atlas
Created November 26, 2013 17:36
Show Gist options
  • Save trevor-atlas/7662600 to your computer and use it in GitHub Desktop.
Save trevor-atlas/7662600 to your computer and use it in GitHub Desktop.
Better HR tag styling
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