62 lines
1.3 KiB
CSS
62 lines
1.3 KiB
CSS
.now-playing {
|
|
background: rgba(250, 250, 248, 0.06);
|
|
border: 1px solid rgba(250, 250, 248, 0.12);
|
|
padding: 1.5rem;
|
|
margin-bottom: 1.5rem;
|
|
backdrop-filter: blur(8px);
|
|
}
|
|
|
|
.np-label {
|
|
font-family: var(--deepdrft-font-mono);
|
|
font-size: 0.6rem;
|
|
letter-spacing: 0.25em;
|
|
color: var(--deepdrft-green-accent);
|
|
text-transform: uppercase;
|
|
margin-bottom: 0.75rem;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
}
|
|
|
|
.np-dot {
|
|
width: 6px;
|
|
height: 6px;
|
|
border-radius: 50%;
|
|
background: var(--deepdrft-green-accent);
|
|
animation: blink 1.2s ease-in-out infinite;
|
|
}
|
|
|
|
.np-title {
|
|
font-family: var(--deepdrft-font-display);
|
|
font-size: 1.5rem;
|
|
font-weight: 400;
|
|
color: var(--deepdrft-white);
|
|
margin-bottom: 0.25rem;
|
|
}
|
|
|
|
.np-sub {
|
|
font-family: var(--deepdrft-font-body);
|
|
font-size: 0.75rem;
|
|
color: rgba(250, 250, 248, 0.45);
|
|
letter-spacing: 0.08em;
|
|
}
|
|
|
|
.waveform-bars {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 3px;
|
|
margin-top: 1.2rem;
|
|
}
|
|
|
|
.waveform-bar {
|
|
width: 3px;
|
|
background: var(--deepdrft-green-accent);
|
|
border-radius: 2px;
|
|
animation: wave-dance var(--dur, 1s) ease-in-out infinite alternate;
|
|
}
|
|
|
|
.waveform-placeholder {
|
|
margin-top: 1.2rem;
|
|
height: 1px;
|
|
background: rgba(250, 250, 248, 0.12);
|
|
} |