2
0

style.css 8.2 KB

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