| 1 |
/* -------------------------------------------------------------------------- |
| 2 |
Empty state |
| 3 |
-------------------------------------------------------------------------- */ |
| 4 |
.wpsubs-empty { |
| 5 |
display: flex; |
| 6 |
flex-direction: column; |
| 7 |
align-items: center; |
| 8 |
justify-content: center; |
| 9 |
padding: 56px 28px; |
| 10 |
text-align: center; |
| 11 |
border: 1px dashed var(--wpsubs-border); |
| 12 |
border-radius: var(--wpsubs-radius); |
| 13 |
background: var(--wpsubs-surface); |
| 14 |
} |
| 15 |
|
| 16 |
.wpsubs-empty__icon { |
| 17 |
display: inline-flex; |
| 18 |
align-items: center; |
| 19 |
justify-content: center; |
| 20 |
width: 68px; |
| 21 |
height: 68px; |
| 22 |
margin-bottom: 22px; |
| 23 |
border-radius: 50%; |
| 24 |
font-size: 1.9rem; |
| 25 |
line-height: 1; |
| 26 |
background: var(--wpsubs-brand-light); |
| 27 |
box-shadow: 0 0 0 8px rgba(255, 77, 0, 0.06); |
| 28 |
} |
| 29 |
|
| 30 |
.wpsubs-empty__title { |
| 31 |
font-size: 16px; |
| 32 |
font-weight: 600; |
| 33 |
color: var(--wpsubs-text-muted); |
| 34 |
margin: 0 0 10px; |
| 35 |
} |
| 36 |
|
| 37 |
.wpsubs-empty__desc { |
| 38 |
font-size: 13px; |
| 39 |
color: var(--wpsubs-text-subtle); |
| 40 |
margin: 0; |
| 41 |
line-height: 1.75; |
| 42 |
max-width: 460px; |
| 43 |
} |
| 44 |
|