Skip to content

Instantly share code, notes, and snippets.

@epan
Created April 16, 2014 22:20
Show Gist options
  • Save epan/10938653 to your computer and use it in GitHub Desktop.
Save epan/10938653 to your computer and use it in GitHub Desktop.
Celery v1 Shop Button CSS
<style>
a.btn.btn-green, button.btn.btn-green, button[type=submit].btn-green, button[type=reset].btn-green {
background: #3aa63b;
color: #fff;
border-color: #333;
}
button.btn.btn-green:hover {
background: #51c252;
}
a.btn, button.btn, button[type=submit], button[type=reset] {
-webkit-border-radius: 6px;
-moz-border-radius: 6px;
border-radius: 6px;
display: inline-block;
font-family: 'proxima-nova',sans-serif;
font-size: 14px;
font-weight: 600;
line-height: 20px;
min-height: 30px;
color: #fff;
text-align: center;
text-shadow: none;
text-decoration: none;
vertical-align: middle;
cursor: pointer;
background: #777;
border: 0 none;
padding: 7px 12px;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
-webkit-transition: .1s ease-in background-color,0.1s ease-in border-color;
-moz-transition: .1s ease-in background-color,0.1s ease-in border-color;
transition: .1s ease-in background-color,0.1s ease-in border-color;
}
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment