2
0

style.css 1.8 KB

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