1
0
Fork 0
oldhaven/app/assets/stylesheets/albums.scss

65 lines
1.0 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;
}
}
}
}
.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;
}
td.song-duration {
text-align: right;
.s-duration {
display: block;
padding: 1px 0;
}
.s-add {
display: none;
font-size: 11px;
line-height: 11px;
color: #fafffa;
background-color: #90cc90;
border: #80bb80 1px solid;
border-radius: 3px;
padding: 0 3px 2px 3px;
float: right;
cursor: pointer;
}
}
tr:hover {
.s-duration {
display: none;
}
.s-add {
display: block;
}
}
}
}