114 lines
1.4 KiB
CSS
114 lines
1.4 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: 80%;
|
|
min-height: 80vh;
|
|
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;
|
|
}
|
|
|
|
#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 {
|
|
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;
|
|
} |