style.css 5.6 KB

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