style.css 9.2 KB

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