Skip to content

Instantly share code, notes, and snippets.

@jasonhobbsllc
Created September 10, 2015 18:57
Show Gist options
  • Save jasonhobbsllc/43f4b46972def878cb92 to your computer and use it in GitHub Desktop.
Save jasonhobbsllc/43f4b46972def878cb92 to your computer and use it in GitHub Desktop.
Add button class to older version of Rainmaker Design Templates.
.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