2
0

style.css 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618
  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: 1px;
  233. margin-right: 5px;
  234. font-style: italic;
  235. font-weight: bold;
  236. }
  237. .song-item .difficulty-bg {
  238. grid-area: diff;
  239. align-self: center;
  240. justify-self: center;
  241. height: 30px;
  242. width: 30px;
  243. background: radial-gradient(circle at 10% 10%, rgba(0, 255, 255, 1), transparent);
  244. border-radius: 20%;
  245. opacity: 0;
  246. transition: opacity 0.2s ease-in-out;
  247. }
  248. .song-item .difficulty-bg.normal {
  249. background: radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.6), transparent);
  250. opacity: 1;
  251. }
  252. .song-item:hover {
  253. text-shadow: 0px 0px 5px var(--base-color);
  254. }
  255. .song-item.selected {
  256. margin-left: -10px;
  257. text-shadow: 0px 0px 5px var(--base-color);
  258. }
  259. .song-item.selected .difficulty-bg {
  260. opacity: 1;
  261. box-shadow: -1px -1px 10px -2px var(--base-color);
  262. }
  263. .song-item.selected .difficulty-bg.normal {
  264. opacity: 0;
  265. }
  266. .song-item .creator {
  267. grid-area: creator;
  268. font-size: 12px;
  269. }
  270. .song-item .title {
  271. grid-area: title;
  272. font-size: 20px;
  273. }
  274. /* }}} */
  275. /* }}} */
  276. /* game-screen {{{ */
  277. /* loading-screen {{{ */
  278. #loader {
  279. display: flex;
  280. flex-direction: column;
  281. justify-content: center;
  282. align-items: center;
  283. }
  284. #loader .progress-bar {
  285. width: 80%;
  286. }
  287. #loader .progress-bar .shade {
  288. transition: width 0.2s;
  289. }
  290. #ready {
  291. display: flex;
  292. flex-direction: column;
  293. align-items: center;
  294. }
  295. #ready .status {
  296. font-size: 30px;
  297. }
  298. #ready .message {
  299. font-size: 14px;
  300. }
  301. /* }}} */
  302. /* track-progress {{{ */
  303. .track-progress {
  304. display: grid;
  305. grid-template-columns: max-content auto;
  306. grid-template-rows: 50% 50%;
  307. grid-template-areas:
  308. "tl tb"
  309. "il ib";
  310. grid-gap: 0px 10px;
  311. align-items: center;
  312. align-self: end;
  313. }
  314. .track-progress .total-label,
  315. .track-progress .interval-label {
  316. justify-self: right;
  317. font-variant-caps: small-caps;
  318. font-size: 12px;
  319. }
  320. .track-progress .total-label {
  321. grid-area: tl;
  322. }
  323. .track-progress .interval-label {
  324. grid-area: il;
  325. justify-self: right;
  326. }
  327. .track-progress .total {
  328. grid-area: tb;
  329. }
  330. .track-progress .interval {
  331. grid-area: ib;
  332. }
  333. /* }}} */
  334. /* typing area {{{ */
  335. #game {
  336. display: grid;
  337. grid-template-columns: 50px 50px auto;
  338. grid-template-rows: 40px 24px 12px 30px auto 22px;
  339. grid-template-areas:
  340. ". . track"
  341. "score score score"
  342. ". . kana"
  343. ". . kanji"
  344. "romaji-first romaji romaji"
  345. ". . stats";
  346. grid-row-gap: 2px;
  347. padding: 2px 20px;
  348. }
  349. #game .track-progress {
  350. grid-area: track;
  351. }
  352. #game .score-line {
  353. grid-area: score;
  354. }
  355. #game .kana-line {
  356. grid-area: kana;
  357. font-size: 12px;
  358. margin-left: 15px;
  359. }
  360. #game .kanji-line {
  361. grid-area: kanji;
  362. padding-left: 5px;
  363. border-bottom: solid 2px rgba(255, 255, 255, 0.5);
  364. border-left: solid 10px rgba(255, 255, 255, 0.5);
  365. border-radius: 0px 0px 0px 10px;
  366. }
  367. #game .stats-line {
  368. grid-area: stats;
  369. }
  370. #game .romaji-first,
  371. #game .romaji-line {
  372. text-transform: uppercase;
  373. align-self: baseline;
  374. line-height: 1;
  375. }
  376. #game .romaji-first {
  377. grid-area: romaji-first;
  378. justify-self: right;
  379. font-size: 36px;
  380. padding: 0px 2px;
  381. }
  382. #game .romaji-line {
  383. grid-area: romaji;
  384. font-size: 20px;
  385. }
  386. #game .romaji-first.error {
  387. animation: pulse 0.2s;
  388. }
  389. /* }}} */
  390. /* score area {{{ */
  391. .score-line {
  392. display: flex;
  393. }
  394. .score-line .pair,
  395. .stats-line .pair {
  396. margin: 0px 4px;
  397. border-bottom: solid 2px rgba(255, 255, 255, 0.5);
  398. border-radius: 2px;
  399. }
  400. .score-line .pair span,
  401. .stats-line .pair span {
  402. text-align: right;
  403. padding: 0px 4px;
  404. }
  405. .score-line .combo {
  406. flex: none;
  407. width: 100px;
  408. text-align: left;
  409. }
  410. .score-line .pair {
  411. flex: 1;
  412. display: flex;
  413. }
  414. .stats-line {
  415. display: flex;
  416. justify-content: right;
  417. }
  418. .stats-line .pair span {
  419. font-size: 14px;
  420. }
  421. .stats-line .pair .value {
  422. display: inline-block;
  423. min-width: 50px;
  424. }
  425. /* }}} */
  426. /* score screen {{{ */
  427. #score {
  428. display: grid;
  429. grid-template-columns: max-content auto;
  430. align-items: baseline;
  431. align-content: end;
  432. grid-gap: 5px;
  433. padding: 20px;
  434. }
  435. #score .class,
  436. #score .score {
  437. text-shadow: 0px 0px 5px var(--highlight-color);
  438. }
  439. #score .class {
  440. font-size: 40px;
  441. }
  442. #score .score {
  443. font-size: 24px;
  444. }
  445. /* }}} */
  446. .kana {
  447. display: inline-block;
  448. position: relative;
  449. white-space: pre;
  450. }
  451. .kana::after {
  452. display: inline-block;
  453. content: attr(data-text);
  454. position: absolute;
  455. left: 0;
  456. top: 0;
  457. color: var(--highlight-color);
  458. font-weight: bold;
  459. overflow: hidden;
  460. width: 0px;
  461. transition: width 0.1s;
  462. }
  463. .kana.half::after {
  464. width: 50%;
  465. }
  466. .kana.full::after {
  467. width: 100%;
  468. }
  469. @keyframes pulse {
  470. 0% {
  471. color: var(--base-color);
  472. }
  473. 50% {
  474. color: red;
  475. }
  476. 100% {
  477. color: var(--base-color);
  478. }
  479. }
  480. #game.waiting .kana-line,
  481. #game.waiting .kanji-line {
  482. opacity: 0.5;
  483. }
  484. #game.waiting .romaji-first,
  485. #game.waiting .romaji-line {
  486. color: transparent;
  487. }
  488. /* }}} */
  489. /* }}} */