lrc.css 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. #lyriccontainer:fullscreen {
  2. background-color: white;
  3. align-items: center;
  4. justify-content: center;
  5. font-size: 4vmin;
  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: 1.6rem;
  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. align-items: center;
  38. justify-content: center;
  39. flex-direction:row;
  40. width:100%
  41. }
  42. #lyriccontainer #line-last {
  43. height: 8em;
  44. padding-left: 1em;
  45. }
  46. #lyriccontainer #line-current {
  47. height: 8em;
  48. padding-left: 1.5em;
  49. }
  50. #lyriccontainer #line-next {
  51. height: 8em;
  52. padding-left: 2em;
  53. }
  54. #lyricFullscreen,#lyricNoslep,#lyricBigger,#lyricSmaller {
  55. height: 2em;
  56. width: 8em;
  57. color: #fff;
  58. text-shadow: 0 1em 0 rgba(0,0,0,.2);
  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. }