12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- /* @override http://macs.local/david/wp-content/themes/dw/css/player.css */
- div#player{
- width: 100%;
- color: #555555;
- font-family: 'PT Sans', sans-serif;
- font-weight: 700;
- font-size: 12px;
- }
- #song-information{
- text-align: left;
- margin: 0 0 10px;
- }
- #controls{
- float: left;
- }
- #amplitude-volume-slider{
- width: 90%;
- float: right;
- }
- #amplitude-play-pause{
- width: 15px;
- height: 17px;
- margin: 0 5px 0 0;
- cursor: pointer;
- float: right;
- }
- #amplitude-current-time{
- font-family: 'PT Sans', sans-serif;
- font-size: 14px;
- font-weight: 400;
- }
- .amplitude-paused{
- background-image: url('../img/small-gray-play.png');
- background-repeat: no-repeat;
- }
- .amplitude-playing{
- background-image: url('../img/small-gray-pause.png');
- background-repeat: no-repeat;
- }
- #amplitude-now-playing-name{
- }
- #amplitude-now-playing-listeners{
- }
- #amplitude-now-playing-bitrate{
- }
|