style.css 9.4 KB

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