73 lines
1.1 KiB
SCSS
73 lines
1.1 KiB
SCSS
@import "alpha_gradient";
|
|
|
|
.artist-info {
|
|
margin-bottom: 20px;
|
|
.pic {
|
|
img {
|
|
max-width: 220px;
|
|
}
|
|
}
|
|
.desc {
|
|
.service-icons {
|
|
margin-top: 15px;
|
|
a {
|
|
text-decoration: none;
|
|
margin-right: 10px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.playlist-name {
|
|
display: block;
|
|
margin: 1px 0;
|
|
}
|
|
.set-playlist {
|
|
float: right;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.album {
|
|
margin-bottom: 20px;
|
|
.art {
|
|
img {
|
|
max-width: 220px;
|
|
}
|
|
.button-container {
|
|
display: none;
|
|
text-align: center;
|
|
margin-top: 10px;
|
|
}
|
|
}
|
|
.tracks {
|
|
& > h3 {
|
|
margin: -5px 0 5px 0;
|
|
}
|
|
tr.unavailable > td {
|
|
background-color: #FFF0F0;
|
|
}
|
|
td.song-title {
|
|
padding: 12px 10px 10px 9px;
|
|
}
|
|
td.song-duration {
|
|
text-align: right;
|
|
.s-duration {
|
|
display: block;
|
|
padding: 1px 0;
|
|
}
|
|
.s-add {
|
|
display: none;
|
|
float: right;
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
tr:hover {
|
|
.s-duration {
|
|
display: none;
|
|
}
|
|
.s-add {
|
|
display: block;
|
|
}
|
|
}
|
|
}
|
|
} |