style.css 9.3 KB

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