Skip to content

Instantly share code, notes, and snippets.

@sajhd
Last active August 29, 2015 14:18
Show Gist options
  • Select an option

  • Save sajhd/f5acd42bafdb6d2707ed to your computer and use it in GitHub Desktop.

Select an option

Save sajhd/f5acd42bafdb6d2707ed to your computer and use it in GitHub Desktop.
Button Mixin
/* set colour(s) */
$primary : red;
/* button */
@mixin button($color: $primary, $text-color: #fff, $radius: 3px) {
font-size: 1.6em;
font-weight: 700;
line-height: 50px;
position: relative;
display: block;
overflow: hidden;
width: 100%;
height: 50px;
margin: 0 auto;
cursor: pointer;
text-align: center;
text-decoration: none;
letter-spacing: .025em;
color: $text-color;
outline: none;
background: $color;
border-radius: $radius;
&:hover {
text-decoration: none;
background: saturate($color, 10%);
}
&:active {
position: relative;
top: 1px;
color: $text-color;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment