Created
September 10, 2015 18:57
-
-
Save jasonhobbsllc/43f4b46972def878cb92 to your computer and use it in GitHub Desktop.
Add button class to older version of Rainmaker Design Templates.
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
.button { | |
-webkit-transition:all .2s ease-in-out; | |
-moz-transition:all .2s ease-in-out; | |
-ms-transition:all .2s ease-in-out; | |
-o-transition:all .2s ease-in-out; | |
transition:all .2s ease-in-out; | |
background-color:#00a99d; | |
border:0; | |
border-radius:3px; | |
color:#fff; | |
cursor:pointer; | |
font-size:18px; | |
font-weight:400; | |
letter-spacing:1px; | |
padding:20px; | |
text-transform:uppercase; | |
-webkit-font-smoothing:antialiased | |
} | |
.button:hover { | |
background-color:#00baad; | |
color:#fff | |
} | |
.entry-content .button:hover { | |
color:#fff | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment