Skip to content

Instantly share code, notes, and snippets.

@fdogarro
Created January 2, 2014 22:46
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fdogarro/76788700a4728c425fc9 to your computer and use it in GitHub Desktop.
Save fdogarro/76788700a4728c425fc9 to your computer and use it in GitHub Desktop.
Code from CSS Button Challenge
a {
margin: 20px;
font-family: arial;
text-transform: uppercase;
display: inline-block;
font: bold 150% sans-serif;
text-decoration:none;
text-align: center;
border-radius: 5px;
padding: 12px 24px;
box-shadow: 0px 0px 4px #222, 0px 0px 0px 9px #CCC,0px 0px 0px 11px #FFF, 0px 0px 0px 13px #555, 0px 0px 2px 10px #777, 0px 0px 30px black;
color:#333;
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #EEE), color-stop(100%, #999));
}
a:before, a:after {
content: "\2605";
font-size: .75em; color: #777;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment