32 lines
376 B
CSS
32 lines
376 B
CSS
|
* {
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
border: none;
|
||
|
}
|
||
|
|
||
|
body {
|
||
|
overflow: hidden;
|
||
|
font-family: Helvetica, Arial, sans-serif;
|
||
|
font-size: 14px;
|
||
|
}
|
||
|
|
||
|
#header-container {
|
||
|
margin-right: 350px;
|
||
|
}
|
||
|
#player-container {
|
||
|
width: 350px;
|
||
|
height: 600px;
|
||
|
float: right;
|
||
|
}
|
||
|
#data-container {
|
||
|
width: auto;
|
||
|
margin-right: 350px;
|
||
|
}
|
||
|
|
||
|
#player {
|
||
|
width: 100%;
|
||
|
height: 200px;
|
||
|
}
|
||
|
#playlist {
|
||
|
width: 100%;
|
||
|
}
|