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

64 lines
979 B
SCSS
Raw Normal View History

2011-06-27 11:14:14 +00:00
@import "alpha_gradient";
.artist-info {
2011-09-08 01:48:33 +00:00
margin-bottom: 20px;
.pic {
img {
max-width: 220px;
}
}
.desc {
2011-09-26 10:51:52 +00:00
.service-icons {
margin-top: 15px;
a {
2011-10-19 20:55:46 +00:00
text-decoration: none;
2011-09-26 10:51:52 +00:00
margin-right: 10px;
}
}
2011-09-08 01:48:33 +00:00
}
2011-06-27 11:14:14 +00:00
}
2011-09-08 01:48:33 +00:00
.album {
margin-bottom: 20px;
.art {
img {
max-width: 220px;
}
.button-container {
2011-09-19 08:21:03 +00:00
display: none;
2011-09-08 01:48:33 +00:00
text-align: center;
margin-top: 10px;
}
}
.tracks {
2011-09-15 06:55:14 +00:00
& > h3 {
margin: -5px 0 5px 0;
}
2011-11-23 23:37:41 +00:00
tr.unavailable > td {
background-color: #FFF0F0;
}
td.song-title {
padding: 12px 10px 10px 9px;
}
2011-09-08 01:48:33 +00:00
td.song-duration {
text-align: right;
2011-09-26 13:34:18 +00:00
.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;
}
2011-09-08 01:48:33 +00:00
}
}
2011-06-27 11:14:14 +00:00
}