lrc.css 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. .fullscreen-lyric {
  2. align-items: center;
  3. justify-content: center;
  4. font-size: var(--full-font-size);
  5. flex-direction: column;
  6. }
  7. .fullscreen-lyric #line-last {
  8. height: 30vh;
  9. }
  10. .fullscreen-lyric #line-current {
  11. height: 30vh;
  12. }
  13. .fullscreen-lyric #line-next {
  14. height: 30vh;
  15. }
  16. .fullscreen-lyric #line-tools {
  17. font-size: 1.6rem;
  18. align-items: center;
  19. justify-content: center;
  20. flex-direction:row;
  21. width:100%
  22. }
  23. .fullscreen-lyric div {
  24. justify-content: center;
  25. display: flex;
  26. flex-direction: column;
  27. align-items: center;
  28. }
  29. .fullscreen-lyric .active {
  30. font-weight: bold
  31. }
  32. .def-lyric {
  33. background: linear-gradient(to right, rgba(0,0,0,.1) 0%, rgba(202,234,206) 50%, rgba(0,0,0,.1) 100%);
  34. font-size: var(--default-font-size);
  35. display: flex;
  36. width: 100%;
  37. flex-direction: column;
  38. height:100%;
  39. }
  40. .def-lyric .active {
  41. font-weight: bold
  42. }
  43. .def-lyric div {
  44. display: flex;
  45. flex-direction: column;
  46. }
  47. .def-lyric #line-tools {
  48. font-size: 1.6rem;
  49. align-items: center;
  50. justify-content: center;
  51. flex-direction:row;
  52. width:100%
  53. }
  54. .def-lyric #line-last {
  55. height: 8em;
  56. padding-left: 1em;
  57. }
  58. .def-lyric #line-current {
  59. height: 8em;
  60. padding-left: 1.5em;
  61. }
  62. .def-lyric #line-next {
  63. height: 8em;
  64. padding-left: 2em;
  65. }
  66. #line-tools button {
  67. height: 2em;
  68. width: 6em;
  69. color: #fff;
  70. background-color: #57a957;
  71. border-color: #57a957;
  72. background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255,255,255,.3)), to(rgba(255,255,255,0)));
  73. background-image: -webkit-linear-gradient(top, rgba(255,255,255,.3), rgba(255,255,255,0));
  74. background-image: -moz-linear-gradient(top, rgba(255,255,255,.3), rgba(255,255,255,0));
  75. background-image: -ms-linear-gradient(top, rgba(255,255,255,.3), rgba(255,255,255,0));
  76. background-image: -o-linear-gradient(top, rgba(255,255,255,.3), rgba(255,255,255,0));
  77. background-image: linear-gradient(top, rgba(255,255,255,.3), rgba(255,255,255,0));
  78. }