Created
May 28, 2015 18:31
-
-
Save hijonathan/43f462c3b499ea2de8af to your computer and use it in GitHub Desktop.
Appcues button styling
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
| /* Set the color of the back buttons to Appcues blue. */ | |
| .appcues-button { | |
| background-color: #4baad3; | |
| } | |
| .appcues-button:hover { | |
| background-color: #247294; /* A bit darker. */ | |
| } | |
| .appcues-button.appcues-button-success { | |
| background-color: #EB6E5E; /* Hotspot red! */ | |
| } | |
| .appcues-button.appcues-button-success:hover { | |
| background-color: #E54531; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment