2011-04-05 22:58:11 +00:00
|
|
|
body, h1, h2, h3, h4, form, ul, li {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
body {
|
|
|
|
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
|
|
}
|
|
|
|
#contents {
|
|
|
|
width: 1000px;
|
|
|
|
margin: 0 0 0 -500px;
|
|
|
|
left: 50%;
|
|
|
|
position: relative;
|
|
|
|
/* background-color: #EEE;*/
|
|
|
|
}
|
|
|
|
|
|
|
|
.inner-1 {
|
|
|
|
margin: 2em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.artist {
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
text-align: center;
|
2011-04-08 18:39:49 +00:00
|
|
|
margin: 4em 0 0.5em 0;
|
2011-04-05 22:58:11 +00:00
|
|
|
font-size: 3em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.album {
|
|
|
|
width: 100%;
|
|
|
|
clear: both;
|
|
|
|
}
|
|
|
|
|
|
|
|
.album .pic {
|
|
|
|
width: 250px;
|
|
|
|
height: 250px;
|
|
|
|
background-color: #DDD;
|
|
|
|
float: left;
|
|
|
|
margin: 0 1em 1em 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.album .name {
|
|
|
|
display: block;
|
|
|
|
float: left;
|
2011-04-06 22:02:48 +00:00
|
|
|
width: 450px;
|
2011-04-05 22:58:11 +00:00
|
|
|
font-size: 1.5em;
|
|
|
|
margin: 0 0 0.5em 0;
|
|
|
|
/* background-color: yellowgreen;*/
|
|
|
|
}
|
|
|
|
|
|
|
|
.album .tracks {
|
|
|
|
display: block;
|
|
|
|
float: left;
|
2011-04-06 22:02:48 +00:00
|
|
|
width: 450px;
|
2011-04-05 22:58:11 +00:00
|
|
|
margin-bottom: 1em;
|
|
|
|
/* background-color: lightblue;*/
|
|
|
|
}
|
|
|
|
|
|
|
|
.album .tracks li {
|
|
|
|
display: block;
|
|
|
|
float: left;
|
|
|
|
width: 100%;
|
|
|
|
line-height: 30px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.album .tracks li .duration {
|
|
|
|
font-size: 0.5em;
|
|
|
|
display: block;
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
.album .tracks li .play {
|
|
|
|
display: block;
|
|
|
|
float: left;
|
|
|
|
background-image: url(/images/play.png);
|
|
|
|
width: 31px;
|
|
|
|
height: 30px;
|
2011-04-09 13:02:28 +00:00
|
|
|
margin: 0 0.3em 0 0;
|
2011-04-08 18:39:49 +00:00
|
|
|
cursor: pointer;
|
2011-04-07 04:02:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.album .tracks li .play.disabled {
|
|
|
|
background-image: none;
|
2011-04-08 18:39:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#player {
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
left: 50%;
|
|
|
|
margin-left: -500px;
|
|
|
|
width: 1000px;
|
|
|
|
height: 111px;
|
|
|
|
background-color: #333;
|
|
|
|
border: #222 1px solid;
|
|
|
|
}
|
|
|
|
|
|
|
|
#artist, #dash, #title {
|
|
|
|
line-height: 87px;
|
|
|
|
font-size: 2em;
|
|
|
|
color: #AAA;
|
|
|
|
}
|
|
|
|
|
|
|
|
#dash {
|
|
|
|
color: #666;
|
2011-04-09 13:02:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.search {
|
|
|
|
width: 100%;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.search #name {
|
|
|
|
border: 1px solid ##bdbdbd;
|
|
|
|
background: #555555;
|
|
|
|
color: #ffffff;
|
|
|
|
font-size: 1.1em;
|
|
|
|
}
|
|
|
|
|