Last active
May 21, 2025 12:00
-
-
Save gicolek/b94f7bdc64fb9111ee91fabe14c79c69 to your computer and use it in GitHub Desktop.
Contact Form 7 Template Blue
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
/** this part of the code makes the background of our template blue **/ | |
.c-custom-template-wrap--blue { | |
background-color: #338cd0; | |
padding: 20px; | |
border-radius: 20px; | |
} | |
/** this part of the code, divides the HTML elements into two groups **/ | |
.c-custom-template-wrap .c-custom-template { | |
display: grid; | |
grid-template-columns: auto auto; | |
grid-gap: 10px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment