style.css 8.8 KB

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