Last active
August 27, 2018 00:26
-
-
Save robhob/8119131274f731a85012b967809fc498 to your computer and use it in GitHub Desktop.
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
/* Change background and text color */ | |
.caldera-grid .btn { | |
background-color:#BD6983 !important; | |
color:white !important; | |
font-weight: 900; | |
} | |
/* Change background and text color on hover */ | |
.caldera-grid .btn:hover { | |
background-color:white !important; | |
color:#BD6983 !important; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This works well but how about an example targeting a specific button only? Thanks.