138 lines
4.0 KiB
CSS
138 lines
4.0 KiB
CSS
/* Main blocks*/
|
|
.artist-info {
|
|
width: 100%;
|
|
float: left;
|
|
margin: 0 0 25px 0;
|
|
clear: both;
|
|
}
|
|
.albums {
|
|
width: 100%;
|
|
float: left;
|
|
clear: both;
|
|
}
|
|
|
|
/* Artist info block */
|
|
.artist-info .pic {
|
|
float: left;
|
|
width: 250px;
|
|
margin: 25px 0;
|
|
}
|
|
.artist-info .pic img {
|
|
margin-left: 25px;
|
|
}
|
|
.artist-info .name {
|
|
margin: 25px 0 0 300px;
|
|
}
|
|
.artist-info .info {
|
|
margin: 0 17px 25px 300px;
|
|
}
|
|
|
|
/* Albums block */
|
|
.album {
|
|
clear: both;
|
|
}
|
|
.album .pic {
|
|
float: left;
|
|
width: 250px;
|
|
}
|
|
.album .pic > * {
|
|
margin-left: 25px;
|
|
}
|
|
.album .pic img {
|
|
width: 248px;
|
|
height: 248px;
|
|
border: #DDD 1px solid;
|
|
}
|
|
.add-album-button-container {
|
|
position: relative;
|
|
margin: 10px -25px 0 0;
|
|
text-align: center;
|
|
}
|
|
.album .pic .add-album {
|
|
|
|
}
|
|
.album .name {
|
|
display: block;
|
|
margin: 0 0 10px 300px;
|
|
}
|
|
.album .tracklist {
|
|
margin: 0 17px 30px 275px;
|
|
}
|
|
.album .tracklist ul {
|
|
|
|
}
|
|
.album .tracklist ul li {
|
|
display: block;
|
|
height: 26px;
|
|
position: relative;
|
|
padding-left: 25px;
|
|
}
|
|
.add-track {
|
|
display: none;
|
|
float: left;
|
|
padding: 1px 5px;
|
|
margin: 3px 0 0 -22px;
|
|
}
|
|
.album .tracklist ul li .track-container {
|
|
height: 20px;
|
|
padding: 5px 0 0 0;
|
|
border-top: #EEE 1px solid;
|
|
}
|
|
.album .tracklist ul li:hover {
|
|
background-color: #FAFAFA;
|
|
}
|
|
.album .tracklist ul li:first-child {
|
|
border-top: none;
|
|
}
|
|
.album .tracklist ul li .trackname {
|
|
position: absolute;
|
|
left: 40px;
|
|
top: 6px;
|
|
width: 90%;
|
|
height: 16px;
|
|
overflow: hidden;
|
|
z-index: 10;
|
|
}
|
|
.album .tracklist ul li .index {
|
|
position: absolute;
|
|
left: 22px;
|
|
top: 9px;
|
|
display: block;
|
|
width: 15px;
|
|
text-align: right;
|
|
font-size: 10px;
|
|
color: #555;
|
|
}
|
|
.album .tracklist ul li .length {
|
|
position: absolute;
|
|
right: 0px;
|
|
top: 6px;
|
|
height: 16px;
|
|
z-index: 30;
|
|
}
|
|
.album .tracklist ul li .fade {
|
|
position: absolute;
|
|
right: 0px;
|
|
top: 6px;
|
|
width: 80px;
|
|
height: 16px;
|
|
z-index: 20;
|
|
}
|
|
.album .tracklist ul li .fade {
|
|
background: -moz-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 50%, rgba(255,255,255,1) 100%); /* FF3.6+ */
|
|
background: -webkit-gradient(linear, left top, right top, color-stop(0%,rgba(255,255,255,0)), color-stop(50%,rgba(255,255,255,1)), color-stop(100%,rgba(255,255,255,1))); /* Chrome,Safari4+ */
|
|
background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 50%,rgba(255,255,255,1) 100%); /* Chrome10+,Safari5.1+ */
|
|
background: -o-linear-gradient(left, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 50%,rgba(255,255,255,1) 100%); /* Opera11.10+ */
|
|
background: -ms-linear-gradient(left, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 50%,rgba(255,255,255,1) 100%); /* IE10+ */
|
|
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=1 ); /* IE6-9 */
|
|
background: linear-gradient(left, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 50%,rgba(255,255,255,1) 100%); /* W3C */
|
|
}
|
|
.album .tracklist ul li:hover .fade {
|
|
background: -moz-linear-gradient(left, rgba(250,250,250,0) 0%, rgba(250,250,250,1) 50%, rgba(250,250,250,1) 100%); /* FF3.6+ */
|
|
background: -webkit-gradient(linear, left top, right top, color-stop(0%,rgba(250,250,250,0)), color-stop(50%,rgba(250,250,250,1)), color-stop(100%,rgba(250,250,250,1))); /* Chrome,Safari4+ */
|
|
background: -webkit-linear-gradient(left, rgba(250,250,250,0) 0%,rgba(250,250,250,1) 50%,rgba(250,250,250,1) 100%); /* Chrome10+,Safari5.1+ */
|
|
background: -o-linear-gradient(left, rgba(250,250,250,0) 0%,rgba(250,250,250,1) 50%,rgba(250,250,250,1) 100%); /* Opera11.10+ */
|
|
background: -ms-linear-gradient(left, rgba(250,250,250,0) 0%,rgba(250,250,250,1) 50%,rgba(250,250,250,1) 100%); /* IE10+ */
|
|
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00fafafa', endColorstr='#fafafa',GradientType=1 ); /* IE6-9 */
|
|
background: linear-gradient(left, rgba(250,250,250,0) 0%,rgba(250,250,250,1) 50%,rgba(250,250,250,1) 100%); /* W3C */
|
|
} |