Created
January 10, 2024 19:53
-
-
Save mateusz-zadorozny/374cddb47f69cab9546f1a345d732959 to your computer and use it in GitHub Desktop.
Css for Kadence buttons in GeneratePress - straight angle
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.ghost, .button.ghost:visited { | |
background: transparent; | |
border: 2px solid var(--button); | |
color: #000 | |
} | |
.button.ghost:hover, | |
.button.ghost:active { | |
background: var(--button-hover); | |
color: #FFF; | |
border: 2px solid var(--button-hover); | |
} | |
.button { | |
background: var(--button); | |
border: 2px solid var(--button); | |
color: #FFF; | |
} | |
.button:hover, .button:active { | |
background: var(--button-hover); | |
border: 2px solid var(--button-hover); | |
} | |
.wp-block-button__link { | |
border-radius: 0px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment