Last active
August 29, 2015 14:14
-
-
Save thisandagain/a6f3f9c3f3678611d34a to your computer and use it in GitHub Desktop.
Button Styles
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!--<link rel="stylesheet" href="//code.cdn.mozilla.net/fonts/fira.css">--> | |
<button class="btn">Open My App</button> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.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