lrc.css 626 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. .live {
  2. background:white;
  3. }
  4. .live .active {
  5. background: rgb(202,234,206);
  6. font-weight:bold
  7. }
  8. .live ul{
  9. list-style-type:none;
  10. }
  11. .live li{
  12. flex-direction:column;
  13. }
  14. .liveli {
  15. /*实现垂直居中*/
  16. align-items: center;
  17. /*实现水平居中*/
  18. justify-content: center;
  19. flex-direction: column
  20. }
  21. .live ul{
  22. font-family:"Times New Roman",Georgia,Serif;
  23. }
  24. .to-top {
  25. background-image: linear-gradient(
  26. to top,
  27. rgba(202,234,206) 0%,
  28. rgb(0,0,0,0) 60%);
  29. }
  30. .to-bottom {
  31. background-image: linear-gradient(
  32. to bottom,
  33. rgba(202,234,206) 0%,
  34. rgb(0,0,0,0) 60%);
  35. }