12345678910111213141516171819202122232425262728293031323334353637 |
- .video_box {
- background-color: #9d9d9d;
- width: 100%;
- height: 100vh;
- // border-radius: 2px;
- // border: 0.5px solid #a1a1a1;
- position: relative;
- .camera_box {
- // margin-top: 10px;
- // position: relative;
- .video {
- // border-radius: 8px;
- width: 100%;
- height: 100vh;
- color: white;
- font-size: 14px;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .vice-video {
- width: 80px;
- height: 140px;
- background: black;
- position: absolute;
- top: 100px;
- right: 10px;
- color: white;
- font-size: 14px;
- display: flex;
- align-items: center;
- justify-content: center;
- z-index: 1;
- text-align: center;
- }
- }
- }
|