- Log into Wordress
- Then click customize > additional CSS
- Copy and Paste the CSS Code into the textbox
Last active
October 2, 2020 18:48
-
-
Save ano/837d584cb6738e24a093b144c7ae7cbd to your computer and use it in GitHub Desktop.
Wordpress: Formidable Form Twenty Twenty Theme CSS Style
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
| /* Formidable Styles - Twenty Twenty */ | |
| div.frm_forms form { | |
| width: max-content; | |
| min-width: 780px; | |
| } | |
| label, .frm_primary_label { | |
| display: block; | |
| font-size: 2.6rem; | |
| font-weight: 600; | |
| margin: 2rem 0 0.5rem 0; | |
| } | |
| span.frm_required { | |
| color: #CD2653; | |
| } | |
| div.frm_description { | |
| font-size: 0.8em; | |
| color: #777; | |
| } | |
| h3.frm_pos_top, h3.frm_form_title { | |
| margin: 0.4em 0 0.2em; | |
| } | |
| form select { | |
| min-width: 200px; | |
| height: 2.4em; | |
| border-color: #dcd7ca; | |
| } | |
| a.frm_button { | |
| padding: 0.5em 1em; | |
| border: 2px #cd2653 solid; | |
| margin: 1em 0; | |
| text-decoration: none; | |
| } | |
| div.frm_radio label { | |
| font-family: "Inter var", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif; | |
| font-size: 0.8em; | |
| color: #777; | |
| } | |
| .frm_dropzone.frm_single_upload { | |
| max-width: unset; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment