style.css 1.6 KB

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