Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dudumanbogdan/012bfbcadd019cd4bf70af6a4ba616d7 to your computer and use it in GitHub Desktop.
Save dudumanbogdan/012bfbcadd019cd4bf70af6a4ba616d7 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
<button type="button">I look amazing</button>
// ----
// Sass (v3.4.4)
// Compass (v1.0.1)
// ----
$buttonColor: #2ecc71;
$buttonDark: darken($buttonColor, 10%);
$buttonDarker: darken($buttonDark, 10%);
button {
background: $buttonColor;
border-radius: 3px;
box-shadow: 0px 5px 0px $buttonDark;
border: 0;
color: white;
font-size: 17px;
padding: 10px 30px;
display: inline-block;
outline: 0;
&:hover {
background: $buttonDark;
box-shadow: 0px 5px 0px $buttonDarker;
}
&:active {
box-shadow: none;
margin-top: 5px;
}
}
body {
text-align: center;
padding-top: 100px;
}
button {
background: #2ecc71;
border-radius: 3px;
box-shadow: 0px 5px 0px #25a25a;
border: 0;
color: white;
font-size: 17px;
padding: 10px 30px;
display: inline-block;
outline: 0;
}
button:hover {
background: #25a25a;
box-shadow: 0px 5px 0px #1b7943;
}
button:active {
box-shadow: none;
margin-top: 5px;
}
body {
text-align: center;
padding-top: 100px;
}
<button type="button">I look amazing</button>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment