Last active
July 2, 2024 09:54
-
-
Save gicolek/69cf2385f5790de894cf32838a5eac88 to your computer and use it in GitHub Desktop.
Contact Form 7 Label
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
.wpcf7-styled { | |
padding: 25px; | |
background: #fafafa; | |
border-radius: 25px; | |
} | |
.wpcf7-styled .wpcf7-radio input[type="radio"] { | |
display: none; | |
opacity: 0; | |
} | |
.wpcf7-styled .wpcf7-radio input[type="radio"]:checked+span { | |
background: #c3c3c3; | |
color: white; | |
} | |
.wpcf7-styled .wpcf7-radio label span { | |
padding: 5px; | |
border: 1px solid black; | |
cursor: pointer; | |
z-index: 90; | |
display: flex; | |
align-items: center; | |
justify-content: center; | |
font-weight: bold; | |
border-radius: 5px; | |
color: black; | |
text-transform: uppercase; | |
min-width: 100%; | |
} | |
.wpcf7-styled .wpcf7-form-control.wpcf7-radio { | |
width: 100% !important; | |
display: grid; | |
grid-template-columns: auto auto auto; | |
padding: 0 !important; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment