chronography.module.less 600 B

1234567891011121314151617181920212223242526272829303132
  1. .time{
  2. position: absolute;
  3. left: 20px;
  4. top: 20px;
  5. display: flex;
  6. color: var(--white);
  7. border-radius: 4px;
  8. overflow: hidden;
  9. height: 36px;
  10. line-height: 36px;
  11. box-sizing: border-box;
  12. font-size: 18px;
  13. .status{
  14. display: flex;
  15. align-items: center;
  16. background-color: var(--live-time-status-background-color);
  17. padding: 10px;
  18. >div{
  19. margin-right: 5px;
  20. height: 20px;
  21. >div{
  22. height: 20px;
  23. }
  24. }
  25. }
  26. .text{
  27. background-color: var(--live-time-background-color);
  28. display: flex;
  29. align-items: center;
  30. padding: 10px;
  31. }
  32. }