| 1 |
.dm-jazz { |
| 2 |
display: flex; |
| 3 |
flex-direction: column; |
| 4 |
height: 100%; |
| 5 |
justify-content: space-between; |
| 6 |
gap: 8px; |
| 7 |
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; |
| 8 |
} |
| 9 |
|
| 10 |
.dm-jazz__symbol { |
| 11 |
font-size: 28px; |
| 12 |
line-height: 1; |
| 13 |
opacity: 0.25; |
| 14 |
flex-shrink: 0; |
| 15 |
animation: dm-jazz-pulse 4s ease-in-out infinite; |
| 16 |
} |
| 17 |
|
| 18 |
@keyframes dm-jazz-pulse { |
| 19 |
0%, 100% { opacity: 0.20; transform: scale(1); } |
| 20 |
50% { opacity: 0.35; transform: scale(1.08); } |
| 21 |
} |
| 22 |
|
| 23 |
.dm-jazz__quote { |
| 24 |
flex: 1; |
| 25 |
margin: 0; |
| 26 |
padding: 0; |
| 27 |
/* clamp with px only — cqw requires container-type on the parent |
| 28 |
which the shell card body does not set. */ |
| 29 |
font-size: clamp( 11px, 1.8vw, 13px ); |
| 30 |
line-height: 1.55; |
| 31 |
font-style: italic; |
| 32 |
color: var(--os-ui-color-text, #e2e8f0); |
| 33 |
animation: dm-jazz-fadein 0.6s ease both; |
| 34 |
} |
| 35 |
|
| 36 |
@keyframes dm-jazz-fadein { |
| 37 |
from { opacity: 0; transform: translateY(4px); } |
| 38 |
to { opacity: 1; transform: translateY(0); } |
| 39 |
} |
| 40 |
|
| 41 |
.dm-jazz__attr { |
| 42 |
display: flex; |
| 43 |
flex-direction: column; |
| 44 |
gap: 2px; |
| 45 |
flex-shrink: 0; |
| 46 |
padding-top: 8px; |
| 47 |
border-top: 1px solid var(--os-ui-color-border, rgba(255,255,255,0.1)); |
| 48 |
} |
| 49 |
|
| 50 |
.dm-jazz__musician { |
| 51 |
font-size: 11px; |
| 52 |
font-weight: 700; |
| 53 |
color: var(--os-ui-color-text, #e2e8f0); |
| 54 |
letter-spacing: 0.02em; |
| 55 |
} |
| 56 |
|
| 57 |
.dm-jazz__version { |
| 58 |
font-size: 10px; |
| 59 |
color: var(--os-ui-color-text-subtle, #94a3b8); |
| 60 |
letter-spacing: 0.04em; |
| 61 |
} |
| 62 |
|