mirror of https://github.com/OpenVidu/openvidu.git
94 lines
1.3 KiB
CSS
94 lines
1.3 KiB
CSS
#join-dialog h1 {
|
|
color: #4d4d4d;
|
|
font-weight: bold;
|
|
text-align: center;
|
|
}
|
|
|
|
#img-div {
|
|
text-align: center;
|
|
position: absolute;
|
|
top: 19%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
}
|
|
|
|
#img-div img {
|
|
height: 15%;
|
|
}
|
|
|
|
#join-dialog label {
|
|
color: #0088aa;
|
|
}
|
|
|
|
#join-dialog input.btn {
|
|
margin-top: 15px;
|
|
}
|
|
|
|
#session-header {
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
#session-title {
|
|
display: inline-block;
|
|
}
|
|
|
|
#buttonLeaveSession {
|
|
float: right;
|
|
margin-top: 20px;
|
|
}
|
|
|
|
#video-container video {
|
|
position: relative;
|
|
float: left;
|
|
cursor: pointer;
|
|
}
|
|
|
|
#video-container p {
|
|
display: inline-block;
|
|
background: #f8f8f8;
|
|
padding-right: 5px;
|
|
padding-left: 5px;
|
|
color: #777777;
|
|
font-weight: bold;
|
|
border-bottom-right-radius: 4px;
|
|
}
|
|
|
|
video {
|
|
width: 100%;
|
|
height: auto;
|
|
}
|
|
|
|
#main-video p {
|
|
position: absolute;
|
|
display: inline-block;
|
|
background: #f8f8f8;
|
|
padding-right: 5px;
|
|
padding-left: 5px;
|
|
left: 0;
|
|
font-size: 22px;
|
|
color: #777777;
|
|
font-weight: bold;
|
|
border-bottom-right-radius: 4px;
|
|
}
|
|
|
|
#main-video video {
|
|
cursor: initial;
|
|
}
|
|
|
|
#session img {
|
|
width: 100%;
|
|
height: auto;
|
|
display: inline-block;
|
|
object-fit: contain;
|
|
vertical-align: baseline;
|
|
}
|
|
|
|
#session #video-container img {
|
|
position: relative;
|
|
float: left;
|
|
width: 50%;
|
|
cursor: pointer;
|
|
object-fit: cover;
|
|
height: 180px;
|
|
}
|