main.css 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  1. body {
  2. background-color: black;
  3. margin: 0;
  4. padding: 0;
  5. width: 100vw;
  6. height: 100vh;
  7. box-sizing: border-box;
  8. overflow: hidden;
  9. }
  10. * {
  11. user-select: none;
  12. }
  13. canvas {
  14. margin: 0;
  15. padding: 0;
  16. box-sizing: border-box;
  17. }
  18. .ui-widget-content {
  19. border: 1px solid black;
  20. background: #ffffff;
  21. color: #333333;
  22. }
  23. .ui-widget-content:hover {
  24. border: 1px solid #dddddd !important;
  25. background: #ffffff;
  26. color: #333333;
  27. }
  28. .ui-widget-content {
  29. border: 1px solid black !important;
  30. }
  31. #wrap {
  32. background-color: black;
  33. position: relative;
  34. top: 0;
  35. display: -webkit-flex;
  36. display: flex;
  37. flex-flow: row wrap;
  38. text-align: center;
  39. justify-content: center;
  40. align-self: center;
  41. height: 80%;
  42. width: 80%;
  43. }
  44. #configButton {
  45. position: absolute;
  46. top: 10px;
  47. right: 20px;
  48. }
  49. #panel {
  50. font-family: sans-serif;
  51. position: absolute;
  52. top: 15px;
  53. right: -300px;
  54. width: 300px;
  55. height: calc(100vh - 30px);
  56. background-color: #ffffff;
  57. /* background-color: #111; */
  58. transition: right ease-in-out 0.8s;
  59. transition: opacity ease-in-out 0.8s;
  60. /* color: #999; */
  61. overflow-y: scroll;
  62. }
  63. #panelWrap{
  64. margin: 15px;
  65. height: 95%;
  66. display: flex;
  67. justify-content: center;
  68. text-align: center;
  69. flex-flow: column nowrap;
  70. padding: 20px;
  71. -webkit-user-select: none;
  72. overflow-y: scroll;
  73. /* border-top-right-radius: 3%;
  74. border-top-left-radius: 3%;
  75. border-bottom-right-radius: 3%;
  76. border-bottom-left-radius: 3%; */
  77. }
  78. .titles{
  79. padding-left: 15px;
  80. }
  81. #playlist {
  82. margin: 0;
  83. padding: 0;
  84. min-height: 20vh;
  85. ackground-color: whitesmoke;
  86. -webkit-user-select: none;
  87. max-height: 20vh;
  88. overflow: scroll;
  89. position: relative;
  90. }
  91. #playlist li {
  92. position: relative;
  93. width: 100%;
  94. padding: 3px;
  95. color: #111;
  96. font-family: sans-serif;
  97. font-size: 11px;
  98. overflow: hidden;
  99. box-sizing: border-box;
  100. cursor: move;
  101. cursor: -webkit-grabbing;
  102. user-select: none;
  103. display: flex;
  104. justify-content: space-between;
  105. padding-left: 15px;
  106. }
  107. #playlist li span{
  108. position: absolute;
  109. left: 3px;
  110. top: 0;
  111. }
  112. #playlist li:hover{
  113. border: solid black 1px;
  114. }
  115. #emptyFlag{
  116. position: absolute;
  117. width: 100%;
  118. height: 100%;
  119. text-align: center;
  120. justify-content: center;
  121. display: flex;
  122. align-items: center;
  123. color: grey;
  124. }
  125. #shortcuts{
  126. text-align: left;
  127. }
  128. #playlistWrap{
  129. padding: 5px;
  130. }
  131. /* #addVideo {
  132. padding: 1em;
  133. border: 1px solid #999;
  134. background-color: #111;
  135. max-width: 100px;
  136. color: #999;
  137. margin-left: 111px;
  138. }
  139. button:hover, #addVideo:hover{
  140. background-color: #999;
  141. color: #111;
  142. cursor: pointer;
  143. } */
  144. #electron-titlebar {
  145. background-color: "red";
  146. position: fixed;
  147. display: block;
  148. width: 100vw;
  149. height: 50px;
  150. -webkit-app-region: drag;
  151. position: absolute;
  152. top: 0;
  153. left: AUTO;
  154. height: 40px;
  155. width: 100vw;
  156. overflow: hidden;
  157. }
  158. .ui-widget-content {
  159. border: 1px solid black;
  160. background: #ffffff;
  161. color: #333333;
  162. }
  163. .ui-widget-content:hover {
  164. border: 1px solid #dddddd;
  165. background: #ffffff;
  166. color: #333333;
  167. }
  168. #wrap {
  169. background-color: black;
  170. position: relative;
  171. top: 0;
  172. display: -webkit-flex;
  173. display: flex;
  174. flex-flow: row wrap;
  175. text-align: center;
  176. justify-content: center;
  177. align-self: center;
  178. height: 40%;
  179. width: 40%;
  180. }
  181. #progressBar{
  182. position: absolute;
  183. bottom: 0px;
  184. width: calc(70vw - 300px);
  185. margin-left: 10vh ;
  186. opacity: 0;
  187. }