43 lines
796 B
CSS
43 lines
796 B
CSS
#player_container, #main_container {
|
|
width: 950px;
|
|
}
|
|
#player_container {
|
|
position: fixed;
|
|
top: 0;
|
|
height: 6em;
|
|
border-bottom: #444 1px solid;
|
|
}
|
|
#playerControlPrevTrack, #playerControlNextTrack {
|
|
position: relative;
|
|
float: left;
|
|
background-color: aqua;
|
|
width: 30px;
|
|
height: 30px;
|
|
text-align: center;
|
|
line-height: 28px;
|
|
margin-top: 18px;
|
|
border-radius: 15px;
|
|
-moz-border-radius: 15px;
|
|
}
|
|
#playerControlPlay, #playerControlStop {
|
|
position: relative;
|
|
float: left;
|
|
background-color: fuchsia;
|
|
width: 70px;
|
|
height: 70px;
|
|
text-align: center;
|
|
line-height: 66px;
|
|
border-radius: 35px;
|
|
-moz-border-radius: 35px;
|
|
margin: 0 10px;
|
|
}
|
|
#main_container {
|
|
min-height: 500px;
|
|
margin-top: 6em;
|
|
}
|
|
#main_container .artist-name {
|
|
|
|
}
|
|
#main_container .album-name {
|
|
|
|
} |