1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- .videos-container {
- padding-bottom: 60px;
- }
- .main-view {
- }
- .main-view .video-view {
- margin: 0.25rem;
- position: relative;
- background: #444;
- }
- .main-view .video-view .name-bar {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- background: #00000066;
- font-size: 11px;
- text-align: right;
- padding: 3px 6px;
- color: #fff;
- z-index: 1;
- font-weight: bold;
- }
- #call-actions {
- justify-content: center;
- align-items: center;
- background: #00000033;
- position: fixed;
- width: 100%;
- height: 60px;
- left: 0;
- bottom: 0;
- }
- #call-actions .btn {
- padding: 0;
- display: inline-flex;
- align-items: center;
- justify-content: center;
- width: 50px;
- height: 50px;
- border-radius: 100%;
- }
- @media all and (min-width: 768px) {
- .main-view {
- display: flex;
- flex-wrap: wrap;
- align-items: start;
- justify-content: center;
- }
- .main-view .video-view {
- width: 480px;
- height: 360px !important;
- }
- }
- @media all and (max-width: 767px) {
- #video-container {
- padding: 0;
- }
- }
- .muted-icon {
- z-index: 2;
- position: absolute;
- top: 4px;
- left: 6px;
- font-size: 14px;
- display: none;
- }
- [participant-muted] .muted-icon {
- display: block;
- }
|