style.css 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265
  1. header {
  2. background: url(img/back.jpg);
  3. }
  4. #footer {clear:both; text-align:center;}
  5. p.right {
  6. text-align:right;
  7. }
  8. /***********************************
  9. ========== Audio Player ============
  10. ***********************************/
  11. #audio_player {
  12. }
  13. div#player{
  14. width: 100%;
  15. color: #555555;
  16. font-family: 'PT Sans', sans-serif;
  17. font-weight: 700;
  18. font-size: 12px;
  19. }
  20. #song-information{
  21. text-align: left;
  22. margin: 0 0 10px;
  23. }
  24. #controls{
  25. right: left;
  26. }
  27. #amplitude-volume-slider{
  28. width: 80%;
  29. margin: 0 auto;
  30. padding-right:35px;
  31. }
  32. .current-track {
  33. margin:20px 0 0;
  34. }
  35. input[type=range] {
  36. -webkit-appearance: none;
  37. margin: 18px 0;
  38. width: 100%;
  39. }
  40. input[type=range]:focus {
  41. outline: none;
  42. }
  43. input[type=range]::-webkit-slider-runnable-track {
  44. width: 100%;
  45. height: 8.4px;
  46. cursor: pointer;
  47. animate: 0.2s;
  48. box-shadow: 0px 3px 8px #aaa, inset 0px 2px 3px #fff;
  49. background: #337ab7;
  50. border-radius: 1.3px;
  51. border: 0.2px solid #010101;
  52. }
  53. input[type=range]::-webkit-slider-thumb {
  54. box-shadow: 0px 3px 8px #aaa, inset 0px 2px 3px #fff;
  55. border: 1px solid #333;
  56. height: 26px;
  57. width: 16px;
  58. border-radius: 3px;
  59. background: #f7f7f7;
  60. cursor: pointer;
  61. -webkit-appearance: none;
  62. margin-top: -8px;
  63. }
  64. input[type=range]:focus::-webkit-slider-runnable-track {
  65. background: #367ebd;
  66. }
  67. input[type=range]::-moz-range-track {
  68. width: 100%;
  69. height: 8.4px;
  70. cursor: pointer;
  71. animate: 0.2s;
  72. box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
  73. background: #337ab7;
  74. border-radius: 1.3px;
  75. border: 0.2px solid #010101;
  76. }
  77. input[type=range]::-moz-range-thumb {
  78. box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
  79. border: 1px solid #000000;
  80. height: 36px;
  81. width: 16px;
  82. border-radius: 3px;
  83. background: #ffffff;
  84. cursor: pointer;
  85. }
  86. input[type=range]::-ms-track {
  87. width: 100%;
  88. height: 8.4px;
  89. cursor: pointer;
  90. animate: 0.2s;
  91. background: transparent;
  92. border-color: transparent;
  93. border-width: 16px 0;
  94. color: transparent;
  95. }
  96. input[type=range]::-ms-fill-lower {
  97. background: #2a6495;
  98. border: 0.2px solid #010101;
  99. border-radius: 2.6px;
  100. box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
  101. }
  102. input[type=range]::-ms-fill-upper {
  103. background: #337ab7;
  104. border: 0.2px solid #010101;
  105. border-radius: 2.6px;
  106. box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
  107. }
  108. input[type=range]::-ms-thumb {
  109. box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
  110. border: 1px solid #000000;
  111. height: 36px;
  112. width: 16px;
  113. border-radius: 3px;
  114. background: #ffffff;
  115. cursor: pointer;
  116. }
  117. input[type=range]:focus::-ms-fill-lower {
  118. background: #3071a9;
  119. }
  120. input[type=range]:focus::-ms-fill-upper {
  121. background: #367ebd;
  122. }
  123. output.volume {
  124. position: absolute;
  125. background-image: -moz-linear-gradient(top, #444444, #999999);
  126. background-image: -o-linear-gradient(top, #444444, #999999);
  127. background-image: -webkit-gradient(linear, left top, left bottom, from(#444444), to(#999999));
  128. background-image: -webkit-linear-gradient(top, #444444, #999999);
  129. width: 40px;
  130. height: 30px;
  131. text-align: center;
  132. color: white;
  133. border-radius: 10px;
  134. display: inline-block;
  135. font: bold 15px/30px Georgia;
  136. bottom: 175%;
  137. left: 0;
  138. margin-left: -1%;
  139. }
  140. output.volume:after {
  141. content: "";
  142. position: absolute;
  143. width: 0;
  144. height: 0;
  145. border-top: 10px solid #999999;
  146. border-left: 5px solid transparent;
  147. border-right: 5px solid transparent;
  148. top: 100%;
  149. left: 50%;
  150. margin-left: -5px;
  151. margin-top: -1px;
  152. }
  153. meter {
  154. -webkit-transform: rotate(-90deg);
  155. -moz-transform: rotate(-90deg);
  156. -o-transform: rotate(-90deg);
  157. transform: rotate(-90deg);
  158. }
  159. #amplitude-current-time{
  160. font-family: 'Courier New', Courier, 'Lucida Sans Typewriter', 'Lucida Typewriter', monospace;
  161. font-size: 15px;
  162. font-weight: 400;
  163. float:left;
  164. }
  165. #amplitude-play-pause {
  166. height: 50px;
  167. width: 50px;
  168. line-height: 50px;
  169. border-radius: 50%;
  170. text-align: center;
  171. margin: -70px 0 0 0;
  172. cursor: pointer;
  173. float: right;
  174. position: relative;
  175. -webkit-transition: all .1s linear;
  176. transition: all .1s linear;
  177. }
  178. .amplitude-paused {
  179. color:rgba(88, 185, 87, .7);
  180. display: block;
  181. background-color: #f7f7f7;
  182. background-image: -webkit-gradient(linear, left top, left bottom, from(#f7f7f7), to(#e7e7e7));
  183. background-image: -webkit-linear-gradient(top, #f7f7f7, #e7e7e7);
  184. background-image: -moz-linear-gradient(top, #f7f7f7, #e7e7e7);
  185. background-image: -ms-linear-gradient(top, #f7f7f7, #e7e7e7);
  186. background-image: -o-linear-gradient(top, #f7f7f7, #e7e7e7);
  187. box-shadow: 0px 3px 8px #aaa, inset 0px 2px 3px #fff;
  188. }
  189. @-webkit-keyframes pulseon {to {box-shadow: 0 0 0 15px rgba(88, 185, 87, .1);}}
  190. @-moz-keyframes pulseon {to {box-shadow: 0 0 0 15px rgba(88, 185, 87, .1);}}
  191. @-ms-keyframes pulseon {to {box-shadow: 0 0 0 15px rgba(88, 185, 87, .1);}}
  192. @keyframes pulseon {to {box-shadow: 0 0 0 15px rgba(88, 185, 87, .1);}}
  193. .amplitude-paused:hover {
  194. color:#58B957;
  195. text-shadow: 0px 0px 6px #58B957;
  196. box-shadow: 0 0 0 0 rgba(88, 185, 87, .7), inset 0px 4px 1px 1px white, inset 0px 4px 1px 1px rgba(204,198,197,.5);
  197. -webkit-animation: pulseon 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  198. }
  199. .amplitude-paused:after {
  200. content:"\e072";
  201. font-family:"Glyphicons Halflings";
  202. font-size:25px;
  203. line-height: 50px;
  204. padding-left:4px;
  205. text-shadow: 1px 4px 6px #def, 0 0 0 #555;
  206. }
  207. .amplitude-paused:before {
  208. }
  209. .amplitude-playing {
  210. color:#DB524B;
  211. text-shadow:0px 0px 3px #DB524B;
  212. background-color: #f7f7f7;
  213. background-image: -webkit-gradient(linear, left top, left bottom, from(#f7f7f7), to(#e7e7e7));
  214. background-image: -webkit-linear-gradient(top, #f7f7f7, #e7e7e7);
  215. background-image: -moz-linear-gradient(top, #f7f7f7, #e7e7e7);
  216. background-image: -ms-linear-gradient(top, #f7f7f7, #e7e7e7);
  217. background-image: -o-linear-gradient(top, #f7f7f7, #e7e7e7);
  218. box-shadow: 0px 3px 8px #aaa, inset 0px 2px 3px #fff;
  219. }
  220. @-webkit-keyframes pulseoff {to {box-shadow: 0 0 0 15px rgba(232, 76, 61, 0);}}
  221. @-moz-keyframes pulseoff {to {box-shadow: 0 0 0 15px rgba(232, 76, 61, 0);}}
  222. @-ms-keyframes pulseoff {to {box-shadow: 0 0 0 15px rgba(232, 76, 61, 0);}}
  223. @keyframes pulseoff {to {box-shadow: 0 0 0 15px rgba(232, 76, 61, 0);}}
  224. .amplitude-playing:hover {
  225. color:#DB524B;
  226. text-shadow:0px 0px 6px #DB524B;
  227. box-shadow: 0 0 0 0 rgba(232, 76, 61, 0.7), inset 0px 4px 1px 1px white, inset 0px 4px 1px 1px rgba(204,198,197,.5);
  228. -webkit-animation: pulseoff 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  229. }
  230. .amplitude-playing:after {
  231. content:"\e073";
  232. font-family:"Glyphicons Halflings";
  233. font-size:25px;
  234. line-height: 50px;
  235. padding-left:4px;
  236. }
  237. .amplitude-playing:before {
  238. }
  239. #amplitude-now-playing-name{
  240. }
  241. #amplitude-now-playing-listeners{
  242. }
  243. #amplitude-now-playing-bitrate{
  244. }