#player { position: fixed; width: 1000px; height: 50px; left: 50%; top: 0; margin-left: -500px; background-color: #000; font-size: 12px; } #player .prev, #player .next, #player .play, #player .pause { float: left; color: #AAA; background-color: #222; cursor: pointer; } #player .prev, #player .next { width: 30px; height: 30px; margin: 10px 0; border-radius: 40px; } #player .prev img, #player .next img { width: 14px; height: 14px; } #player .prev img { margin: 8px 0 0 7px; } #player .next img { margin: 8px 0 0 9px; } #player .play, #player .pause { width: 40px; height: 40px; margin: 5px; border-radius: 40px; } #player .play img { width: 16px; height: 16px; margin: 12px 0 0 14px; } #player .pause img { width: 16px; height: 16px; margin: 12px 0 0 12px; } #player .prev { margin-left: 20px; } #player .next { margin-right: 20px; } #player .time-played, #player .time-left { float: left; height: 50px; width: 50px; color: #AAA; margin-right: 2px; text-align: center; line-height: 50px; } #player .progress { float: left; margin-top: 25px; height: 25px; width: 740px; } #player .track-title { float: left; width: 730px; height: 25px; margin-left: 5px; margin-top: -25px; color: #DDD; line-height: 30px; } #player .progress-bar { float: left; margin: 11px 5px; background-color: #013; width: 730px; height: 3px; } #player .progress-loaded { float: left; width: 0; height: 3px; background-color: #05A; } #player .progress-point { float: left; width: 6px; height: 6px; background-color: #013; margin-top: -4px; margin-left: 0; border: #FFF 3px solid; border-radius: 6px; cursor: pointer; } #playlist { position: fixed; top: 50px; left: 50%; width: 1000px; margin-left: -500px; background-color: #000; opacity: 60; -moz-opacity: 60; -khtml-opacity: 60; -webkit-opacity: 60; } #playlist .show-button { width: 100%; height: 10px; background-color: #222; cursor: pointer; } #playlist ul { margin: 0.2em 0.3em; padding: 0; max-height: 10em; overflow-y: scroll; } #playlist ul li { margin: 0; padding: 0.2em 0; display: block; width: 100%; font-size: 0.8em; color: #FFF; } #playlist ul li:hover { background-color: #222; cursor: pointer; } #playlist ul li.now-playing { background-color: #013; } #playlist ul li .length { margin: 0 0.5em; color: #AAA; }