lrc.css 1.8 KB

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