player.css 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263
  1. .hidden {
  2. display: none !important;
  3. }
  4. #progress-bar {
  5. background-color: #42414d;
  6. width: 4%;
  7. margin-left: 0px !important;
  8. height: 4px;
  9. }
  10. #player {
  11. /* background-color: #0c0c0d;*/
  12. background-color: #1c1b22;
  13. border-radius: 6px;
  14. color: #fff;
  15. padding-top:0px;
  16. font-family: -apple-system,system-ui,BlinkMacSystemFont,'Segoe UI',Roboto,'Helvetica Neue',sans-serif;;
  17. }
  18. .show-list > .arrow {
  19. height: 20px;
  20. }
  21. .show-list {
  22. display: flex;
  23. align-items: center;
  24. }
  25. #programmi-lista {
  26. display: flex;
  27. overflow: hidden;
  28. }
  29. #programmi-lista > span, #other-radios > span{
  30. border-radius: 5px 15px;
  31. /* background: #38383d; */
  32. border: solid 1px #fff;
  33. padding-top: 10px;
  34. padding-left: 5px;
  35. padding-right: 5px;
  36. margin-left: 5px;
  37. }
  38. #programmi-lista > span:hover {
  39. /*background: #4a4a4f;*/
  40. background: #42414d;
  41. }
  42. #programmi-content {
  43. overflow: hidden;
  44. }
  45. .show-content {
  46. display: flex;
  47. align-items: center;
  48. }
  49. .show-content > .arrow{
  50. height: 20;
  51. width: 50;
  52. }
  53. .play-pause {
  54. border: 2px solid beige;
  55. border-radius: 100%;
  56. height: 48px;
  57. width: 48px;
  58. text-align: center
  59. }
  60. .prev-step {
  61. width: 25px;
  62. height: 25px;
  63. margin-left: 35px;
  64. margin-right: 35px;
  65. }
  66. .control {
  67. display: flex;
  68. }
  69. .control > img {
  70. width: inherit;
  71. height: inherit;
  72. }
  73. .controlBlock {
  74. float: left;
  75. width: 33.33%;
  76. display: flex;
  77. align-items: center;
  78. }
  79. .controlCenter {
  80. width: 30%;
  81. margin: 0 auto;
  82. text-align: center;
  83. margin-top: 16;
  84. }
  85. #player.after {
  86. content: "";
  87. display: table;
  88. clear: both;
  89. }
  90. .arrow-left {
  91. transform: rotate(90deg);
  92. }
  93. .arrow-right {
  94. transform: rotate(-90deg);
  95. }
  96. .arrow-up {
  97. transform: rotate(180deg);
  98. }
  99. .show-card > .description {
  100. height: 70%;
  101. overflow: hidden;
  102. }
  103. .show-card > .controls > img+img {
  104. margin-left: 5px;
  105. }
  106. #menu > input {
  107. display: none;
  108. }
  109. #player > div {
  110. margin-left: 10px;
  111. }
  112. #menu > input:checked+label {
  113. background: #4a4a4f;
  114. }
  115. #menu > input+label {
  116. border: solid 1px #fff;
  117. color: #fff;
  118. border-radius: 4px;
  119. font-size: 20px;
  120. padding: 2;
  121. }
  122. .show-card + .show-card {
  123. margin-left: 10px;
  124. }
  125. .show-card {
  126. /* background: #38383d; */
  127. border: solid 1px #fff;
  128. color: #fff;
  129. border-radius: 5% 2%;
  130. width: 200px;
  131. height: 200px;
  132. word-wrap: break-word;
  133. font-size: 9pt;
  134. padding: 5px;
  135. flex: 0 0 200px;
  136. }
  137. .show-card > .controls {
  138. display: flex;
  139. justify-content: right;
  140. }
  141. .show-card > .controls > .play-pause {
  142. width: 30px;
  143. height: 30px;
  144. }
  145. .add-to-playlist {
  146. height: 30px;
  147. }
  148. .content-box {
  149. margin-top: 20px;
  150. width: auto;
  151. display: flex;
  152. overflow: hidden;
  153. }
  154. #contents > div {
  155. margin-top: 5px;
  156. }
  157. .controlBlock > div {
  158. display: inline-block;
  159. margin-top: 22;
  160. }
  161. .controlBlock > div > img, input {
  162. vertical-align: middle
  163. }
  164. .tags > span {
  165. border-radius: 15px;
  166. /* background: #38383d; */
  167. border: solid 1px #fff;
  168. color: #fff;
  169. margin-left: 10px;
  170. margin-right: 10px;
  171. margin-top: 30px;
  172. padding-left: 3px;
  173. padding-right: 3px;
  174. }
  175. .controls {
  176. margin-left:auto;
  177. margin-right:auto;
  178. height:87px;
  179. }
  180. #volume-off, #volume-on {
  181. width: 25px;
  182. height: 25px;
  183. }
  184. #contents {
  185. margin-top: -1px;
  186. padding-top: 1px;
  187. }
  188. #contents-button {
  189. with: 43px;
  190. height: 17px;
  191. }
  192. .info-content {
  193. color: #fff;
  194. margin-top: 20px;
  195. }
  196. .live {
  197. border: 2px solid #fff;
  198. border-radius: 4px;
  199. padding: 2px 7px;
  200. font-size: 10px;
  201. opacity: 1;
  202. transition: all 0.5s ease-out;
  203. color: #fff;
  204. }
  205. .controlCenter {
  206. justify-content: center;
  207. }
  208. .controlLeft {
  209. justify-content: left;
  210. }
  211. .controlRight {
  212. justify-content: right;
  213. }
  214. #volume {
  215. /* -webkit-appearance: none; */
  216. /* appearance: none; */
  217. /* background: #d3d3d3; */
  218. /* outline: none; /\* Remove outline *\/ */
  219. /* opacity: 0.7; /\* Set transparency (for mouse-over effects on hover) *\/ */
  220. /* -webkit-transition: .2s; /\* 0.2 seconds transition on hover *\/ */
  221. /* transition: opacity .2s; */
  222. }