player.css 3.9 KB

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