|
|
@@ -1,42 +1,29 @@
|
|
|
+*:fullscreen, *:-webkit-full-screen, *:-moz-full-screen {
|
|
|
+ background-color: white;
|
|
|
+}
|
|
|
+::backdrop
|
|
|
+{
|
|
|
+ background-color: white;
|
|
|
+}
|
|
|
.live {
|
|
|
- background:white;
|
|
|
+ background: linear-gradient(to right, rgba(0,0,0,.1) 0%, rgba(202,234,206) 50%, rgba(0,0,0,.1) 100%);
|
|
|
+ font-size:4vmin;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: center;
|
|
|
+ width:100%;
|
|
|
+ flex-direction: column
|
|
|
}
|
|
|
.live .active {
|
|
|
- background: rgb(202,234,206);
|
|
|
font-weight:bold
|
|
|
}
|
|
|
-.live ul{
|
|
|
- list-style-type:none;
|
|
|
+.live div {
|
|
|
+ height:25vh;
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ padding-left:6vw
|
|
|
}
|
|
|
-.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%);
|
|
|
- }
|
|
|
|
|
|
|