Last active
January 22, 2021 18:36
-
-
Save JohnnyWalkerDigital/3f672560a412fc4e78314bf9f6bc726a to your computer and use it in GitHub Desktop.
MailChimp - Embedded Signup Form CSS Fields
This file contains 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
// https://mailchimp.com/help/css-hooks-for-customizing-forms | |
// Container for form | |
#mc_embed_signup { | |
#mc-embedded-subscribe-form { | |
} | |
div.mc-field-group { | |
input { | |
} | |
select { | |
} | |
.asterisk { | |
} | |
.input-group { | |
strong { | |
} | |
ul { | |
} | |
ul li { | |
} | |
label { | |
} | |
input { | |
} | |
} | |
} | |
input.button { | |
} | |
.indicates-required { | |
} | |
} | |
// Container for error responses. | |
#mce-responses { | |
div { | |
.response { | |
} | |
.mce_inline_error { | |
} | |
} | |
input { | |
.mce_inline_error { | |
} | |
} | |
#mce-error-response { | |
} | |
#mce-success-response { | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment