style.css 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515
  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] 180px [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: 180px;
  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. #ready {
  107. grid-column: start / end;
  108. grid-row: top / bottom;
  109. align-self: center;
  110. justify-self: center;
  111. }
  112. /* }}} */
  113. /* loading {{{ */
  114. #container.loading #loading {
  115. opacity: 1;
  116. }
  117. #container.loading #loading.finished {
  118. opacity: 0;
  119. }
  120. #container.loading #song-info,
  121. #container.loading #folder-info {
  122. top: 50px;
  123. left: 0;
  124. }
  125. #container.loading #song-list {
  126. left: 50px;
  127. }
  128. /* }}} */
  129. /* select {{{ */
  130. #container.select #song-info,
  131. #container.select #folder-info {
  132. opacity: 1;
  133. top: 0;
  134. left: 0;
  135. }
  136. #container.select #song-list {
  137. opacity: 1;
  138. left: 0;
  139. }
  140. /* }}} */
  141. /* game {{{ */
  142. #container.game #folder-info {
  143. opacity: 1;
  144. top: 0;
  145. left: 0;
  146. }
  147. #container.game #song-info {
  148. opacity: 1;
  149. top: -150px;
  150. left: 0;
  151. }
  152. #container.game.game-loading #loader {
  153. opacity: 1;
  154. top: 0;
  155. }
  156. #container.game.game-loading #ready {
  157. opacity: 1;
  158. }
  159. #container.game.game-playing #game {
  160. opacity: 1;
  161. top: 0;
  162. }
  163. /* }}} */
  164. /* }}} */
  165. /* sub layouts {{{ */
  166. /* select-screen {{{ */
  167. /* folder-info {{{ */
  168. #folder-info {
  169. display: flex;
  170. flex-direction: row;
  171. align-items: center;
  172. }
  173. #folder-info .left:hover,
  174. #folder-info .right:hover {
  175. text-shadow: 0px 0px 5px var(--base-color);
  176. }
  177. /* }}} */
  178. /* song-info {{{ */
  179. #song-info {
  180. display: grid;
  181. }
  182. .song-info {
  183. align-self: end;
  184. margin-left: 20px;
  185. text-shadow: 0px 0px 5px var(--base-color);
  186. }
  187. .song-info .genre {
  188. font-size: 12px;
  189. }
  190. .song-info .creator {
  191. font-size: 20px;
  192. line-height: 0.5;
  193. }
  194. .song-info .title {
  195. font-size: 30px;
  196. }
  197. /* }}} */
  198. /* song-list {{{ */
  199. .song-list {
  200. margin-left: 20px;
  201. transition: margin-top 0.2s;
  202. }
  203. .song-item {
  204. height: 40px;
  205. display: grid;
  206. grid-template-columns: 40px auto;
  207. grid-template-rows: 12px 28px;
  208. grid-template-areas:
  209. "diff creator"
  210. "diff title";
  211. transition: margin-left 0.2s;
  212. }
  213. .song-item .difficulty {
  214. grid-area: diff;
  215. align-self: end;
  216. justify-self: end;
  217. margin-bottom: 1px;
  218. margin-right: 5px;
  219. font-style: italic;
  220. font-weight: bold;
  221. }
  222. .song-item .difficulty-bg {
  223. grid-area: diff;
  224. align-self: center;
  225. justify-self: center;
  226. height: 30px;
  227. width: 30px;
  228. background: radial-gradient(circle at 10% 10%, rgba(0, 255, 255, 1), transparent);
  229. border-radius: 20%;
  230. opacity: 0;
  231. transition: opacity 0.2s ease-in-out;
  232. }
  233. .song-item .difficulty-bg.normal {
  234. background: radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.6), transparent);
  235. opacity: 1;
  236. }
  237. .song-item:hover {
  238. text-shadow: 0px 0px 5px var(--base-color);
  239. }
  240. .song-item.selected {
  241. margin-left: -10px;
  242. text-shadow: 0px 0px 5px var(--base-color);
  243. }
  244. .song-item.selected .difficulty-bg {
  245. opacity: 1;
  246. box-shadow: -1px -1px 10px -2px var(--base-color);
  247. }
  248. .song-item.selected .difficulty-bg.normal {
  249. opacity: 0;
  250. }
  251. .song-item .creator {
  252. grid-area: creator;
  253. font-size: 12px;
  254. }
  255. .song-item .title {
  256. grid-area: title;
  257. font-size: 20px;
  258. }
  259. /* }}} */
  260. /* }}} */
  261. /* game-screen {{{ */
  262. /* loading-screen {{{ */
  263. #loader {
  264. display: flex;
  265. flex-direction: column;
  266. justify-content: center;
  267. align-items: center;
  268. }
  269. #loader .progress-bar {
  270. width: 80%;
  271. }
  272. #loader .progress-bar .shade {
  273. transition: width 0.2s;
  274. }
  275. #ready {
  276. display: flex;
  277. flex-direction: column;
  278. align-items: center;
  279. }
  280. #ready .status {
  281. font-size: 30px;
  282. }
  283. #ready .message {
  284. font-size: 14px;
  285. }
  286. /* }}} */
  287. /* track-progress {{{ */
  288. .track-progress {
  289. display: grid;
  290. grid-template-columns: max-content auto;
  291. grid-template-rows: 50% 50%;
  292. grid-template-areas:
  293. "tl tb"
  294. "il ib";
  295. grid-gap: 0px 10px;
  296. align-items: center;
  297. align-self: end;
  298. }
  299. .track-progress .total-label,
  300. .track-progress .interval-label {
  301. justify-self: right;
  302. font-variant-caps: small-caps;
  303. font-size: 12px;
  304. }
  305. .track-progress .total-label {
  306. grid-area: tl;
  307. }
  308. .track-progress .interval-label {
  309. grid-area: il;
  310. justify-self: right;
  311. }
  312. .track-progress .total {
  313. grid-area: tb;
  314. }
  315. .track-progress .interval {
  316. grid-area: ib;
  317. }
  318. /* }}} */
  319. /* typing area {{{ */
  320. #game {
  321. display: grid;
  322. grid-template-columns: 50px 50px auto;
  323. grid-template-rows: auto 12px 30px 40px;
  324. grid-template-areas:
  325. ". . track"
  326. ". . kana"
  327. ". . kanji"
  328. "romaji-first romaji romaji";
  329. padding: 20px;
  330. }
  331. #game .track-progress {
  332. grid-area: track;
  333. }
  334. #game .kana-line {
  335. grid-area: kana;
  336. font-size: 12px;
  337. margin-left: 15px;
  338. }
  339. #game .kanji-line {
  340. grid-area: kanji;
  341. padding-left: 5px;
  342. border-bottom: solid 2px rgba(255, 255, 255, 0.5);
  343. border-left: solid 10px rgba(255, 255, 255, 0.5);
  344. border-radius: 0px 0px 0px 10px;
  345. }
  346. #game .romaji-first,
  347. #game .romaji-line {
  348. text-transform: uppercase;
  349. align-self: baseline;
  350. }
  351. #game .romaji-first {
  352. grid-area: romaji-first;
  353. justify-self: right;
  354. font-size: 36px;
  355. padding: 0px 2px;
  356. }
  357. #game .romaji-line {
  358. grid-area: romaji;
  359. font-size: 20px;
  360. }
  361. #game .romaji-first.error {
  362. animation: pulse 0.2s;
  363. }
  364. /* }}} */
  365. .kana {
  366. display: inline-block;
  367. position: relative;
  368. white-space: pre;
  369. }
  370. .kana::after {
  371. display: inline-block;
  372. content: attr(data-text);
  373. position: absolute;
  374. left: 0;
  375. top: 0;
  376. color: var(--highlight-color);
  377. font-weight: bold;
  378. overflow: hidden;
  379. width: 0px;
  380. transition: width 0.1s;
  381. }
  382. .kana.half::after {
  383. width: 50%;
  384. }
  385. .kana.full::after {
  386. width: 100%;
  387. }
  388. @keyframes pulse {
  389. 0% {
  390. color: var(--base-color);
  391. }
  392. 50% {
  393. color: red;
  394. }
  395. 100% {
  396. color: var(--base-color);
  397. }
  398. }
  399. #game.waiting .kana-line,
  400. #game.waiting .kanji-line {
  401. opacity: 0.5;
  402. }
  403. #game.waiting .romaji-first,
  404. #game.waiting .romaji-line {
  405. color: transparent;
  406. }
  407. /* }}} */
  408. /* }}} */