| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- .live {
- background:white;
- }
- .live .active {
- background: rgb(202,234,206);
- font-weight:bold
- }
- .live ul{
- list-style-type:none;
- }
- .live li{
- flex-direction:column;
- }
- .liveli {
- /*实现垂直居中*/
- align-items: center;
- /*实现水平居中*/
- justify-content: center;
- flex-direction: column
- }
-
- .live ul{
- font-family:"Times New Roman",Georgia,Serif;
- }
- .to-top {
- background-image: linear-gradient(
- to top,
- rgba(202,234,206) 0%,
- rgb(0,0,0,0) 60%);
- }
- .to-bottom {
- background-image: linear-gradient(
- to bottom,
- rgba(202,234,206) 0%,
- rgb(0,0,0,0) 60%);
- }
|