Files
wp-lfnp/css/style.css
2025-11-14 19:02:49 -08:00

61 lines
1.1 KiB
CSS

.lfnp#widget {
background: #2a2a2a;
padding: 20px;
border-radius: 8px;
text-align: center;
}
.lfnp #title {
font-size: 1.2rem;
margin-bottom: 8px;
font-weight: bold;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.lfnp #artist {
font-size: 1rem;
margin-bottom: 12px;
color: #bbb;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.lfnp #status {
font-size: 0.9rem;
margin-bottom: 12px;
color: #888;
}
.lfnp #cover {
width: 150px;
height: 150px;
object-fit: cover;
border-radius: 8px;
margin-bottom: 12px;
}
.lfnp #progress-container {
background: #444;
height: 8px;
border-radius: 4px;
overflow: hidden;
margin: 12px 0 6px 0;
}
.lfnp #progress-bar {
background: #F5A9B8;
height: 100%;
width: 0%;
transition: width 0.3s linear;
}
.lfnp #time-info {
font-size: 0.8rem;
color: #aaa;
display: flex;
justify-content: space-between;
font-family: monospace;
}