191 lines
2.5 KiB
CSS
191 lines
2.5 KiB
CSS
html {
|
|
position: relative;
|
|
min-height: 100%;
|
|
}
|
|
|
|
nav {
|
|
height: 50px;
|
|
position: absolute !important;
|
|
width: 100%;
|
|
}
|
|
|
|
.navbar-header {
|
|
width: 100%;
|
|
}
|
|
|
|
.nav-icon {
|
|
padding: 5px 15px 5px 15px;
|
|
float: right;
|
|
}
|
|
|
|
nav i.fa {
|
|
font-size: 40px;
|
|
}
|
|
|
|
.vertical-center {
|
|
min-height: 100%;
|
|
min-height: 100vh;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.horizontal-center {
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.footer {
|
|
position: absolute;
|
|
bottom: 0;
|
|
width: 100%;
|
|
height: 60px;
|
|
background-color: #f8f8f8;
|
|
}
|
|
|
|
.footer .text-muted {
|
|
margin: 20px 0;
|
|
float: left;
|
|
}
|
|
|
|
.footer img {
|
|
height: 50px;
|
|
float: right;
|
|
margin: 5px 0;
|
|
}
|
|
|
|
#logged {
|
|
width: 100%;
|
|
}
|
|
|
|
#join {
|
|
max-width: 700px;
|
|
margin: auto;
|
|
}
|
|
|
|
#session {
|
|
padding-top: 70px;
|
|
height: 100vh;
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
|
|
#session-header {
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
#session-title {
|
|
display: inline-block;
|
|
}
|
|
|
|
#buttonLeaveSession {
|
|
float: right;
|
|
margin-top: 20px;
|
|
}
|
|
|
|
#video-container video {
|
|
position: relative;
|
|
float: left;
|
|
width: 50%;
|
|
cursor: pointer;
|
|
}
|
|
|
|
#video-container div {
|
|
float: left;
|
|
width: 50%;
|
|
position: relative;
|
|
margin-left: -50%;
|
|
}
|
|
|
|
#video-container p {
|
|
display: inline-block;
|
|
background: #f8f8f8;
|
|
padding-left: 5px;
|
|
padding-right: 5px;
|
|
color: #777777;
|
|
font-weight: bold;
|
|
border-bottom-right-radius: 4px;
|
|
}
|
|
|
|
#video-container p.userName {
|
|
float: right;
|
|
border-bottom-left-radius: 4px;
|
|
border-bottom-right-radius: 0px;
|
|
font-weight: lighter;
|
|
font-size: 12px;
|
|
background: #777777;
|
|
color: #f8f8f8;
|
|
}
|
|
|
|
video {
|
|
width: 100%;
|
|
height: auto;
|
|
}
|
|
|
|
#main-video p {
|
|
position: absolute;
|
|
display: inline-block;
|
|
background: #f8f8f8;
|
|
padding-left: 5px;
|
|
padding-right: 5px;
|
|
font-size: 22px;
|
|
color: #777777;
|
|
font-weight: bold;
|
|
border-bottom-right-radius: 4px;
|
|
}
|
|
|
|
#main-video p.userName {
|
|
position: absolute;
|
|
right: 0;
|
|
font-size: 16px !important;
|
|
margin-right: 15px;
|
|
border-bottom-left-radius: 4px;
|
|
border-bottom-right-radius: 0px;
|
|
font-weight: lighter;
|
|
font-size: 12px;
|
|
background: #777777;
|
|
color: #f8f8f8;
|
|
}
|
|
|
|
|
|
#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;
|
|
}
|
|
|
|
table i {
|
|
cursor: pointer;
|
|
margin-left: 1em;
|
|
}
|
|
|
|
#tooltip-div {
|
|
text-align: left;
|
|
}
|
|
|
|
#tooltip-div hr {
|
|
margin: 5px 0;
|
|
}
|
|
|
|
#login-info {
|
|
text-align: right;
|
|
margin-bottom: 1em;
|
|
}
|
|
|
|
#login-info div {
|
|
display: inline;
|
|
margin-right: 1em;
|
|
}
|
|
|
|
#name-user {
|
|
font-weight: bold;
|
|
} |