colors-orange.css 3.8 KB

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