player.css 3.3 KB

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