donate-button.scss
34 lines
| 1 | .givewp-donation-form-link, |
| 2 | .givewp-donation-form-modal__open { |
| 3 | color: #ffffff; |
| 4 | background: var(--givewp-primary-color, #2271b1); |
| 5 | padding: 0.75rem 1.25rem !important; |
| 6 | cursor: pointer; |
| 7 | border: none; |
| 8 | border-radius: 5px; |
| 9 | font-size: 1rem; |
| 10 | font-weight: 500 !important; |
| 11 | text-decoration: none !important; |
| 12 | font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', |
| 13 | sans-serif; |
| 14 | width: 100%; |
| 15 | line-height: 1.5; |
| 16 | transition: all 0.2s ease; |
| 17 | width: 100%; |
| 18 | |
| 19 | &:hover, &:focus, &:active, &:focus-visible { |
| 20 | background-color: color-mix(in srgb, var(--givewp-primary-color, #2271b1), black 20%); |
| 21 | } |
| 22 | } |
| 23 | |
| 24 | .give-change-donation-form-btn { |
| 25 | svg { |
| 26 | margin-top: 3px; |
| 27 | } |
| 28 | } |
| 29 | |
| 30 | .givewp-default-form-toggle { |
| 31 | margin-top: var(--givewp-spacing-4); |
| 32 | } |
| 33 | |
| 34 |