live.component.scss 756 B

12345678910111213141516171819202122232425262728293031323334353637
  1. .video_box {
  2. background-color: #9d9d9d;
  3. width: 100%;
  4. height: 100vh;
  5. // border-radius: 2px;
  6. // border: 0.5px solid #a1a1a1;
  7. position: relative;
  8. .camera_box {
  9. // margin-top: 10px;
  10. // position: relative;
  11. .video {
  12. // border-radius: 8px;
  13. width: 100%;
  14. height: 100vh;
  15. color: white;
  16. font-size: 14px;
  17. display: flex;
  18. align-items: center;
  19. justify-content: center;
  20. }
  21. .vice-video {
  22. width: 80px;
  23. height: 140px;
  24. background: black;
  25. position: absolute;
  26. top: 100px;
  27. right: 10px;
  28. color: white;
  29. font-size: 14px;
  30. display: flex;
  31. align-items: center;
  32. justify-content: center;
  33. z-index: 1;
  34. text-align: center;
  35. }
  36. }
  37. }