PageRenderTime 25ms CodeModel.GetById 18ms RepoModel.GetById 0ms app.codeStats 0ms

/files/styles/jplayer/jplayer.blue.monday.css

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