46 lines
626 B
CSS
46 lines
626 B
CSS
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
border: none;
|
|
}
|
|
|
|
html, body {
|
|
overflow: hidden;
|
|
}
|
|
|
|
body {
|
|
font-family: Helvetica, Arial, sans-serif;
|
|
font-size: 14px;
|
|
-moz-user-select: none;
|
|
-khtml-user-select: none;
|
|
-webkit-user-select: none;
|
|
user-select: none;
|
|
cursor: default;
|
|
min-width: 1000px;
|
|
width: 100%;
|
|
}
|
|
|
|
#header-container {
|
|
margin-right: 350px;
|
|
}
|
|
#player-container {
|
|
width: 350px;
|
|
height: 600px;
|
|
float: right;
|
|
background-color: #222;
|
|
}
|
|
#data-container {
|
|
width: auto;
|
|
margin-right: 350px;
|
|
overflow-y: auto;
|
|
min-width: 650px;
|
|
}
|
|
|
|
#player {
|
|
width: 100%;
|
|
height: 120px;
|
|
}
|
|
#playlist {
|
|
width: 100%;
|
|
overflow-y: auto;
|
|
} |