bendwidth / frontend / src / videoComponents / videoPage.css
videoPage.css
Raw
 .container-fluid {
    margin: 0;
    padding: 0;
}
#large-feed {
    max-width: 100%;
    max-height: 100%;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

#small-feed {
    position: absolute;
    top: 170px;
    right: 50px;
    border-radius: 1rem;
    z-index: 90;
    border: white 1px solid;
    height: 152px;
    width: 202px;
}

.video-buttons {
    position: absolute;
    top: 40px;
    z-index: 100;
    background-color: 	#07a9e9;
    color: white;
    left: 50%;
    height: 70px;
    width: 1000px;
    max-width: 100%;
    transform: translateX(-50%);
    border-radius: 2em;
    box-shadow: 10px 10px 20px black;
}

.btn-text {
    position: absolute;
    bottom: 10px;
    left:50%;
    text-align: center;
    transform: translateX(-50%);
    font-size:0.65rem ;
}
.button-wrapper {
    position: relative;
    /* background-color: aqua; */
    width: 120px;
    /* border-radius: 2em */
}

.button-wrapper .fa.fa-microphone , .button-wrapper .fa.fa-video, .button-wrapper .fa.fa-desktop,
.button-wrapper .fa.fa-phone, .button-wrapper .fa.fa-video-slash, .button-wrapper .fa.fa-microphone-slash {
    position: absolute;
    font-size: 24px;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
}

.no-border-right {
    border-radius: 2em 0 0 2em;
}

.no-border-left {
    border-radius:0 2em 2em 0;
}
.button-wrapper:hover {
    color: #07a9e9;
    background-color: rgb(244, 241, 241);
    cursor: pointer;
}
.middle {
    left: 180px;
    width: 145px;
    border-radius: 2em;
}
.end {
    right: -495px;
    border-radius:0 2em 2em 0;
    /* color: red; */
}
.end:hover {
    background-color: red;
    color:white;
}

#large-feed::-webkit-media-controls-play-button, #small-feed::-webkit-media-controls-play-button {
    display: none !important;
}

#large-feed::-webkit-media-controls-mute-button,
#large-feed::-webkit-media-controls-volume-slider,
#large-feed::-webkit-media-controls-timeline,
#large-feed::-webkit-media-controls-current-time-display,
#large-feed::-webkit-media-controls-time-remaining-display,
#large-feed::-webkit-media-controls-fullscreen-button,
#large-feed::-webkit-media-controls-playback-rate-button {
    display: none !important;
}

#small-feed::-webkit-media-controls-mute-button,
#small-feed::-webkit-media-controls-volume-slider,
#small-feed::-webkit-media-controls-timeline,
#small-feed::-webkit-media-controls-current-time-display,
#small-feed::-webkit-media-controls-time-remaining-display,
#small-feed::-webkit-media-controls-fullscreen-button,
#small-feed::-webkit-media-controls-playback-rate-button {
    display: none !important;
}

.info-box {
    position: absolute;
    background-color: black;
    color: white;
    opacity: 0.7;
    font-size: 1.5em;
    max-width: 1000px;   
}

.call-ended {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5em;
    z-index: 100000;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 80px;
    text-align: center;
}

.captions-box {
    left: 50%;
    transform: translateX(-50%);
    bottom: 10%;

}

.hidden {
    display: none;
}

.fa-caret-down {
    position: absolute;
    bottom: -5%;
    right: 15%;
    z-index: 1000000;
    width: 1em;
    font-size: 20px;
} 

.fa-caret-down:hover {
    opacity: 1;
    color: #36454f;
}

.caret-dropdown {
    position: absolute;
    bottom: -25px
}
.caret-dropdown:hover  {
    opacity: 1;
}