Last active
August 8, 2022 20:47
-
-
Save MariaJackson1/e90e2a72e9a788ab32813d44bcb8ea33 to your computer and use it in GitHub Desktop.
Give Donation Form
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
| /* =============== Give Donation Form ============= */ | |
| button.give-btn.give-btn-modal { | |
| background: #009966; | |
| font-size: 16px; | |
| color: #fff; | |
| padding: 15px 30px; | |
| border-radius: 4px; | |
| border-color: transparent; | |
| } | |
| #give_error_success.give_notices.give_errors { | |
| font-family: 'Playfair Display', serif; | |
| font-size: 24px; | |
| font-weight: bold; | |
| color: #010203; | |
| text-align: center; | |
| } | |
| p.give_error.give_notice.give_success { | |
| margin-bottom: 0; | |
| border-color: transparent; | |
| } | |
| table#give_donation_receipt.give-table { | |
| margin-top: 0; | |
| border-top: 5px solid #009966; | |
| } | |
| .give_success:before { | |
| background-color: #009966; | |
| } | |
| /** | |
| * Horizontally Center the Give Form | |
| * | |
| */ | |
| .give-form-wrap { | |
| text-align: center; | |
| } | |
| .give-donation-amount { | |
| margin: 0 auto; | |
| display: inline-block; | |
| } | |
| /*If the form has multi-level buttons*/ | |
| #give-donation-level-button-wrap>li { | |
| float: none; | |
| display: inline-block; | |
| } | |
| h2.give-form-title { | |
| text-align: center; | |
| } | |
| input#give-purchase-button.give-submit.give-btn { | |
| background: #009966; | |
| color: #fff; | |
| font-size: 16px; | |
| padding: 15px 30px; | |
| border-radius: 4px; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment