This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.btn { | |
background-color: #6a65f1; | |
height: max-content; | |
width: max-content; | |
} | |
input[type="text"] { | |
height: 40px; | |
border-radius: 5px; | |
margin-top: 15px; | |
margin-left: 15px; | |
} | |
#grid-screen { | |
display: none; | |
} | |
.flex-container { | |
flex-direction: column; | |
align-items: center; | |
justify-content: center; | |
} | |
#videoContainer { | |
margin-top: 20px; | |
} | |
.video-frame { | |
width: 50%; | |
max-height: 100%; | |
border: 1px solid grey; | |
border-radius: 10px; | |
transform: rotate("90"); | |
object-fit: cover; | |
margin: 10px; | |
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23); | |
position: relative; | |
} | |
.video { | |
position: relative; | |
z-index: 0; | |
width: 100%; | |
max-height: 100%; | |
} | |
#participantsList > .row { | |
background-color: aliceblue; | |
color: #161616; | |
} | |
.participant { | |
padding: "4px"; | |
margin-top: "1px"; | |
margin-left: "7px"; | |
margin-right: "7px"; | |
border-radius: "3px"; | |
border: "1px solid rgb(61, 60, 78)"; | |
background-color: "rgb(61, 60, 78)"; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment