54 lines
No EOL
956 B
CSS
54 lines
No EOL
956 B
CSS
/* @keyframes spin {
|
|
from {
|
|
transform: rotate(0deg);
|
|
}
|
|
|
|
to {
|
|
transform: rotate(360deg);
|
|
}
|
|
} */
|
|
|
|
.now-playing-disc {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
padding: 16px;
|
|
}
|
|
|
|
.cover-circle {
|
|
animation: spin 8s linear infinite;
|
|
width: 220px;
|
|
height: 220px;
|
|
border-radius: 50%;
|
|
background-size: cover;
|
|
background-position: center;
|
|
box-shadow: var(--box-shadow, 0 4px 10px rgba(0, 0, 0, 0.3));
|
|
margin-bottom: 16px;
|
|
outline: 4px solid rgba(218, 218, 218, 0.05);
|
|
}
|
|
|
|
.song-info {
|
|
display: flex;
|
|
flex-direction: column;
|
|
text-align: center;
|
|
}
|
|
|
|
.song-now-playing {
|
|
text-transform: uppercase;
|
|
font-size: 14px;
|
|
font-weight: 600;
|
|
color: var(--text-muted);
|
|
margin-bottom: 3px;
|
|
}
|
|
|
|
.song-title {
|
|
font-size: var(--title-font-size, 1.25rem);
|
|
font-weight: bold;
|
|
color: var(--text);
|
|
}
|
|
|
|
.song-artist {
|
|
font-size: var(--artist-font-size, 1rem);
|
|
font-weight: 800;
|
|
color: var(--text-shy);
|
|
} |