2023-08-16 23:31:04 -04:00
|
|
|
.playerinfo {
|
|
|
|
padding: 10px;
|
|
|
|
min-width: 400px;
|
|
|
|
border-radius: 15px;
|
|
|
|
border-top: 2px solid $contrastbg;
|
|
|
|
border-bottom: 2px solid $contrastbg;
|
|
|
|
transition: background 250ms;
|
|
|
|
.top {
|
|
|
|
font-size: 23px;
|
|
|
|
}
|
|
|
|
.metadata {
|
|
|
|
.title{
|
|
|
|
font-weight: 500;
|
|
|
|
transition: text 250ms;
|
|
|
|
}
|
|
|
|
.artist{
|
|
|
|
font-weight: 400;
|
|
|
|
font-size: 15px;
|
|
|
|
transition: text 250ms;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.bottom {
|
|
|
|
font-size: 30px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pausebutton {
|
|
|
|
transition: background 250ms;
|
|
|
|
padding: 14px 16px;
|
2023-08-17 22:53:55 -04:00
|
|
|
font-size: 15px;
|
2023-08-16 23:31:04 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.playing {
|
|
|
|
transition: all ease .2s;
|
|
|
|
border-radius: 15px;
|
2023-08-17 22:53:55 -04:00
|
|
|
label {
|
|
|
|
padding-left: 4px;
|
|
|
|
}
|
2023-08-16 23:31:04 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.paused {
|
|
|
|
border-radius: 26px;
|
|
|
|
transition: all ease .2s;
|
|
|
|
padding: 14px 14px 14px 18px;
|
|
|
|
}
|
|
|
|
}
|
2023-08-17 22:53:55 -04:00
|
|
|
|
|
|
|
.previousbutton,
|
|
|
|
.nextbutton,
|
|
|
|
.shuffle,
|
|
|
|
.repeat {
|
|
|
|
border-radius: 100%;
|
|
|
|
transition: background-color 200ms;
|
|
|
|
&:hover {
|
|
|
|
border-radius: 100%;
|
|
|
|
background-color: rgba(127, 132, 156, 0.4);
|
|
|
|
transition: background-color 200ms;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.repeat {
|
|
|
|
label {
|
|
|
|
padding-right: 8px;
|
|
|
|
}
|
|
|
|
}
|