style.css 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. #container {
  2. --base-color: white;
  3. --highlight-color: red;
  4. position: relative;
  5. display: grid;
  6. background-color: black;
  7. color: var(--base-color);
  8. height: 450px;
  9. width: 800px;
  10. margin: 0 auto;
  11. }
  12. #container #loading {
  13. display: inline-block;
  14. align-self: center;
  15. justify-self: center;
  16. }
  17. .kana {
  18. display: inline-block;
  19. position: relative;
  20. white-space: pre;
  21. }
  22. .kana::after {
  23. display: inline-block;
  24. content: attr(data-text);
  25. position: absolute;
  26. left: 0;
  27. top: 0;
  28. color: var(--highlight-color);
  29. font-weight: bold;
  30. overflow: hidden;
  31. width: 0px;
  32. transition: width 0.1s;
  33. }
  34. .kana.half::after {
  35. width: 50%;
  36. }
  37. .kana.full::after {
  38. width: 100%;
  39. }
  40. .romaji {
  41. display: inline-block;
  42. }
  43. .romaji.error {
  44. animation-name: pulse;
  45. animation-duration: 0.5s;
  46. animation-iteration-count: 1;
  47. }
  48. @keyframes pulse {
  49. 0% {
  50. transform: scale(1, 1)
  51. }
  52. 50% {
  53. transform: scale(2, 2)
  54. }
  55. 100% {
  56. transform: scale(1, 1)
  57. }
  58. }
  59. .progress-bar {
  60. position: relative;
  61. height: 5px;
  62. }
  63. .progress-bar .bg {
  64. position: absolute;
  65. width: 100%;
  66. height: 5px;
  67. background-color: var(--base-color);
  68. opacity: 0.5;
  69. }
  70. .progress-bar .shade {
  71. position: absolute;
  72. height: 5px;
  73. background-color: var(--base-color);
  74. animation-timing-function: linear;
  75. animation-play-state: paused;
  76. }
  77. @keyframes progress {
  78. from {
  79. width: 0%;
  80. }
  81. to {
  82. width: 100%;
  83. }
  84. }
  85. .level-control.waiting span {
  86. opacity: 0.5;
  87. }
  88. .level-control.waiting .romaji {
  89. color: transparent;
  90. }