player.css 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. div.jp-audio-stream {
  2. background: #eee;
  3. padding: 2px;
  4. width: 44px;
  5. }
  6. div.jp-interface {
  7. }
  8. div.jp-audio-stream ul.jp-controls {
  9. padding:0px !important;
  10. margin:0px !important;
  11. }
  12. div.jp-interface ul.jp-controls li {
  13. padding:0px !important;
  14. margin:0px !important;
  15. }
  16. div.jp-interface ul.jp-controls a {
  17. display:block;
  18. overflow:hidden;
  19. text-indent:-9999px;
  20. }
  21. a.jp-play,
  22. a.jp-pause {
  23. width:40px;
  24. height:40px;
  25. }
  26. a.jp-play {
  27. background: url("../img/jplayer.jpg") 0 0 no-repeat;
  28. }
  29. a.jp-play:hover {
  30. background: url("../img/jplayer.jpg") -41px 0 no-repeat;
  31. }
  32. a.jp-pause {
  33. background: url("../img/jplayer.jpg") 0 -42px no-repeat;
  34. display: none;
  35. }
  36. a.jp-pause:hover {
  37. background: url("../img/jplayer.jpg") -41px -42px no-repeat;
  38. }
  39. div.jp-current-time {
  40. margin: 0px 0px 0 5px;
  41. }
  42. div#player-container{
  43. width: 100%;
  44. }
  45. div#player{
  46. padding: 20px;
  47. height: 50px;
  48. width: 250px;
  49. background-color: white;
  50. color: #555555;
  51. }
  52. #song-information{
  53. width: 50%;
  54. float: left;
  55. text-align: left;
  56. }
  57. #controls{
  58. float: left;
  59. text-align: left;
  60. }
  61. div#amplitude-album-art{
  62. height: 90px;
  63. width: 90px;
  64. background-color: black;
  65. float: left;
  66. }
  67. #amplitude-play-pause{
  68. width: 15px;
  69. height: 17px;
  70. margin: 0 5px 0 0;
  71. cursor: pointer;
  72. float: right;
  73. }
  74. .amplitude-paused{
  75. background-image: url('../img/small-gray-play.png');
  76. background-repeat: no-repeat;
  77. }
  78. .amplitude-playing{
  79. background-image: url('../img/small-gray-pause.png');
  80. background-repeat: no-repeat;
  81. }
  82. #amplitude-volume-slider{
  83. width: 80%;
  84. float: right;
  85. }
  86. #amplitude-now-playing-name{
  87. font-family: 'PT Sans', sans-serif;
  88. font-weight: 700;
  89. font-size: 12px;
  90. }
  91. #amplitude-now-playing-album{
  92. font-family: 'PT Sans', sans-serif;
  93. font-weight: 400;
  94. font-size: 12px;
  95. }
  96. #amplitude-current-time{
  97. font-family: 'PT Sans', sans-serif;
  98. font-size: 14px;
  99. font-weight: 400;
  100. }