Last active
October 8, 2019 19:55
-
-
Save imfaisalkh/de4779a25cea630496288ca2bcb70bec to your computer and use it in GitHub Desktop.
Apply modern form styling to regular forms
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
/*--------------------------------------------------------- | |
Styled Form (replacer "#wppb-register-user-client" with your form ID) | |
-------------------------------------------------------- */ | |
form#wppb-register-user-client input:not([type="submit"]), | |
form#wppb-register-user-client select, | |
form#wppb-register-user-client textarea { | |
height: 72px; | |
padding: 3.2rem 2rem 1rem 2rem !important; | |
} | |
form#wppb-register-user-client textarea { height: 150px; } | |
form#wppb-register-user-client select { | |
background-position: calc(100% - 15px) 40px; | |
} | |
form#wppb-register-user-client label { | |
position: relative; | |
line-height: 1; | |
padding: 0 20px; | |
cursor: pointer; | |
z-index: 500; | |
letter-spacing: 0.2px !important; | |
transform: translateY(28px); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment