109 lines
1.6 KiB
CSS
109 lines
1.6 KiB
CSS
html {
|
|
position: relative;
|
|
min-height: 100%;
|
|
}
|
|
|
|
.openvidu-iframe{
|
|
width: 100%;
|
|
height: 70%;
|
|
}
|
|
|
|
nav {
|
|
height: 50px;
|
|
width: 100%;
|
|
z-index: 1;
|
|
background-color: #4d4d4d !important;
|
|
border-color: #4d4d4d !important;
|
|
border-top-right-radius: 0 !important;
|
|
border-top-left-radius: 0 !important;
|
|
}
|
|
|
|
.navbar-header {
|
|
width: 100%;
|
|
}
|
|
|
|
.nav-icon {
|
|
padding: 5px 15px 5px 15px;
|
|
float: right;
|
|
}
|
|
|
|
nav a {
|
|
color: #ccc !important;
|
|
}
|
|
|
|
nav i.fa {
|
|
font-size: 40px;
|
|
color: #ccc;
|
|
}
|
|
|
|
nav a:hover {
|
|
color: #a9a9a9 !important;
|
|
}
|
|
|
|
nav i.fa:hover {
|
|
color: #a9a9a9;
|
|
}
|
|
|
|
#main-container {
|
|
padding-bottom: 80px;
|
|
}
|
|
|
|
.horizontal-center {
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.footer {
|
|
position: absolute;
|
|
bottom: 0;
|
|
width: 100%;
|
|
height: 60px;
|
|
background-color: #4d4d4d;
|
|
}
|
|
|
|
.footer .text-muted {
|
|
margin: 20px 0;
|
|
float: left;
|
|
color: #ccc;
|
|
}
|
|
|
|
.openvidu-logo {
|
|
height: 35px;
|
|
float: right;
|
|
margin: 12px 0;
|
|
-webkit-transition: all 0.1s ease-in-out;
|
|
-moz-transition: all 0.1s ease-in-out;
|
|
-o-transition: all 0.1s ease-in-out;
|
|
transition: all 0.1s ease-in-out;
|
|
}
|
|
|
|
.openvidu-logo:hover {
|
|
-webkit-filter: grayscale(0.5);
|
|
filter: grayscale(0.5);
|
|
}
|
|
|
|
.demo-logo {
|
|
margin: 0;
|
|
height: 22px;
|
|
float: left;
|
|
padding-right: 8px;
|
|
}
|
|
|
|
a:hover .demo-logo {
|
|
-webkit-filter: brightness(0.7);
|
|
filter: brightness(0.7);
|
|
}
|
|
|
|
/* xs ans md screen resolutions*/
|
|
|
|
@media screen and (max-width: 991px) and (orientation: portrait) {
|
|
.container-fluid>.navbar-collapse, .container-fluid>.navbar-header, .container>.navbar-collapse, .container>.navbar-header {
|
|
margin-right: 0;
|
|
margin-left: 0;
|
|
}
|
|
.navbar-header i.fa {
|
|
font-size: 30px;
|
|
}
|
|
.navbar-header a.nav-icon {
|
|
padding: 7px 3px 7px 3px;
|
|
}
|
|
} |