style.css 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426
  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] 150px [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: 150px;
  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: 12px 28px;
  208. grid-template-areas:
  209. "diff creator"
  210. "diff title";
  211. transition: margin-left 0.2s;
  212. }
  213. .song-item .difficulty {
  214. grid-area: diff;
  215. align-self: end;
  216. justify-self: end;
  217. margin-bottom: 1px;
  218. margin-right: 5px;
  219. font-style: italic;
  220. font-weight: bold;
  221. }
  222. .song-item .difficulty-bg {
  223. grid-area: diff;
  224. align-self: center;
  225. justify-self: center;
  226. height: 30px;
  227. width: 30px;
  228. background: radial-gradient(circle at 10% 10%, rgba(0, 255, 255, 1), transparent);
  229. border-radius: 20%;
  230. opacity: 0;
  231. transition: opacity 0.2s ease-in-out;
  232. }
  233. .song-item .difficulty-bg.normal {
  234. background: radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.6), transparent);
  235. opacity: 1;
  236. }
  237. .song-item:hover {
  238. text-shadow: 0px 0px 5px var(--base-color);
  239. }
  240. .song-item.selected {
  241. margin-left: -10px;
  242. text-shadow: 0px 0px 5px var(--base-color);
  243. }
  244. .song-item.selected .difficulty-bg {
  245. opacity: 1;
  246. box-shadow: -1px -1px 10px -2px var(--base-color);
  247. }
  248. .song-item.selected .difficulty-bg.normal {
  249. opacity: 0;
  250. }
  251. .song-item .creator {
  252. grid-area: creator;
  253. font-size: 12px;
  254. }
  255. .song-item .title {
  256. grid-area: title;
  257. font-size: 20px;
  258. }
  259. /* }}} */
  260. /* }}} */
  261. /* game-screen {{{ */
  262. /* loading-screen {{{ */
  263. #loader {
  264. display: flex;
  265. flex-direction: column;
  266. justify-content: center;
  267. align-items: center;
  268. }
  269. #loader .progress-bar {
  270. width: 80%;
  271. }
  272. #loader .progress-bar .shade {
  273. transition: width 0.2s;
  274. }
  275. #ready {
  276. display: flex;
  277. flex-direction: column;
  278. align-items: center;
  279. }
  280. #ready .status {
  281. font-size: 30px;
  282. }
  283. #ready .message {
  284. font-size: 14px;
  285. }
  286. /* }}} */
  287. .kana {
  288. display: inline-block;
  289. position: relative;
  290. white-space: pre;
  291. }
  292. .kana::after {
  293. display: inline-block;
  294. content: attr(data-text);
  295. position: absolute;
  296. left: 0;
  297. top: 0;
  298. color: var(--highlight-color);
  299. font-weight: bold;
  300. overflow: hidden;
  301. width: 0px;
  302. transition: width 0.1s;
  303. }
  304. .kana.half::after {
  305. width: 50%;
  306. }
  307. .kana.full::after {
  308. width: 100%;
  309. }
  310. .romaji {
  311. display: inline-block;
  312. }
  313. .romaji.error {
  314. animation-name: pulse;
  315. animation-duration: 0.5s;
  316. animation-iteration-count: 1;
  317. }
  318. @keyframes pulse {
  319. 0% {
  320. transform: scale(1, 1)
  321. }
  322. 50% {
  323. transform: scale(2, 2)
  324. }
  325. 100% {
  326. transform: scale(1, 1)
  327. }
  328. }
  329. .level-control.waiting span {
  330. opacity: 0.5;
  331. }
  332. .level-control.waiting .romaji {
  333. color: transparent;
  334. }
  335. /* }}} */
  336. /* }}} */