_fn.scss
2 years ago
_header.scss
2 years ago
_inputs.scss
1 year ago
_layouts.scss
2 years ago
_reset.scss
2 years ago
_sections.scss
2 years ago
_utilities.scss
2 years ago
_variables.scss
2 years ago
main.scss
2 years ago
_header.scss
38 lines
| 1 | @use 'fn'; |
| 2 | |
| 3 | .givewp-layouts { |
| 4 | &-header { |
| 5 | width: 100%; |
| 6 | border-top-left-radius: 0.5rem; |
| 7 | border-top-right-radius: 0.5rem; |
| 8 | box-shadow: var(--givewp-shadow-xs); |
| 9 | background-color: var(--givewp-primary-color); |
| 10 | display: flex; |
| 11 | flex-direction: column; |
| 12 | align-items: center; |
| 13 | gap: var(--givewp-spacing-6); |
| 14 | color: #fff; |
| 15 | text-align: center; |
| 16 | |
| 17 | + .givewp-layouts-form { |
| 18 | border-top-right-radius: 0; |
| 19 | border-top-left-radius: 0; |
| 20 | } |
| 21 | } |
| 22 | } |
| 23 | |
| 24 | .givewp-form-secure-badge { |
| 25 | display: flex; |
| 26 | gap: var(--givewp-spacing-2); |
| 27 | align-items: center; |
| 28 | width: fit-content; |
| 29 | padding: var(--givewp-spacing-1) var(--givewp-spacing-4); |
| 30 | border-radius: var(--givewp-rounded-full); |
| 31 | background-color: var(--givewp-shades-white); |
| 32 | color: var(--givewp-grey-900); |
| 33 | font-size: 0.875rem; |
| 34 | font-weight: 500; |
| 35 | line-height: 1.43; |
| 36 | margin: 0 auto; |
| 37 | } |
| 38 |