| 1234567891011121314151617181920212223242526272829 |
- *:fullscreen, *:-webkit-full-screen, *:-moz-full-screen {
- background-color: white;
- }
- ::backdrop
- {
- background-color: white;
- }
- .live {
- 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 {
- font-weight:bold
- }
- .live div {
- height:25vh;
- display: flex;
- flex-direction: column;
- padding-left:6vw
- }
|