_fn.scss
2 years ago
_header.scss
2 years ago
_inputs.scss
2 years 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
46 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 | padding: var(--givewp-spacing-6); |
| 15 | color: #fff; |
| 16 | text-align: center; |
| 17 | |
| 18 | @media screen and (min-width: $desktopMinWidth) { |
| 19 | padding: var(--givewp-spacing-10) var(--givewp-spacing-20); |
| 20 | } |
| 21 | |
| 22 | + .givewp-layouts-form { |
| 23 | border-top-right-radius: 0; |
| 24 | border-top-left-radius: 0; |
| 25 | } |
| 26 | } |
| 27 | |
| 28 | &-headerTitle h2, &-headerDescription { |
| 29 | color: var(--givewp-shades-white); |
| 30 | } |
| 31 | } |
| 32 | |
| 33 | .givewp-form-secure-badge { |
| 34 | display: flex; |
| 35 | gap: var(--givewp-spacing-2); |
| 36 | align-items: center; |
| 37 | width: fit-content; |
| 38 | padding: var(--givewp-spacing-1) var(--givewp-spacing-4); |
| 39 | border-radius: var(--givewp-rounded-full); |
| 40 | background-color: var(--givewp-shades-white); |
| 41 | color: var(--givewp-grey-900); |
| 42 | font-size: 0.875rem; |
| 43 | font-weight: 500; |
| 44 | line-height: 1.43; |
| 45 | } |
| 46 |