jplayer.blue.monday.css 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626
  1. /*
  2. * Skin for jPlayer Plugin (jQuery JavaScript Library)
  3. * http://www.happyworm.com/jquery/jplayer
  4. *
  5. * Skin Name: Blue Monday
  6. *
  7. * Copyright (c) 2010-2011 Happyworm Ltd
  8. * Dual licensed under the MIT and GPL licenses.
  9. * - http://www.opensource.org/licenses/mit-license.php
  10. * - http://www.gnu.org/copyleft/gpl.html
  11. *
  12. * Author: Silvia Benvenuti
  13. * Skin Version: 4.0 (jPlayer 2.1.0)
  14. * Date: 1st September 2011
  15. */
  16. div.jp-audio,
  17. div.jp-video {
  18. /* Edit the font-size to counteract inherited font sizing.
  19. * Eg. 1.25em = 1 / 0.8em
  20. */
  21. font-size:1em; /* 1.25em for testing in site pages */ /* No parent CSS that can effect the size in the demos ZIP */
  22. font-family:Verdana, Arial, sans-serif;
  23. line-height:1.6;
  24. color: #666;
  25. /* border:1px solid #009be3;
  26. background-color:#eee;*/
  27. position:relative;
  28. margin:-8px;
  29. }
  30. div.jp-audio {
  31. /* width:420px;*/
  32. }
  33. div.jp-video-270p {
  34. width:480px;
  35. }
  36. div.jp-video-360p {
  37. width:640px;
  38. }
  39. div.jp-video-full {
  40. /* Rules for IE6 (full-screen) */
  41. width:480px;
  42. height:270px;
  43. /* Rules for IE7 (full-screen) - Otherwise the relative container causes other page items that are not position:static (default) to appear over the video/gui. */
  44. position:static !important; position:relative
  45. }
  46. div.jp-video-full div.jp-jplayer {
  47. top: 0;
  48. left: 0;
  49. position: fixed !important; position: relative; /* Rules for IE6 (full-screen) */
  50. overflow: hidden;
  51. z-index:1000;
  52. }
  53. div.jp-video-full div.jp-gui {
  54. position: fixed !important; position: static; /* Rules for IE6 (full-screen) */
  55. top: 0;
  56. left: 0;
  57. width:100%;
  58. height:100%;
  59. z-index:1000;
  60. }
  61. div.jp-video-full div.jp-interface {
  62. position: absolute !important; position: relative; /* Rules for IE6 (full-screen) */
  63. bottom: 0;
  64. left: 0;
  65. z-index:1000;
  66. }
  67. div.jp-interface {
  68. position: relative;
  69. /* background-color:#eee;
  70. width:100%;*/
  71. }
  72. div.jp-audio div.jp-type-single div.jp-interface {
  73. /* height:80px;*/
  74. }
  75. div.jp-audio div.jp-type-playlist div.jp-interface {
  76. height:80px;
  77. }
  78. div.jp-video div.jp-interface {
  79. border-top:1px solid #009be3;
  80. }
  81. /* @group CONTROLS */
  82. div.jp-controls-holder {
  83. clear: both;
  84. width:440px;
  85. margin:0 auto;
  86. position: relative;
  87. overflow:hidden;
  88. top:-8px; /* This negative value depends on the size of the text in jp-currentTime and jp-duration */
  89. }
  90. div.jp-interface ul.jp-controls {
  91. list-style-type:none;
  92. margin:0;
  93. padding: 0;
  94. overflow:hidden;
  95. }
  96. div.jp-audio ul.jp-controls {
  97. /* width: 380px;*/
  98. /* padding:20px 20px 0 20px;*/
  99. }
  100. div.jp-video div.jp-type-single ul.jp-controls {
  101. width: 78px;
  102. margin-left: 200px;
  103. }
  104. div.jp-video div.jp-type-playlist ul.jp-controls {
  105. width: 134px;
  106. margin-left: 172px;
  107. }
  108. div.jp-video ul.jp-controls,
  109. div.jp-interface ul.jp-controls li {
  110. display:inline;
  111. float: left;
  112. }
  113. div.jp-interface ul.jp-controls a {
  114. display:block;
  115. overflow:hidden;
  116. text-indent:-9999px;
  117. }
  118. a.jp-play,
  119. a.jp-pause {
  120. width:40px;
  121. height:40px;
  122. }
  123. a.jp-play {
  124. background: url("jplayer.blue.monday.png") 0 0 no-repeat;
  125. }
  126. a.jp-play:hover {
  127. background: url("jplayer.blue.monday.png") -41px 0 no-repeat;
  128. }
  129. a.jp-pause {
  130. background: url("jplayer.blue.monday.png") 0 -42px no-repeat;
  131. display: none;
  132. }
  133. a.jp-pause:hover {
  134. background: url("jplayer.blue.monday.png") -41px -42px no-repeat;
  135. }
  136. a.jp-stop, a.jp-previous, a.jp-next {
  137. width:28px;
  138. height:28px;
  139. margin-top:6px;
  140. }
  141. a.jp-stop {
  142. background: url("jplayer.blue.monday.png") 0 -83px no-repeat;
  143. margin-left:10px;
  144. }
  145. a.jp-stop:hover {
  146. background: url("jplayer.blue.monday.png") -29px -83px no-repeat;
  147. }
  148. a.jp-previous {
  149. background: url("jplayer.blue.monday.png") 0 -112px no-repeat;
  150. }
  151. a.jp-previous:hover {
  152. background: url("jplayer.blue.monday.png") -29px -112px no-repeat;
  153. }
  154. a.jp-next {
  155. background: url("jplayer.blue.monday.png") 0 -141px no-repeat;
  156. }
  157. a.jp-next:hover {
  158. background: url("jplayer.blue.monday.png") -29px -141px no-repeat;
  159. }
  160. /* @end */
  161. /* @group progress bar */
  162. div.jp-progress {
  163. overflow:hidden;
  164. background-color: #ddd;
  165. }
  166. div.jp-audio div.jp-progress {
  167. position: absolute;
  168. top:32px;
  169. height:15px;
  170. }
  171. div.jp-audio div.jp-type-single div.jp-progress {
  172. left:110px;
  173. width:186px;
  174. }
  175. div.jp-audio div.jp-type-playlist div.jp-progress {
  176. left:166px;
  177. width:130px;
  178. }
  179. div.jp-video div.jp-progress {
  180. top:0px;
  181. left:0px;
  182. width:100%;
  183. height:10px;
  184. }
  185. div.jp-seek-bar {
  186. background: url("jplayer.blue.monday.png") 0 -202px repeat-x;
  187. width:0px;
  188. height:100%;
  189. cursor: pointer;
  190. }
  191. div.jp-play-bar {
  192. background: url("jplayer.blue.monday.png") 0 -218px repeat-x ;
  193. width:0px;
  194. height:100%;
  195. }
  196. /* The seeking class is added/removed inside jPlayer */
  197. div.jp-seeking-bg {
  198. background: url("jplayer.blue.monday.seeking.gif");
  199. }
  200. /* @end */
  201. /* @group volume controls */
  202. a.jp-mute,
  203. a.jp-unmute,
  204. a.jp-volume-max {
  205. width:18px;
  206. height:15px;
  207. margin-top:12px;
  208. }
  209. div.jp-audio div.jp-type-single a.jp-mute,
  210. div.jp-audio div.jp-type-single a.jp-unmute {
  211. margin-left: 210px;
  212. }
  213. div.jp-audio div.jp-type-playlist a.jp-mute,
  214. div.jp-audio div.jp-type-playlist a.jp-unmute {
  215. margin-left: 154px;
  216. }
  217. div.jp-audio a.jp-volume-max {
  218. margin-left: 56px;
  219. }
  220. div.jp-video a.jp-mute,
  221. div.jp-video a.jp-unmute,
  222. div.jp-video a.jp-volume-max {
  223. position: absolute;
  224. top:12px;
  225. margin-top:0;
  226. }
  227. div.jp-video a.jp-mute,
  228. div.jp-video a.jp-unmute {
  229. left: 50px;
  230. }
  231. div.jp-video a.jp-volume-max {
  232. left: 134px;
  233. }
  234. a.jp-mute {
  235. background: url("jplayer.blue.monday.png") 0 -170px no-repeat;
  236. }
  237. a.jp-mute:hover {
  238. background: url("jplayer.blue.monday.png") -19px -170px no-repeat;
  239. }
  240. a.jp-unmute {
  241. background: url("jplayer.blue.monday.png") -60px -170px no-repeat;
  242. display: none;
  243. }
  244. a.jp-unmute:hover {
  245. background: url("jplayer.blue.monday.png") -79px -170px no-repeat;
  246. }
  247. a.jp-volume-max {
  248. background: url("jplayer.blue.monday.png") 0 -186px no-repeat;
  249. }
  250. a.jp-volume-max:hover {
  251. background: url("jplayer.blue.monday.png") -19px -186px no-repeat;
  252. }
  253. div.jp-volume-bar {
  254. position: absolute;
  255. overflow:hidden;
  256. background: url("jplayer.blue.monday.png") 0 -250px repeat-x;
  257. width:46px;
  258. height:5px;
  259. cursor: pointer;
  260. }
  261. div.jp-audio div.jp-volume-bar {
  262. top:37px;
  263. left:330px;
  264. }
  265. div.jp-video div.jp-volume-bar {
  266. top:17px;
  267. left:72px;
  268. }
  269. div.jp-volume-bar-value {
  270. background: url("jplayer.blue.monday.png") 0 -256px repeat-x;
  271. width:0px;
  272. height:5px;
  273. }
  274. /* @end */
  275. /* @group current time and duration */
  276. div.jp-audio div.jp-time-holder {
  277. position:absolute;
  278. top:50px;
  279. }
  280. div.jp-audio div.jp-type-single div.jp-time-holder {
  281. left:110px;
  282. width:186px;
  283. }
  284. div.jp-audio div.jp-type-playlist div.jp-time-holder {
  285. left:166px;
  286. width:130px;
  287. }
  288. div.jp-current-time,
  289. div.jp-duration {
  290. width:60px;
  291. font-size:.64em;
  292. font-style:oblique;
  293. }
  294. div.jp-current-time {
  295. float: left;
  296. display:inline;
  297. }
  298. div.jp-duration {
  299. float: right;
  300. display:inline;
  301. text-align: right;
  302. }
  303. div.jp-video div.jp-current-time {
  304. margin-left:20px;
  305. }
  306. div.jp-video div.jp-duration {
  307. margin-right:20px;
  308. }
  309. /* @end */
  310. /* @group playlist */
  311. div.jp-title {
  312. font-weight:bold;
  313. text-align:center;
  314. }
  315. div.jp-title,
  316. div.jp-playlist {
  317. width:100%;
  318. background-color:#ccc;
  319. border-top:1px solid #009be3;
  320. }
  321. div.jp-type-single div.jp-title,
  322. div.jp-type-playlist div.jp-title,
  323. div.jp-type-single div.jp-playlist {
  324. border-top:none;
  325. }
  326. div.jp-title ul,
  327. div.jp-playlist ul {
  328. list-style-type:none;
  329. margin:0;
  330. padding:0 20px;
  331. font-size:.72em;
  332. }
  333. div.jp-title li {
  334. padding:5px 0;
  335. font-weight:bold;
  336. }
  337. div.jp-playlist li {
  338. padding:5px 0 4px 20px;
  339. border-bottom:1px solid #eee;
  340. }
  341. div.jp-playlist li div {
  342. display:inline;
  343. }
  344. /* Note that the first-child (IE6) and last-child (IE6/7/8) selectors do not work on IE */
  345. div.jp-type-playlist div.jp-playlist li:last-child {
  346. padding:5px 0 5px 20px;
  347. border-bottom:none;
  348. }
  349. div.jp-type-playlist div.jp-playlist li.jp-playlist-current {
  350. list-style-type:square;
  351. list-style-position:inside;
  352. padding-left:7px;
  353. }
  354. div.jp-type-playlist div.jp-playlist a {
  355. color: #333;
  356. text-decoration: none;
  357. }
  358. div.jp-type-playlist div.jp-playlist a:hover {
  359. color:#0d88c1;
  360. }
  361. div.jp-type-playlist div.jp-playlist a.jp-playlist-current {
  362. color:#0d88c1;
  363. }
  364. div.jp-type-playlist div.jp-playlist a.jp-playlist-item-remove {
  365. float:right;
  366. display:inline;
  367. text-align:right;
  368. margin-right:10px;
  369. font-weight:bold;
  370. color:#666;
  371. }
  372. div.jp-type-playlist div.jp-playlist a.jp-playlist-item-remove:hover {
  373. color:#0d88c1;
  374. }
  375. div.jp-type-playlist div.jp-playlist span.jp-free-media {
  376. float:right;
  377. display:inline;
  378. text-align:right;
  379. margin-right:10px;
  380. }
  381. div.jp-type-playlist div.jp-playlist span.jp-free-media a{
  382. color:#666;
  383. }
  384. div.jp-type-playlist div.jp-playlist span.jp-free-media a:hover{
  385. color:#0d88c1;
  386. }
  387. span.jp-artist {
  388. font-size:.8em;
  389. color:#666;
  390. }
  391. /* @end */
  392. div.jp-video-play {
  393. position:absolute;
  394. top:0;
  395. left:0;
  396. width:100%;
  397. cursor:pointer;
  398. background-color:rgba(0,0,0,0); /* Makes IE9 work with the active area over the whole video area. IE6/7/8 only have the button as active area. */
  399. }
  400. div.jp-video-270p div.jp-video-play {
  401. height:270px;
  402. }
  403. div.jp-video-360p div.jp-video-play {
  404. height:360px;
  405. }
  406. div.jp-video-full div.jp-video-play {
  407. height:100%;
  408. z-index:1000;
  409. }
  410. a.jp-video-play-icon {
  411. position:relative;
  412. display:block;
  413. width: 112px;
  414. height: 100px;
  415. margin-left:-56px;
  416. margin-top:-50px;
  417. left:50%;
  418. top:50%;
  419. background: url("jplayer.blue.monday.video.play.png") 0 0 no-repeat;
  420. text-indent:-9999px;
  421. }
  422. div.jp-video-play:hover a.jp-video-play-icon {
  423. background: url("jplayer.blue.monday.video.play.png") 0 -100px no-repeat;
  424. }
  425. div.jp-jplayer audio,
  426. div.jp-jplayer {
  427. width:0px;
  428. height:0px;
  429. }
  430. div.jp-jplayer {
  431. background-color: #000000;
  432. }
  433. /* @group TOGGLES */
  434. /* The audio toggles are nested inside jp-time-holder */
  435. ul.jp-toggles {
  436. list-style-type:none;
  437. padding:0;
  438. margin:0 auto;
  439. overflow:hidden;
  440. }
  441. div.jp-audio .jp-type-single ul.jp-toggles {
  442. width:25px;
  443. }
  444. div.jp-audio .jp-type-playlist ul.jp-toggles {
  445. width:55px;
  446. margin: 0;
  447. position: absolute;
  448. left: 325px;
  449. top: 50px;
  450. }
  451. div.jp-video ul.jp-toggles {
  452. margin-top:10px;
  453. width:100px;
  454. }
  455. ul.jp-toggles li {
  456. display:block;
  457. float:right;
  458. }
  459. ul.jp-toggles li a {
  460. display:block;
  461. width:25px;
  462. height:18px;
  463. text-indent:-9999px;
  464. line-height:100%; /* need this for IE6 */
  465. }
  466. a.jp-full-screen {
  467. background: url("jplayer.blue.monday.png") 0 -310px no-repeat;
  468. margin-left: 20px;
  469. }
  470. a.jp-full-screen:hover {
  471. background: url("jplayer.blue.monday.png") -30px -310px no-repeat;
  472. }
  473. a.jp-restore-screen {
  474. background: url("jplayer.blue.monday.png") -60px -310px no-repeat;
  475. margin-left: 20px;
  476. }
  477. a.jp-restore-screen:hover {
  478. background: url("jplayer.blue.monday.png") -90px -310px no-repeat;
  479. }
  480. a.jp-repeat {
  481. background: url("jplayer.blue.monday.png") 0 -290px no-repeat;
  482. }
  483. a.jp-repeat:hover {
  484. background: url("jplayer.blue.monday.png") -30px -290px no-repeat;
  485. }
  486. a.jp-repeat-off {
  487. background: url("jplayer.blue.monday.png") -60px -290px no-repeat;
  488. }
  489. a.jp-repeat-off:hover {
  490. background: url("jplayer.blue.monday.png") -90px -290px no-repeat;
  491. }
  492. a.jp-shuffle {
  493. background: url("jplayer.blue.monday.png") 0 -270px no-repeat;
  494. margin-left: 5px;
  495. }
  496. a.jp-shuffle:hover {
  497. background: url("jplayer.blue.monday.png") -30px -270px no-repeat;
  498. }
  499. a.jp-shuffle-off {
  500. background: url("jplayer.blue.monday.png") -60px -270px no-repeat;
  501. margin-left: 5px;
  502. }
  503. a.jp-shuffle-off:hover {
  504. background: url("jplayer.blue.monday.png") -90px -270px no-repeat;
  505. }
  506. /* @end */
  507. /* @group NO SOLUTION error feedback */
  508. .jp-no-solution {
  509. position:absolute;
  510. width:390px;
  511. margin-left:-202px;
  512. left:50%;
  513. top: 10px;
  514. padding:5px;
  515. font-size:.8em;
  516. background-color:#eee;
  517. border:2px solid #009be3;
  518. color:#000;
  519. display:none;
  520. }
  521. .jp-no-solution a {
  522. color:#000;
  523. }
  524. .jp-no-solution span {
  525. font-size:1em;
  526. display:block;
  527. text-align:center;
  528. font-weight:bold;
  529. }
  530. /* @end */