sc-player-green.css 3.4 KB

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