2
0

style.css 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371
  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. /* }}} */
  102. /* loading {{{ */
  103. #container.loading #loading {
  104. opacity: 1;
  105. }
  106. #container.loading #loading.finished {
  107. opacity: 0;
  108. }
  109. #container.loading #song-info,
  110. #container.loading #folder-info {
  111. top: 50px;
  112. left: 0;
  113. }
  114. #container.loading #song-list {
  115. left: 50px;
  116. }
  117. /* }}} */
  118. /* select {{{ */
  119. #container.select #song-info,
  120. #container.select #folder-info {
  121. opacity: 1;
  122. top: 0;
  123. left: 0;
  124. }
  125. #container.select #song-list {
  126. opacity: 1;
  127. left: 0;
  128. }
  129. /* }}} */
  130. /* game {{{ */
  131. #container.game #folder-info {
  132. opacity: 1;
  133. top: 0;
  134. left: 0;
  135. }
  136. #container.game #song-info {
  137. opacity: 1;
  138. top: -150px;
  139. left: 0;
  140. }
  141. #container.game #game {
  142. opacity: 1;
  143. top: 0;
  144. }
  145. /* }}} */
  146. /* }}} */
  147. /* sub layouts {{{ */
  148. /* select-screen {{{ */
  149. /* folder-info {{{ */
  150. #folder-info {
  151. display: flex;
  152. flex-direction: row;
  153. align-items: center;
  154. }
  155. #folder-info .left:hover,
  156. #folder-info .right:hover {
  157. text-shadow: 0px 0px 5px var(--base-color);
  158. }
  159. /* }}} */
  160. /* song-info {{{ */
  161. #song-info {
  162. display: grid;
  163. }
  164. .song-info {
  165. align-self: end;
  166. margin-left: 20px;
  167. text-shadow: 0px 0px 5px var(--base-color);
  168. }
  169. .song-info .genre {
  170. font-size: 12px;
  171. }
  172. .song-info .creator {
  173. font-size: 20px;
  174. line-height: 0.5;
  175. }
  176. .song-info .title {
  177. font-size: 30px;
  178. }
  179. /* }}} */
  180. /* song-list {{{ */
  181. .song-list {
  182. margin-left: 20px;
  183. transition: margin-top 0.2s;
  184. }
  185. .song-item {
  186. height: 40px;
  187. display: grid;
  188. grid-template-columns: 40px auto;
  189. grid-template-rows: 12px 28px;
  190. grid-template-areas:
  191. "diff creator"
  192. "diff title";
  193. transition: margin-left 0.2s;
  194. }
  195. .song-item .difficulty {
  196. grid-area: diff;
  197. align-self: end;
  198. justify-self: end;
  199. margin-bottom: 1px;
  200. margin-right: 5px;
  201. font-style: italic;
  202. font-weight: bold;
  203. }
  204. .song-item .difficulty-bg {
  205. grid-area: diff;
  206. align-self: center;
  207. justify-self: center;
  208. height: 30px;
  209. width: 30px;
  210. background: radial-gradient(circle at 10% 10%, rgba(0, 255, 255, 1), transparent);
  211. border-radius: 20%;
  212. opacity: 0;
  213. transition: opacity 0.2s ease-in-out;
  214. }
  215. .song-item .difficulty-bg.normal {
  216. background: radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.6), transparent);
  217. opacity: 1;
  218. }
  219. .song-item:hover {
  220. text-shadow: 0px 0px 5px var(--base-color);
  221. }
  222. .song-item.selected {
  223. margin-left: -10px;
  224. text-shadow: 0px 0px 5px var(--base-color);
  225. }
  226. .song-item.selected .difficulty-bg {
  227. opacity: 1;
  228. box-shadow: -1px -1px 10px -2px var(--base-color);
  229. }
  230. .song-item.selected .difficulty-bg.normal {
  231. opacity: 0;
  232. }
  233. .song-item .creator {
  234. grid-area: creator;
  235. font-size: 12px;
  236. }
  237. .song-item .title {
  238. grid-area: title;
  239. font-size: 20px;
  240. }
  241. /* }}} */
  242. /* }}} */
  243. /* game-screen {{{ */
  244. .kana {
  245. display: inline-block;
  246. position: relative;
  247. white-space: pre;
  248. }
  249. .kana::after {
  250. display: inline-block;
  251. content: attr(data-text);
  252. position: absolute;
  253. left: 0;
  254. top: 0;
  255. color: var(--highlight-color);
  256. font-weight: bold;
  257. overflow: hidden;
  258. width: 0px;
  259. transition: width 0.1s;
  260. }
  261. .kana.half::after {
  262. width: 50%;
  263. }
  264. .kana.full::after {
  265. width: 100%;
  266. }
  267. .romaji {
  268. display: inline-block;
  269. }
  270. .romaji.error {
  271. animation-name: pulse;
  272. animation-duration: 0.5s;
  273. animation-iteration-count: 1;
  274. }
  275. @keyframes pulse {
  276. 0% {
  277. transform: scale(1, 1)
  278. }
  279. 50% {
  280. transform: scale(2, 2)
  281. }
  282. 100% {
  283. transform: scale(1, 1)
  284. }
  285. }
  286. .level-control.waiting span {
  287. opacity: 0.5;
  288. }
  289. .level-control.waiting .romaji {
  290. color: transparent;
  291. }
  292. /* }}} */
  293. /* }}} */