default.css 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246
  1. /*
  2. This file could be used under both CC-BY-SA 4.0 or at your chosing GNU GPLv3 or any later version
  3. */
  4. html {}
  5. * {
  6. font-size: 10px;
  7. list-style-type: none;
  8. background-color: #210a36;
  9. }
  10. body{
  11. color: #95bcf2;
  12. font-family:Open Sans;
  13. font-weight: bold;
  14. margin-top: 5%;
  15. margin-bottom: 5%;
  16. margin-right: 20%;
  17. margin-left: 20%;
  18. }
  19. @font-face {
  20. font-family: "Open-Sans-Extrabold" Open Sans;
  21. /*src: url(/font);*/
  22. }
  23. pre {
  24. /*background: #a89984;*/
  25. border: 10px solid #928374;
  26. border-radius: 10px;
  27. padding: 1em;
  28. margin: 1em;
  29. white-space: pre-wrap;
  30. }
  31. h1 {
  32. font-size: 30px;
  33. color: #CC35F0;
  34. }
  35. h2 {
  36. font-size: 25px;
  37. color: #FFFFFF;
  38. }
  39. h3 {
  40. font-size: 22px;
  41. color: #3798DD;
  42. }
  43. code {
  44. background-color: #000000;
  45. /*border: 5px solid #928374;*/
  46. border-radius: 5px;
  47. word-wrap: break-word;
  48. overflow-wrap: break-word;
  49. }
  50. ul li {
  51. list-style: inside circle;
  52. display:list-item;
  53. }
  54. table {
  55. border-collapse: collapse;
  56. border: 2px solid #7c6f64;
  57. }
  58. th,td {
  59. border: 2px solid #7c6f64;
  60. }
  61. a {
  62. color: #C648EA;
  63. text-decoration: none;
  64. }
  65. a:hover {
  66. color: #DB82F4;
  67. text-decoration: none;
  68. }
  69. img {
  70. max-width: 50%;
  71. height: auto;
  72. }
  73. input {
  74. padding: 12px 20px;
  75. margin: 8px 8px 8px 8px;
  76. box-sizing: border-box;
  77. border: 0px solid black;
  78. border-radius: 15px;
  79. background-color: #210a36;
  80. color: #ffffff;
  81. font-weight: bold;
  82. box-shadow: 0px 0px 5px #b058c6
  83. }
  84. .song {
  85. padding: 12px 20px;
  86. margin: 8px 0;
  87. box-sizing: border-box;
  88. border: 0px solid black;
  89. background-color: #252525;
  90. color: #959595;
  91. font-weight: bold;}
  92. button, .button {
  93. padding: 12px 15px;
  94. margin: 8px 6px;
  95. box-sizing: border-box;
  96. border: 0px solid black;
  97. border-radius: 15px;
  98. background-color: #210a36;
  99. color: #ffffff;
  100. font-weight: bold;
  101. box-shadow: 0px 0px 5px #b058c6
  102. }
  103. .button { line-height: 3 }
  104. summary {
  105. color: #b058c6;
  106. font-weight: bold;
  107. display: inline;
  108. box-sizing: border-box;
  109. }
  110. summary:hover, summary:hover > h1 {
  111. color: white;
  112. cursor: pointer;
  113. }
  114. button:hover, input:hover, button:focus, input:focus, .button:hover, .button:focus {
  115. /* background-color: #c370d9; */
  116. box-shadow: 0px 0px 6px white;
  117. color: white;
  118. }
  119. hr {
  120. border-top: 1px solid #b058c6;
  121. }
  122. p {
  123. margin-right: 5%;
  124. margin-left: 5%;
  125. }
  126. .searchbar {
  127. width: 90%;
  128. height: 70;
  129. position: fixed;
  130. top: 0;
  131. margin-top: 1%;
  132. left: 5%;
  133. }
  134. .nowplayingbar {
  135. width: 90%;
  136. height: 200;
  137. position: fixed;
  138. bottom: 0;
  139. margin-bottom: 1%;
  140. left: 5%;
  141. }
  142. .side_found { margin-top: 200}
  143. /* prgoress bar theme */
  144. .back_progress {background-color: #311a46;
  145. width: 100%;
  146. height: 6;
  147. border-radius: 3px;
  148. box-shadow: 0px 0px 5px #b058c6;
  149. }
  150. .front_progress {background-color: #b058c6;
  151. height: 6;
  152. border-radius: 3px;}
  153. .ulcont {
  154. width: 100%;
  155. }
  156. ul{
  157. padding: 0 0;
  158. margin: 0 0;
  159. list-style: none;
  160. width: 100%;
  161. border: 0px solid black;
  162. height: 30px;
  163. }
  164. ul li{
  165. width: 30%;
  166. display: block;
  167. float: left;
  168. text-align: right;
  169. line-height: 30px;
  170. }
  171. ul li:first-child{
  172. text-align: left;
  173. max-width: 70%;
  174. width: 70%;
  175. overflow: hidden;
  176. text-overflow: ellipsis;
  177. white-space: nowrap;
  178. }
  179. .slider {
  180. -webkit-appearance: none;
  181. width: 80%;
  182. height: 30px;
  183. border-radius: 15px;
  184. background: #311a46;
  185. box-shadow: 0px 0px 5px #b058c6;
  186. overflow: hidden;
  187. white-space: nowrap;
  188. box-sizing: border-box;
  189. }
  190. .slider::-webkit-slider-thumb {
  191. -webkit-appearance: none;
  192. appearance: none;
  193. width: 20px;
  194. height: 20px;
  195. border-radius: 50%;
  196. background: #b058c6;
  197. cursor: pointer;
  198. }
  199. .slider::-moz-range-thumb {
  200. width: 20px;
  201. height: 20px;
  202. border-radius: 50%;
  203. background: #b058c6;
  204. cursor: pointer;
  205. }
  206. img {
  207. border-radius: 20px;
  208. }
  209. }