style.css 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308
  1. #container {
  2. --base-color: white;
  3. --highlight-color: red;
  4. position: relative;
  5. color: var(--base-color);
  6. font-family: sans;
  7. height: 450px;
  8. width: 800px;
  9. margin: 0 auto;
  10. overflow: hidden;
  11. display: grid;
  12. grid-template-columns: [start] auto [right] 300px [end];
  13. grid-template-rows: [top] 50px [header] auto [game] 150px [bottom];
  14. }
  15. #container > div {
  16. overflow: hidden;
  17. position: relative;
  18. transition: top 0.5s, left 0.5s, opacity 0.5s;
  19. opacity: 0;
  20. }
  21. #loading {
  22. grid-column: start / end;
  23. grid-row: top / bottom;
  24. align-self: center;
  25. justify-self: center;
  26. }
  27. #song-info {
  28. grid-column: start / right;
  29. grid-row: header / game;
  30. display: grid;
  31. left: -500px;
  32. }
  33. #song-list {
  34. grid-column: right / end;
  35. grid-row: top / bottom;
  36. left: 300px;
  37. }
  38. #folder-info {
  39. grid-column: start / right;
  40. grid-row: top / header;
  41. display: flex;
  42. flex-direction: row;
  43. align-items: center;
  44. left: -500px;
  45. }
  46. #game {
  47. top: 150px;
  48. grid-column: start / end;
  49. grid-row: game / bottom;
  50. }
  51. #container #background {
  52. opacity: 1;
  53. position: absolute;
  54. height: 100%;
  55. width: 100%;
  56. z-index: -99;
  57. background-color: black;
  58. }
  59. #background div {
  60. position: absolute;
  61. height: 100%;
  62. width: 100%;
  63. opacity: 0;
  64. transition: opacity 0.5s linear;
  65. }
  66. #background div.show {
  67. opacity: 1;
  68. }
  69. #container.loading #loading {
  70. opacity: 1;
  71. }
  72. #container.loading #loading.finished {
  73. opacity: 0;
  74. }
  75. #container.loading #song-info,
  76. #container.loading #folder-info {
  77. top: 50px;
  78. left: 0;
  79. }
  80. #container.loading #song-list {
  81. left: 50px;
  82. }
  83. #container.select #song-info,
  84. #container.select #folder-info {
  85. opacity: 1;
  86. top: 0;
  87. left: 0;
  88. }
  89. #container.select #song-list {
  90. opacity: 1;
  91. left: 0;
  92. }
  93. #container.game #folder-info {
  94. opacity: 1;
  95. top: 0;
  96. left: 0;
  97. }
  98. #container.game #song-info {
  99. opacity: 1;
  100. top: -150px;
  101. left: 0;
  102. }
  103. #container.game #game {
  104. opacity: 1;
  105. top: 0;
  106. }
  107. #folder-info .left:hover,
  108. #folder-info .right:hover {
  109. text-shadow: 0px 0px 5px var(--base-color);
  110. }
  111. .song-info {
  112. align-self: end;
  113. margin-left: 20px;
  114. text-shadow: 0px 0px 5px var(--base-color);
  115. }
  116. .song-info .genre {
  117. font-size: 12px;
  118. }
  119. .song-info .creator {
  120. font-size: 20px;
  121. line-height: 0.5;
  122. }
  123. .song-info .title {
  124. font-size: 30px;
  125. }
  126. .song-list {
  127. margin-left: 20px;
  128. transition: margin-top 0.2s;
  129. }
  130. .song-item {
  131. height: 40px;
  132. display: grid;
  133. grid-template-columns: 40px auto;
  134. grid-template-rows: 12px 28px;
  135. grid-template-areas:
  136. "diff creator"
  137. "diff title";
  138. transition: margin-left 0.2s;
  139. }
  140. .song-item .difficulty {
  141. grid-area: diff;
  142. align-self: end;
  143. justify-self: end;
  144. margin-bottom: 1px;
  145. margin-right: 5px;
  146. font-style: italic;
  147. font-weight: bold;
  148. }
  149. .song-item .difficulty-bg {
  150. grid-area: diff;
  151. align-self: center;
  152. justify-self: center;
  153. height: 30px;
  154. width: 30px;
  155. background: radial-gradient(circle at 10% 10%, rgba(0, 255, 255, 1), transparent);
  156. border-radius: 20%;
  157. opacity: 0;
  158. transition: opacity 0.2s ease-in-out;
  159. }
  160. .song-item .difficulty-bg.normal {
  161. background: radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.6), transparent);
  162. opacity: 1;
  163. }
  164. .song-item:hover {
  165. text-shadow: 0px 0px 5px var(--base-color);
  166. }
  167. .song-item.selected {
  168. margin-left: -10px;
  169. text-shadow: 0px 0px 5px var(--base-color);
  170. }
  171. .song-item.selected .difficulty-bg {
  172. opacity: 1;
  173. box-shadow: -1px -1px 10px -2px var(--base-color);
  174. }
  175. .song-item.selected .difficulty-bg.normal {
  176. opacity: 0;
  177. }
  178. .song-item .creator {
  179. grid-area: creator;
  180. font-size: 12px;
  181. }
  182. .song-item .title {
  183. grid-area: title;
  184. font-size: 20px;
  185. }
  186. .kana {
  187. display: inline-block;
  188. position: relative;
  189. white-space: pre;
  190. }
  191. .kana::after {
  192. display: inline-block;
  193. content: attr(data-text);
  194. position: absolute;
  195. left: 0;
  196. top: 0;
  197. color: var(--highlight-color);
  198. font-weight: bold;
  199. overflow: hidden;
  200. width: 0px;
  201. transition: width 0.1s;
  202. }
  203. .kana.half::after {
  204. width: 50%;
  205. }
  206. .kana.full::after {
  207. width: 100%;
  208. }
  209. .romaji {
  210. display: inline-block;
  211. }
  212. .romaji.error {
  213. animation-name: pulse;
  214. animation-duration: 0.5s;
  215. animation-iteration-count: 1;
  216. }
  217. @keyframes pulse {
  218. 0% {
  219. transform: scale(1, 1)
  220. }
  221. 50% {
  222. transform: scale(2, 2)
  223. }
  224. 100% {
  225. transform: scale(1, 1)
  226. }
  227. }
  228. .progress-bar {
  229. position: relative;
  230. height: 5px;
  231. }
  232. .progress-bar .bg {
  233. position: absolute;
  234. width: 100%;
  235. height: 5px;
  236. background-color: var(--base-color);
  237. opacity: 0.5;
  238. }
  239. .progress-bar .shade {
  240. position: absolute;
  241. height: 5px;
  242. background-color: var(--base-color);
  243. animation-timing-function: linear;
  244. animation-play-state: paused;
  245. }
  246. @keyframes progress {
  247. from {
  248. width: 0%;
  249. }
  250. to {
  251. width: 100%;
  252. }
  253. }
  254. .level-control.waiting span {
  255. opacity: 0.5;
  256. }
  257. .level-control.waiting .romaji {
  258. color: transparent;
  259. }