style.css 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636
  1. #container {
  2. --base-color: white;
  3. --highlight-color: red;
  4. --base-font-size: 16px;
  5. position: relative;
  6. color: var(--base-color);
  7. font-family: sans;
  8. }
  9. #container:-webkit-full-screen {
  10. width: 100%;
  11. height: 100%;
  12. }
  13. /* components {{{ */
  14. /* background switcher {{{ */
  15. #background {
  16. background-color: black;
  17. }
  18. #background div {
  19. position: absolute;
  20. height: 100%;
  21. width: 100%;
  22. opacity: 0;
  23. transition: opacity 0.5s linear;
  24. background-size: cover;
  25. }
  26. #background div.image {
  27. filter: brightness(70%) contrast(70%);
  28. }
  29. #background div.show {
  30. opacity: 1;
  31. }
  32. /* }}} */
  33. /* progress bar {{{ */
  34. .progress-bar {
  35. position: relative;
  36. height: 0.3125em;
  37. }
  38. .progress-bar .bg {
  39. position: absolute;
  40. width: 100%;
  41. height: 0.3125em;
  42. background-color: var(--base-color);
  43. opacity: 0.5;
  44. }
  45. .progress-bar .shade {
  46. position: absolute;
  47. height: 0.3125em;
  48. background-color: var(--base-color);
  49. animation-timing-function: linear;
  50. animation-play-state: paused;
  51. }
  52. @keyframes progress {
  53. from {
  54. width: 0%;
  55. }
  56. to {
  57. width: 100%;
  58. }
  59. }
  60. /* }}} */
  61. /* }}} */
  62. /* main layout {{{ */
  63. /* base {{{ */
  64. #container {
  65. display: grid;
  66. grid-template-columns: [start] 18.75em [left] auto [right] 18.75em [end];
  67. grid-template-rows: [top] 3.125em [header] auto [game] 11.25em [bottom];
  68. font-size: var(--base-font-size);
  69. height: 450px;
  70. width: 800px;
  71. margin: 0 auto;
  72. overflow: hidden;
  73. }
  74. #container > div {
  75. overflow: hidden;
  76. position: relative;
  77. transition: top 0.5s, left 0.5s, opacity 0.5s;
  78. opacity: 0;
  79. }
  80. #container #background {
  81. opacity: 1;
  82. grid-column: start / end;
  83. grid-row: top / bottom;
  84. }
  85. #loading {
  86. grid-column: start / end;
  87. grid-row: top / bottom;
  88. align-self: center;
  89. justify-self: center;
  90. }
  91. #song-info {
  92. grid-column: start / right;
  93. grid-row: header / game;
  94. left: -31.25em;
  95. }
  96. #song-list {
  97. grid-column: right / end;
  98. grid-row: top / bottom;
  99. left: 18.75em;
  100. }
  101. #folder-info {
  102. grid-column: start / left;
  103. grid-row: top / header;
  104. left: -31.25em;
  105. }
  106. #game {
  107. top: 11.25em;
  108. grid-column: start / end;
  109. grid-row: game / bottom;
  110. }
  111. #score {
  112. grid-column: start / left;
  113. grid-row: header / bottom;
  114. left: -18.75em;
  115. }
  116. #loader {
  117. top: -3.125em;
  118. grid-column: right / end;
  119. grid-row: top / header;
  120. }
  121. #ready {
  122. grid-column: start / end;
  123. grid-row: top / bottom;
  124. align-self: center;
  125. justify-self: center;
  126. }
  127. /* }}} */
  128. /* loading {{{ */
  129. #container.loading #loading {
  130. opacity: 1;
  131. }
  132. #container.loading #loading.finished {
  133. opacity: 0;
  134. }
  135. #container.loading #song-info,
  136. #container.loading #folder-info {
  137. top: 3.125em;
  138. left: 0;
  139. }
  140. #container.loading #song-list {
  141. left: 3.125em;
  142. }
  143. /* }}} */
  144. /* select {{{ */
  145. #container.select #song-info,
  146. #container.select #folder-info {
  147. opacity: 1;
  148. top: 0;
  149. left: 0;
  150. }
  151. #container.select #song-list {
  152. opacity: 1;
  153. left: 0;
  154. }
  155. /* }}} */
  156. /* game {{{ */
  157. #container.game #folder-info {
  158. opacity: 1;
  159. top: 0;
  160. left: 0;
  161. }
  162. #container.game #song-info {
  163. opacity: 1;
  164. top: -9.375em;
  165. left: 0;
  166. }
  167. #container.game.game-loading #loader {
  168. opacity: 1;
  169. top: 0;
  170. }
  171. #container.game.game-loading #ready {
  172. opacity: 1;
  173. }
  174. #container.game.game-playing #game {
  175. opacity: 1;
  176. top: 0;
  177. }
  178. #container.game.game-finished #score {
  179. opacity: 1;
  180. left: 0;
  181. }
  182. /* }}} */
  183. /* }}} */
  184. /* sub layouts {{{ */
  185. /* select-screen {{{ */
  186. /* folder-info {{{ */
  187. #folder-info {
  188. display: flex;
  189. flex-direction: row;
  190. align-items: center;
  191. }
  192. #folder-info .left:hover,
  193. #folder-info .right:hover {
  194. text-shadow: 0em 0em 0.3125em var(--base-color);
  195. }
  196. #folder-info .material-icons {
  197. font-size: 1.5em;
  198. }
  199. /* }}} */
  200. /* song-info {{{ */
  201. #song-info {
  202. display: grid;
  203. }
  204. .song-info {
  205. align-self: end;
  206. margin-left: 1.25em;
  207. text-shadow: 0em 0em 0.3125em var(--base-color);
  208. }
  209. .song-info .genre {
  210. font-size: 0.75em;
  211. }
  212. .song-info .creator {
  213. font-size: 1.25em;
  214. line-height: 0.5;
  215. }
  216. .song-info .title {
  217. font-size: 1.875em;
  218. }
  219. /* }}} */
  220. /* song-list {{{ */
  221. .song-list {
  222. margin-left: 1.25em;
  223. transition: margin-top 0.2s;
  224. }
  225. .song-item {
  226. height: 2.5em;
  227. display: grid;
  228. grid-template-columns: 2.5em auto;
  229. grid-template-rows: 1em 1.5em;
  230. grid-template-areas:
  231. "diff creator"
  232. "diff title";
  233. transition: margin-left 0.2s;
  234. }
  235. .song-item div {
  236. white-space: nowrap;
  237. overflow: hidden;
  238. text-overflow: ellipsis;
  239. line-height: 1;
  240. }
  241. .song-item .difficulty {
  242. grid-area: diff;
  243. align-self: end;
  244. justify-self: end;
  245. margin-bottom: 0.375em;
  246. margin-right: 0.375em;
  247. font-style: italic;
  248. font-weight: bold;
  249. text-shadow: none;
  250. }
  251. .song-item .difficulty-bg {
  252. grid-area: diff;
  253. align-self: center;
  254. justify-self: center;
  255. height: 1.875em;
  256. width: 1.875em;
  257. background: radial-gradient(circle at 10% 10%, rgba(0, 255, 255, 1), transparent);
  258. border-radius: 20%;
  259. opacity: 0;
  260. transition: opacity 0.2s ease-in-out;
  261. }
  262. .song-item .difficulty-bg.normal {
  263. background: radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.6), transparent);
  264. opacity: 1;
  265. }
  266. .song-item:hover {
  267. text-shadow: 0em 0em 0.3125em var(--base-color);
  268. }
  269. .song-item.selected {
  270. margin-left: -0.625em;
  271. text-shadow: 0em 0em 0.3125em var(--base-color);
  272. }
  273. .song-item.selected .difficulty-bg {
  274. opacity: 1;
  275. box-shadow: -0.0625em -0.0625em 0.625em -0.125em var(--base-color);
  276. }
  277. .song-item.selected .difficulty-bg.normal {
  278. opacity: 0;
  279. }
  280. .song-item .creator {
  281. grid-area: creator;
  282. font-size: 0.75em;
  283. }
  284. .song-item .title {
  285. grid-area: title;
  286. font-size: 1.25em;
  287. }
  288. /* }}} */
  289. /* }}} */
  290. /* game-screen {{{ */
  291. /* loading-screen {{{ */
  292. #loader {
  293. display: flex;
  294. flex-direction: column;
  295. justify-content: center;
  296. align-items: center;
  297. }
  298. #loader .progress-bar {
  299. width: 80%;
  300. }
  301. #loader .progress-bar .shade {
  302. transition: width 0.2s;
  303. }
  304. #ready {
  305. display: flex;
  306. flex-direction: column;
  307. align-items: center;
  308. }
  309. #ready .status {
  310. font-size: 1.875em;
  311. }
  312. #ready .message {
  313. font-size: 0.875em;
  314. }
  315. /* }}} */
  316. /* track-progress {{{ */
  317. .track-progress {
  318. display: grid;
  319. grid-template-columns: max-content auto;
  320. grid-template-rows: 50% 50%;
  321. grid-template-areas:
  322. "tl tb"
  323. "il ib";
  324. grid-gap: 0em 0.625em;
  325. align-items: center;
  326. align-self: end;
  327. }
  328. .track-progress .total-label,
  329. .track-progress .interval-label {
  330. justify-self: right;
  331. font-variant-caps: small-caps;
  332. font-size: 0.75em;
  333. }
  334. .track-progress .total-label {
  335. grid-area: tl;
  336. }
  337. .track-progress .interval-label {
  338. grid-area: il;
  339. justify-self: right;
  340. }
  341. .track-progress .total {
  342. grid-area: tb;
  343. }
  344. .track-progress .interval {
  345. grid-area: ib;
  346. }
  347. /* }}} */
  348. /* typing area {{{ */
  349. #game {
  350. display: grid;
  351. grid-template-columns: 3.125em 3.125em auto;
  352. grid-template-rows: 2.5em 1.5em 0.75em 1.875em auto 1.375em;
  353. grid-template-areas:
  354. ". . track"
  355. "score score score"
  356. ". . kana"
  357. ". . kanji"
  358. "romaji-first romaji romaji"
  359. ". . stats";
  360. grid-row-gap: 0.125em;
  361. padding: 0.125em 1.25em;
  362. background: linear-gradient(transparent, rgba(0, 0, 0, 0.5));
  363. }
  364. #game .track-progress {
  365. grid-area: track;
  366. }
  367. #game .score-line {
  368. grid-area: score;
  369. }
  370. #game .kana-line {
  371. grid-area: kana;
  372. margin-left: 0.9375em;
  373. }
  374. #game .kanji-line {
  375. grid-area: kanji;
  376. padding-left: 0.3125em;
  377. border-bottom: solid 0.125em rgba(255, 255, 255, 0.5);
  378. border-left: solid 0.625em rgba(255, 255, 255, 0.5);
  379. border-radius: 0em 0em 0em 0.625em;
  380. }
  381. #game .stats-line {
  382. grid-area: stats;
  383. }
  384. #game .romaji-first,
  385. #game .romaji-line {
  386. text-transform: uppercase;
  387. align-self: baseline;
  388. line-height: 1;
  389. }
  390. #game .romaji-first {
  391. grid-area: romaji-first;
  392. justify-self: right;
  393. font-size: 2.25em;
  394. padding: 0em 0.05ex;
  395. }
  396. #game .romaji-line {
  397. grid-area: romaji;
  398. font-size: 1.25em;
  399. }
  400. #game .romaji-first.error {
  401. animation: pulse 0.2s;
  402. }
  403. /* }}} */
  404. /* score area {{{ */
  405. .score-line {
  406. display: flex;
  407. }
  408. .score-line .pair,
  409. .stats-line .pair {
  410. margin: 0em 0.25em;
  411. border-bottom: solid 0.125em rgba(255, 255, 255, 0.5);
  412. border-radius: 0.125em;
  413. }
  414. .score-line .pair span,
  415. .stats-line .pair span {
  416. text-align: right;
  417. padding: 0em 0.25em;
  418. }
  419. .score-line .combo {
  420. flex: none;
  421. width: 6.25em;
  422. text-align: left;
  423. }
  424. .score-line .pair {
  425. flex: 1;
  426. display: flex;
  427. }
  428. .stats-line {
  429. display: flex;
  430. justify-content: flex-end;
  431. }
  432. .stats-line .pair span {
  433. font-size: 0.875em;
  434. }
  435. .stats-line .pair .value {
  436. display: inline-block;
  437. min-width: 3.125em;
  438. }
  439. /* }}} */
  440. /* score screen {{{ */
  441. #score {
  442. display: grid;
  443. grid-template-columns: max-content auto;
  444. align-items: baseline;
  445. align-content: end;
  446. grid-gap: 0.3125em;
  447. padding: 1.25em;
  448. }
  449. #score .class,
  450. #score .score {
  451. text-shadow: 0em 0em 0.3125em var(--highlight-color);
  452. }
  453. #score .class {
  454. font-size: 2.5em;
  455. }
  456. #score .score {
  457. font-size: 1.5em;
  458. }
  459. /* }}} */
  460. .kana {
  461. display: inline-block;
  462. position: relative;
  463. white-space: pre;
  464. font-size: 0.75em;
  465. }
  466. .kana::after {
  467. display: inline-block;
  468. content: attr(data-text);
  469. position: absolute;
  470. left: 0;
  471. top: 0;
  472. color: var(--highlight-color);
  473. font-weight: bold;
  474. overflow: hidden;
  475. width: 0em;
  476. transition: width 0.1s;
  477. }
  478. .kana.half::after {
  479. width: 50%;
  480. }
  481. .kana.full::after {
  482. width: 100%;
  483. }
  484. @keyframes pulse {
  485. 0% {
  486. color: var(--base-color);
  487. }
  488. 50% {
  489. color: red;
  490. }
  491. 100% {
  492. color: var(--base-color);
  493. }
  494. }
  495. #game.waiting .kana-line,
  496. #game.waiting .kanji-line {
  497. opacity: 0.5;
  498. }
  499. #game.waiting .romaji-first,
  500. #game.waiting .romaji-line {
  501. color: transparent;
  502. }
  503. /* }}} */
  504. /* }}} */