styles.scss
56 lines
| 1 | .givewp-campaign-goal { |
| 2 | display: flex; |
| 3 | flex-direction: column; |
| 4 | gap: 0.5rem; |
| 5 | padding-bottom: 1rem; |
| 6 | |
| 7 | &__container { |
| 8 | display: flex; |
| 9 | flex-direction: row; |
| 10 | justify-content: space-between; |
| 11 | |
| 12 | &-item { |
| 13 | display: flex; |
| 14 | flex-direction: column; |
| 15 | gap: 0.2rem; |
| 16 | |
| 17 | span { |
| 18 | text-transform: uppercase; |
| 19 | font-size: 12px; |
| 20 | line-height: 1.5; |
| 21 | font-weight: 600; |
| 22 | letter-spacing: 0.48px; |
| 23 | color: var(--givewp-neutral-500); |
| 24 | } |
| 25 | |
| 26 | strong { |
| 27 | font-size: 20px; |
| 28 | color: var(--givewp-neutral-900); |
| 29 | font-weight: 600; |
| 30 | line-height: 1.6; |
| 31 | } |
| 32 | } |
| 33 | } |
| 34 | |
| 35 | &__progress-bar { |
| 36 | display: flex; |
| 37 | |
| 38 | &-container { |
| 39 | display: flex; |
| 40 | height: 8px; |
| 41 | flex-grow: 1; |
| 42 | border-radius: 14px; |
| 43 | box-shadow: inset 0 1px 4px 0 rgba(0, 0, 0, 0.09); |
| 44 | background-color: #f2f2f2; |
| 45 | } |
| 46 | |
| 47 | &-progress { |
| 48 | display: flex; |
| 49 | height: 8px; |
| 50 | border-radius: 14px; |
| 51 | box-shadow: inset 0 1px 4px 0 rgba(0, 0, 0, 0.09); |
| 52 | background: var(--givewp-secondary-color, #2d802f); |
| 53 | } |
| 54 | } |
| 55 | } |
| 56 |