Skip to content

Instantly share code, notes, and snippets.

@robertlyall
Created August 8, 2014 13:37
Show Gist options
  • Select an option

  • Save robertlyall/1a9e5c8e20363057bbae to your computer and use it in GitHub Desktop.

Select an option

Save robertlyall/1a9e5c8e20363057bbae to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
<a class="button" href="javascript: void(0)">Button</a>
// ----
// Sass (v3.3.14)
// Compass (v1.0.0.rc.1)
// ----
body {
font-family: 'Helvetica Neue', sans-serif;
}
$pink: #f62f62;
$white: #ffffff;
.button {
background: $pink;
color: $white;
display: inline-block;
font-weight: 500;
padding: .75em 1.5em;
text-decoration: none;
&:hover {
background: lighten($pink, 10%);
}
&:active {
background: darken($pink, 10%);
}
}
body {
font-family: 'Helvetica Neue', sans-serif;
}
.button {
background: #f62f62;
color: white;
display: inline-block;
font-weight: 500;
padding: .75em 1.5em;
text-decoration: none;
}
.button:hover {
background: #f86087;
}
.button:active {
background: #e80a43;
}
<a class="button" href="javascript: void(0)">Button</a>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment