1234567891011121314151617181920212223242526272829303132 |
- .time{
- position: absolute;
- left: 20px;
- top: 20px;
- display: flex;
- color: var(--white);
- border-radius: 4px;
- overflow: hidden;
- height: 36px;
- line-height: 36px;
- box-sizing: border-box;
- font-size: 18px;
- .status{
- display: flex;
- align-items: center;
- background-color: var(--live-time-status-background-color);
- padding: 10px;
- >div{
- margin-right: 5px;
- height: 20px;
- >div{
- height: 20px;
- }
- }
- }
- .text{
- background-color: var(--live-time-background-color);
- display: flex;
- align-items: center;
- padding: 10px;
- }
- }
|