_button.scss
4 years ago
_checkbox.scss
4 years ago
_currencyswitcher.scss
4 years ago
_donate-now.scss
4 years ago
_donation-amount.scss
4 years ago
_donation-summary.scss
4 years ago
_errors-notices.scss
3 years ago
_ffm.scss
4 years ago
_fn.scss
4 years ago
_funds.scss
4 years ago
_grid.scss
4 years ago
_header.scss
4 years ago
_icons.scss
4 years ago
_label.scss
4 years ago
_legacy-consumer.scss
4 years ago
_modal.scss
3 years ago
_page.scss
4 years ago
_payment-details.scss
3 years ago
_personal-info.scss
3 years ago
_radio.scss
4 years ago
_receipt.scss
4 years ago
_reset.scss
4 years ago
_section.scss
4 years ago
_stripe-checkout-modal.scss
4 years ago
_terms.scss
4 years ago
_text-input.scss
4 years ago
_tooltip.scss
4 years ago
_tributes.scss
4 years ago
_variables.scss
4 years ago
form.scss
2 years ago
variables.php
4 years ago
_page.scss
61 lines
| 1 | @use 'fn'; |
| 2 | |
| 3 | body { |
| 4 | display: flex; |
| 5 | justify-content: center; |
| 6 | font-family: var(--give-primary-font, inherit), sans-serif; |
| 7 | color: #444; |
| 8 | } |
| 9 | |
| 10 | #give-receipt, |
| 11 | .give-form-wrap { |
| 12 | inline-size: min(100%, $containerMaxWidth); |
| 13 | } |
| 14 | |
| 15 | .give-container-boxed { |
| 16 | .give-form-wrap { |
| 17 | background-color: #fff; |
| 18 | |
| 19 | @media screen and (min-width: $desktopMinWidth) { |
| 20 | border-radius: 0.5rem; |
| 21 | box-shadow: 0 0.125rem 0.3125rem rgba(0, 0, 0, 0.3); |
| 22 | } |
| 23 | } |
| 24 | |
| 25 | @media screen and (min-width: $desktopMinWidth) { |
| 26 | padding: 1rem; |
| 27 | } |
| 28 | } |
| 29 | |
| 30 | .give-form { |
| 31 | border-radius: inherit; |
| 32 | } |
| 33 | |
| 34 | .give-form-closed { |
| 35 | margin: 1rem; |
| 36 | padding-block: fn.scaleBetween(4rem, 8rem); |
| 37 | padding-inline: fn.scaleBetween(2rem, 4rem); |
| 38 | display: flex; |
| 39 | justify-content: center; |
| 40 | box-shadow: 0 0 0.5em rgb(0 0 0 / 0.1); |
| 41 | --tint-color: rgba(var(--give-header-background-color--for-rgb), 0.75); |
| 42 | --tint: linear-gradient(to right, var(--tint-color), var(--tint-color)); |
| 43 | background-color: rgb(var(--give-header-background-color--for-rgb)); |
| 44 | /* translucent tint gradient over image */ |
| 45 | background-image: var(--tint, linear-gradient(transparent, transparent)), var(--give-header-background-image); |
| 46 | background-size: cover; |
| 47 | background-position: center; |
| 48 | border-radius: 0.5rem; |
| 49 | |
| 50 | font-size: fn.scaleBetween(1.125rem, 1.5rem); |
| 51 | |
| 52 | & > p { |
| 53 | color: #fff; |
| 54 | text-shadow: 0 0.07em 0.14em rgba(0, 0, 0, 0.15); |
| 55 | line-height: 1.4; |
| 56 | font-weight: 500; |
| 57 | max-inline-size: 40ch; |
| 58 | text-align: center; |
| 59 | } |
| 60 | } |
| 61 |