Skip to content

Instantly share code, notes, and snippets.

@holasnic
Created January 20, 2015 00:43
Show Gist options
  • Save holasnic/cf49be9505105bbb03fc to your computer and use it in GitHub Desktop.
Save holasnic/cf49be9505105bbb03fc to your computer and use it in GitHub Desktop.
Snowbird Button
.buttonoval {
display: block;
background-color: rgba(255, 255, 255, .0);;
text-align: center;
color: #009bd1;
width: 107px;
height: 40px;
margin: 60px auto 0 auto;
border-radius: 31px;
border: 1px solid #d4d4d4;
transition: all .6s ease-in-out;
-o-transition: all .6s ease-in-out;
-moz-transition: all .6s ease-in-out;
-webkit-transition: all .6s ease-in-out;
-webkit-font-smoothing: antialiased;
}
.buttonoval .text {
font-family: 'Proxima Nova', sans-serif;
font-size:13px;
font-weight: bold;
letter-spacing: ;
text-transform: uppercase;
text-align: center;
margin: auto;
position: relative;
top: 50%;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
}
.buttonoval:hover {
background-color: rgba(240, 249, 252, 1);;
cursor: pointer;
border: 1px solid #009bd1;
border-radius: 3px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment