1
0
Fork 0
oldhaven/public/stylesheets/beathaven.css

108 lines
1.5 KiB
CSS
Raw Normal View History

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;
}
2011-04-11 04:16:00 +00:00
h1.artist {
2011-04-05 22:58:11 +00:00
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;
2011-04-10 18:04:35 +00:00
margin: 0 0 0.2em 0;
2011-04-05 22:58:11 +00:00
}
.album .tracks li .duration {
font-size: 0.5em;
display: block;
float: right;
}
2011-04-10 18:04:35 +00:00
.album .tracks li .play {
2011-04-05 22:58:11 +00:00
display: block;
float: left;
2011-04-10 18:04:35 +00:00
width: 30px;
2011-04-05 22:58:11 +00:00
height: 30px;
2011-04-10 18:04:35 +00:00
border-radius: 30px;
background-color: #05A;
margin: 0 0.3em 0 0;
2011-04-08 18:39:49 +00:00
cursor: pointer;
}
2011-04-10 18:04:35 +00:00
.album .tracks li .play img {
width: 12px;
height: 12px;
margin: 9px 0 0 10px;
}
.album .tracks li .play.disabled {
2011-04-10 18:04:35 +00:00
background-color: #CDF;
2011-04-08 18:39:49 +00:00
}
.search {
width: 100%;
text-align: center;
2011-04-09 14:00:36 +00:00
margin-top: 200px;
}
.search #name {
2011-04-10 06:17:06 +00:00
width: 300px;
2011-04-11 03:12:06 +00:00
border: #AAA 3px solid;
border-radius: 7px;
font-size: 1.5em;
padding: 0.2em;
}