Skip to content

Instantly share code, notes, and snippets.

@janv
Created July 4, 2012 20:28
Show Gist options
  • Select an option

  • Save janv/3049390 to your computer and use it in GitHub Desktop.

Select an option

Save janv/3049390 to your computer and use it in GitHub Desktop.
SASS Button Link
a:hover
-moz-box-shadow: inset 0px 1px 0px 0px #ffffff
-webkit-box-shadow: inset 0px 1px 0px 0px #ffffff
box-shadow: inset 0px 1px 0px 0px #ffffff
background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #ededed), color-stop(1, #dfdfdf) )
background: -moz-linear-gradient( center top, #ededed 5%, #dfdfdf 100% )
//filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ededed', endColorstr='#dfdfdf')
background-color: #ededed
-moz-border-radius: 3px
-webkit-border-radius: 3px
border-radius: 3px
border: 1px solid #dcdcdc
color: black
padding: 0 3px
margin: 0 -4px
text-shadow: 1px 1px 0px silver
a:active
background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #dfdfdf), color-stop(1, #ededed) )
background: -moz-linear-gradient( center top, #dfdfdf 5%, #ededed 100% )
//filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#dfdfdf', endColorstr='#ededed')
background-color: #dfdfdf
position: relative
top: 1px
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment