sc-player-blue.css 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. /* ----------< .blue >---------------- */
  2. .blue .sc-player {
  3. font: .7em Arial, sans-serif;
  4. background-color: #eee;
  5. background: linear-gradient( 165deg, black, #eee 0%, #fff );
  6. background: -o-linear-gradient( 165deg, black, #eee 0%, #fff );
  7. background: -moz-linear-gradient( 165deg, black, #eee 0%, #fff );
  8. background: -webkit-gradient(linear, left top, left 50%, from(black), color-stop(0%, #eee), to(#fff));
  9. color: #333;
  10. line-height: 1.6em;
  11. box-shadow: 1px 1px 4px rgba(0,0,0,.3);
  12. }
  13. .blue .sc-player a {
  14. text-decoration: none;
  15. color: #2955ac;
  16. }
  17. /* Artworks */
  18. .blue .sc-artwork-list {
  19. background: #eee;
  20. background: linear-gradient( left bottom, #eee, #333 );
  21. background: -o-linear-gradient( left bottom, #eee, #333 );
  22. background: -moz-linear-gradient( left bottom, #eee, #333 );
  23. background: -webkit-gradient(linear, left bottom, right top, from(#eee), to(#333));
  24. box-shadow: 1px 1px 4px rgba(0,0,0,.3);
  25. }
  26. /* Scrubber */
  27. .blue .sc-scrubber {
  28. background-color: #e5e5e5;
  29. border-radius: 8px;
  30. box-shadow: 1px 1px 4px rgba(0,0,0,.3);
  31. }
  32. .blue .sc-time-span {
  33. background-color: #666;
  34. }
  35. .blue .sc-buffer,
  36. .blue .sc-played {
  37. background-color: #999;
  38. position: absolute;
  39. }
  40. .blue .sc-played {
  41. background-color: #039;
  42. background: linear-gradient( top, black, #039, #5d95d2 90% );
  43. background: -o-linear-gradient( top, black, #039, #5d95d2 90% );
  44. background: -moz-linear-gradient( top, black, #039, #5d95d2 90% );
  45. background: -webkit-gradient(linear, left top, left 90%, from(black), color-stop(0%, #039), to(#5d95d2));
  46. }
  47. .blue .sc-waveform-container {
  48. width: 100%;
  49. position: absolute;
  50. }
  51. /* Controls */
  52. .blue .sc-controls {
  53. border-radius: 100%;
  54. border: 2px solid white;
  55. background-color: #039;
  56. background: linear-gradient( 135deg, #a1b8e4, #039 70% );
  57. background: -o-linear-gradient( 135deg, #a1b8e4, #039 70% );
  58. background: -moz-linear-gradient( 135deg, #a1b8e4, #039 70% );
  59. background: -webkit-gradient(linear, left top, 30% 90%, from(#a1b8e4), color-stop(70%, #039), to(#039));
  60. box-shadow: 1px 1px 4px rgba(0,0,0,.3);
  61. }
  62. .blue .sc-controls:hover {
  63. background: linear-gradient( 45deg, #a1b8e4, #039 70% );
  64. background: -o-linear-gradient( 45deg, #a1b8e4, #039 70% );
  65. background: -moz-linear-gradient( 45deg, #a1b8e4, #039 70% );
  66. background: -webkit-gradient(linear, left bottom, 90% 30%, from(#a1b8e4), color-stop(70%, #039), to(#039));
  67. }
  68. .blue .sc-controls > * {
  69. color: transparent;
  70. }
  71. /* Track list */
  72. .blue .sc-trackslist li.active,
  73. .blue .sc-trackslist li:hover {
  74. border-radius: 4px;
  75. box-shadow: 1px 1px 4px rgba(0,0,0,.3);
  76. }
  77. .blue .sc-trackslist li.active a {
  78. color: #fff;
  79. }
  80. .blue .sc-trackslist li.active {
  81. background-color: #2955ac;
  82. color: #ddd;
  83. }
  84. .blue .sc-track-duration {
  85. text-align: right;
  86. padding: 0 5px;
  87. margin-left: 5px;
  88. }
  89. /* Track info */
  90. .blue .sc-info.active {
  91. background: #fff;
  92. opacity: .9;
  93. }
  94. .blue .sc-info p a {
  95. text-decoration: underline;
  96. }
  97. .blue .sc-info a:hover {
  98. color: #039;
  99. }
  100. .blue .sc-info-toggle,
  101. .blue .sc-time-indicators,
  102. .blue .sc-info-close {
  103. background: #fff;
  104. color: #2955ac;
  105. border-radius: 4px;
  106. padding: 4px;
  107. box-shadow: 1px 1px 4px rgba(0,0,0,.3);
  108. }
  109. .blue .sc-info-toggle:hover,
  110. .blue .sc-info-close:hover {
  111. background: #2955ac;
  112. color: #eee;
  113. }
  114. .blue .sc-info-close {
  115. padding: 2px 4px;
  116. font-weight: bold;
  117. }
  118. /* Volume control */
  119. .blue .sc-volume-slider {
  120. background-color: #e5e5e5;
  121. border-radius: 2px;
  122. box-shadow: 1px 1px 4px rgba(0,0,0,.3);
  123. }
  124. .blue .sc-volume-slider .sc-volume-status {
  125. background-color: #666;
  126. border-right: 1px solid #039;
  127. }