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