Skip to content

Instantly share code, notes, and snippets.

@thisandagain
Last active August 29, 2015 14:14
Show Gist options
  • Save thisandagain/a6f3f9c3f3678611d34a to your computer and use it in GitHub Desktop.
Save thisandagain/a6f3f9c3f3678611d34a to your computer and use it in GitHub Desktop.
Button Styles
<!--<link rel="stylesheet" href="//code.cdn.mozilla.net/fonts/fira.css">-->
<button class="btn">Open My App</button>
.btn {
border: medium none;
outline: medium none;
font-family: "Fira Sans", sans-serif;
font-size: 14px;
line-height: 1;
cursor: pointer;
box-sizing: border-box;
padding: 15px 100px;
max-width: 300px;
display: inline-block;
margin: 15px 30px;
font-weight: 400;
position: relative;
color: white;
background-color: #64A8EE;
border-radius: 4px;
box-shadow: 0px 3px #518AC2;
&:active {
background-color: #5C9CDB;
box-shadow: inset 0px 2px 5px rgba(0,0,0,0.2);
top: 3px;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment