index.scss
58 lines
| 1 | .givewp-entity-selector { |
| 2 | display: flex; |
| 3 | flex-direction: column; |
| 4 | gap: 20px; |
| 5 | padding: 40px 24px; |
| 6 | border: 1px solid #e5e7eb; |
| 7 | border-radius: 5px; |
| 8 | box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.05); |
| 9 | |
| 10 | &__label { |
| 11 | padding-bottom: 16px; |
| 12 | } |
| 13 | |
| 14 | &__select { |
| 15 | input[type='text']='text']:focus { |
| 16 | border-color: transparent; |
| 17 | box-shadow: 0 0 0 1px transparent; |
| 18 | outline: 2px solid transparent; |
| 19 | } |
| 20 | } |
| 21 | |
| 22 | &__logo { |
| 23 | align-self: center; |
| 24 | } |
| 25 | |
| 26 | &__open { |
| 27 | color: #fff; |
| 28 | background: #2271b1; |
| 29 | padding: 0.5rem 1rem; |
| 30 | cursor: pointer; |
| 31 | border: none; |
| 32 | border-radius: 5px; |
| 33 | } |
| 34 | |
| 35 | &__submit { |
| 36 | width: 100%; |
| 37 | background-color: #27ae60; |
| 38 | color: #fff; |
| 39 | padding: 1rem; |
| 40 | border-radius: 5px; |
| 41 | font-weight: bold; |
| 42 | text-align: center; |
| 43 | outline: none; |
| 44 | border: 0; |
| 45 | transition: 0.2s; |
| 46 | |
| 47 | &:disabled { |
| 48 | background-color: #f3f4f6; |
| 49 | color: #9ca0af; |
| 50 | } |
| 51 | |
| 52 | &:hover:not(:disabled) { |
| 53 | cursor: pointer; |
| 54 | filter: brightness(1.2); |
| 55 | } |
| 56 | } |
| 57 | } |
| 58 |