Advertisement
Katting

iPawd Music Player - CSS

May 28th, 2017
421
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.66 KB | None | 0 0
  1. /*------------------------------------------------------------------------*/
  2.  
  3. .popup_block{
  4. display:none;
  5. position:fixed;
  6. z-index:1000000;
  7. top:50%;
  8. left:50%;
  9. padding:10px;
  10. border-radius:2px;
  11. border:1px solid #cccccc;
  12. background-color:#ffffff;
  13. }
  14.  
  15.  
  16. .jp-col1{
  17. display:inline-block;
  18. margin-bottom:10px;
  19. margin-right:15px;
  20. width:130px;
  21. text-align:center;
  22. }
  23.  
  24. .jp-col2{
  25. display:inline-block;
  26. float:right;
  27. width:350px;
  28. }
  29.  
  30. /*---- Track/ Artist -----*/
  31.  
  32. .jp-image{
  33. margin-bottom:5px;
  34. padding:2px;
  35. border:1px solid #eeeeee;
  36. }
  37.  
  38. .jp-image img{
  39. width:124px;
  40. vertical-align:middle;
  41. }
  42.  
  43.  
  44. .jp-track-name{
  45. white-space: nowrap;
  46. overflow:hidden;
  47. text-overflow: ellipsis;
  48. text-transform:uppercase;
  49. font-size:12px;
  50. color:#ACCEE1;
  51. }
  52.  
  53. .jp-artist-name{
  54. white-space: nowrap;
  55. overflow:hidden;
  56. text-overflow: ellipsis;
  57. color:#cccccc;
  58. }
  59.  
  60. /* ----- Buttons ------ */
  61. .jp-controls{
  62. display:block;
  63. margin-top:5px;
  64. }
  65.  
  66. .jp-controls button{
  67. margin-left:2px;
  68. margin-right:2px;
  69. height:30px;
  70. width:30px;
  71. padding:0px;
  72. font-size:15px;
  73. border:none;
  74. background:transparent;
  75. color:#ffffff;
  76. }
  77.  
  78. .jp-controls i{
  79. width:30px;
  80. height:30px;
  81. border-radius:2px;
  82. background-color:#ACCEE1;
  83. display:flex;
  84. align-items: center;
  85. justify-content: center;
  86. -webkit-transition: all 1s ease;
  87. -moz-transition: all 1s ease;
  88. -o-transition: all 1s ease;
  89. transition: all 1s ease;
  90. }
  91.  
  92. .jp-controls button:hover i{
  93. background-color:#000000;
  94. color:#ffffff;
  95. }
  96.  
  97. .jp-controls button:focus {
  98. outline:0;
  99. -webkit-user-select: none;
  100. -moz-user-select: none;
  101. -ms-user-select: none;
  102. user-select: none;
  103. }
  104.  
  105. .jp-state-playing .jp-play i:before {
  106. padding-left: 0px;
  107. content: "\f04c" !important;
  108. }
  109.  
  110. .jp-toggles{
  111. margin-top:5px;
  112. text-align:center;
  113. }
  114.  
  115. .jp-toggles button{
  116. margin-left:2px;
  117. margin-right:2px;
  118. width:20px;
  119. height:20px;
  120. padding:0px;
  121. border-radius:2px;
  122. border:none;
  123. background:transparent;
  124. }
  125.  
  126. .jp-toggles i{
  127. width:20px;
  128. height:20px;
  129. border-radius:2px;
  130. background-color:#aaaaaa;
  131. color:#ffffff;
  132. display:flex;
  133. align-items: center;
  134. justify-content: center;
  135. -webkit-transition: all 1s ease;
  136. -moz-transition: all 1s ease;
  137. -o-transition: all 1s ease;
  138. transition: all 1s ease;
  139. }
  140. }
  141.  
  142. .jp-toggles button:hover i{
  143. background-color:#000000;
  144. }
  145.  
  146. .jp-toggles button:focus{
  147. outline:0;
  148. -webkit-user-select: none;
  149. -moz-user-select: none;
  150. -ms-user-select: none;
  151. user-select: none;
  152. }
  153.  
  154. .jp-state-looped .jp-toggles .jp-repeat i,
  155. .jp-state-shuffled .jp-toggles .jp-shuffle i{
  156. background-color:#000000;
  157. }
  158.  
  159. .jp-state-muted .jp-mute i:before {
  160. content: "\f026" !important;
  161. }
  162.  
  163.  
  164. /*-------- Progress bars ---------*/
  165.  
  166. .jp-progress,
  167. .jp-seek-bar,
  168. .jp-play-bar,
  169. .jp-volume-bar,
  170. .jp-volume-bar-value {
  171. height: 9px;
  172. -webkit-border-radius:1px;
  173. -moz-border-radius: 1px;
  174. border-radius: 1px;
  175. }
  176.  
  177. .jp-progress-container{
  178. height: 19px;
  179. font-size:10px;
  180. }
  181.  
  182. .jp-progress {
  183. margin: 5px 30px 5px 30px;
  184. background-color: #ffffff;
  185. }
  186.  
  187. .jp-seek-bar{
  188. cursor:pointer;
  189. background-color:#aaaaaa;
  190. }
  191.  
  192. .jp-play-bar {
  193. float:left;
  194. position:relative;
  195. background-color:#ACCEE1;
  196. overflow: visible!important;
  197. }
  198.  
  199.  
  200. .jp-progress .bullet{
  201. position:absolute;
  202. top:-3px;
  203. right:-7px;
  204. width:12px;
  205. height:12px;
  206. border-radius:90px;
  207. border:1px solid #eeeeee;
  208. background-color: #ffffff;
  209. }
  210.  
  211. .jp-time-holder {
  212. position:relative;
  213. font-size: 8px;
  214. color:#cccccc;
  215. }
  216.  
  217. .jp-time-holder .jp-current-time {
  218. position: absolute;
  219. left: 0;
  220. top: 1px;
  221. }
  222.  
  223. .jp-time-holder .jp-duration {
  224. position: absolute;
  225. right: 0;
  226. top: 1px;
  227. }
  228.  
  229. /*--------- VOLUME -----------*/
  230.  
  231. .jp-volume-holder{
  232. margin-top:10px;
  233. }
  234.  
  235.  
  236. .jp-volume-bar{
  237. position:relative;
  238. height:10px;
  239. background-color:#ACCEE1;
  240. }
  241.  
  242. .jp-volume-bar-value {
  243. position: relative;
  244. height:10px;
  245. background-color:#aaaaaa;
  246. overflow: visible!important;
  247. }
  248.  
  249. .jp-volume-bar .bullet{
  250. position:absolute;
  251. top:-4px;
  252. right:-3px;
  253. width:5px;
  254. height:15px;
  255. border-radius:2px;
  256. border:1px solid #eeeeee;
  257. background-color: #ffffff;
  258. }
  259.  
  260. /* ------- Playlist -------- */
  261.  
  262. .jp-playlist {
  263. position: relative;
  264. height:200px;
  265. padding:3px;
  266. border-radius:2px;
  267. border:1px solid #eeeeee;
  268. overflow:auto;
  269. }
  270.  
  271. .jp-playlist::-webkit-scrollbar {
  272. width: 0px;
  273. }
  274.  
  275. .jp-playlist ul {
  276. padding: 0;
  277. margin: 0;
  278. background-color:#eeeeee;
  279. overflow: auto;
  280. }
  281.  
  282. .jp-playlist li {
  283. list-style: none;
  284. }
  285.  
  286. .jp-playlist li a{
  287. color: #aaaaaa;
  288. display: block;
  289. margin-top:-1px;
  290. padding: 5px 10px 5px 10px;
  291. outline: none;
  292. border-top: 1px solid #ffffff;
  293. border-bottom:1px solid #ffffff;
  294. font-size:9px;
  295. -webkit-transition: all 1s ease;
  296. -moz-transition: all 1s ease;
  297. -o-transition: all 1s ease;
  298. transition: all 1s ease;
  299. }
  300.  
  301. .jp-playlist li a:hover,
  302. .jp-playlist li a:focus,
  303. .jp-playlist li a:active {
  304. color: #ffffff;
  305. text-decoration: none;
  306. background-color:#000000;
  307. color:#ffffff;
  308. outline:0;
  309. -webkit-user-select: none;
  310. -moz-user-select: none;
  311. -ms-user-select: none;
  312. user-select: none;
  313. }
  314.  
  315. /*------------------------------------------------------------------------*/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement