lrc.css 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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. }
  29. #lyriccontainer .active {
  30. font-weight: bold
  31. }
  32. #lyriccontainer div {
  33. display: flex;
  34. flex-direction: column;
  35. }
  36. #lyriccontainer #line-tools {
  37. font-size: 1.6rem;
  38. align-items: center;
  39. justify-content: center;
  40. flex-direction:row;
  41. width:100%
  42. }
  43. #lyriccontainer #line-last {
  44. height: 8em;
  45. padding-left: 1em;
  46. }
  47. #lyriccontainer #line-current {
  48. height: 8em;
  49. padding-left: 1.5em;
  50. }
  51. #lyriccontainer #line-next {
  52. height: 8em;
  53. padding-left: 2em;
  54. }
  55. #lyricFullscreen,#lyricNoslep,#lyricBigger,#lyricSmaller {
  56. height: 2em;
  57. width: 8em;
  58. color: #fff;
  59. background-color: #57a957;
  60. border-color: #57a957;
  61. background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255,255,255,.3)), to(rgba(255,255,255,0)));
  62. background-image: -webkit-linear-gradient(top, rgba(255,255,255,.3), rgba(255,255,255,0));
  63. background-image: -moz-linear-gradient(top, rgba(255,255,255,.3), rgba(255,255,255,0));
  64. background-image: -ms-linear-gradient(top, rgba(255,255,255,.3), rgba(255,255,255,0));
  65. background-image: -o-linear-gradient(top, rgba(255,255,255,.3), rgba(255,255,255,0));
  66. background-image: linear-gradient(top, rgba(255,255,255,.3), rgba(255,255,255,0));
  67. }