mirror of https://github.com/OpenVidu/openvidu.git
167 lines
2.9 KiB
CSS
167 lines
2.9 KiB
CSS
.container {
|
|
height: calc(100% - 64px);
|
|
padding: 30px 60px;
|
|
background-color: var(--ov-light-color);
|
|
}
|
|
|
|
.prejoin-toolbar {
|
|
max-height: 40px;
|
|
height: 40px;
|
|
}
|
|
#toolbar {
|
|
background-color: var(--ov-light-color);
|
|
height: 100%;
|
|
}
|
|
#toolbar ::ng-deep .lang-button {
|
|
height: 25px !important;
|
|
font-size: 14px !important;
|
|
line-height: 0px;
|
|
align-items: unset !important;
|
|
}
|
|
.spacer {
|
|
flex: 1 1 auto;
|
|
}
|
|
|
|
#branding-logo {
|
|
border-radius: var(--ov-panel-radius);
|
|
max-width: 35px;
|
|
max-height: 35px;
|
|
height: -webkit-fill-available;
|
|
height: -moz-available;
|
|
padding: 10px;
|
|
margin-right: 10px;
|
|
}
|
|
|
|
#layout-container {
|
|
display: block !important;
|
|
}
|
|
|
|
h4 {
|
|
margin-bottom: 1px;
|
|
font-weight: bold;
|
|
}
|
|
hr {
|
|
margin: 0;
|
|
}
|
|
|
|
#prejoin-container {
|
|
height: calc(100% - 40px);
|
|
}
|
|
#prejoin-container ::ng-deep .sidenav-container {
|
|
padding-top: 0px !important;
|
|
}
|
|
|
|
#prejoin-container ::ng-deep #background-effects-container {
|
|
margin: 0px !important;
|
|
max-height: 100% !important;
|
|
height: 100% !important;
|
|
}
|
|
|
|
#prejoin-container ::ng-deep .mat-drawer-container,
|
|
#prejoin-container ::ng-deep .sidenav-menu,
|
|
#prejoin-container ::ng-deep #session-container {
|
|
background-color: transparent !important;
|
|
}
|
|
|
|
#prejoin-container ::ng-deep .sidenav-menu {
|
|
width: 320px;
|
|
}
|
|
|
|
#prejoin-container ::ng-deep .layout {
|
|
min-width: 0px !important;
|
|
}
|
|
|
|
#prejoin-container ::ng-deep .OT_root {
|
|
padding: 0px !important;
|
|
}
|
|
|
|
#background-effects-btn {
|
|
position: absolute;
|
|
z-index: 1;
|
|
background-color: var(--ov-secondary-color);
|
|
bottom: 5px;
|
|
right: 5px;
|
|
}
|
|
|
|
.media-panel {
|
|
background-color: var(--ov-light-color);
|
|
}
|
|
.media-panel-container {
|
|
width: 100%;
|
|
padding: 20px;
|
|
padding-right: 0px;
|
|
}
|
|
|
|
.nickname-container {
|
|
/* padding: 10px; */
|
|
display: block !important;
|
|
margin-bottom: 0px !important;
|
|
}
|
|
|
|
.mat-form-field-appearance-fill .mat-form-field-flex {
|
|
/* background-color: var(--ov-text-color); */
|
|
border-radius: var(--ov-video-radius);
|
|
}
|
|
|
|
.buttons-container {
|
|
border-radius: 5px;
|
|
padding: 10px 0px;
|
|
height: 100px;
|
|
display: block !important;
|
|
}
|
|
|
|
.join-btn-container {
|
|
width: inherit;
|
|
text-align: center;
|
|
}
|
|
|
|
#join-button {
|
|
width: 100%;
|
|
font-weight: bold;
|
|
color: var(--ov-text-color);
|
|
background-color: var(--ov-tertiary-color);
|
|
border-radius: var(--ov-video-radius);
|
|
}
|
|
|
|
@media only screen and (max-width: 480px) {
|
|
.container,
|
|
.media-panel-container,
|
|
.buttons-container {
|
|
padding: 0;
|
|
}
|
|
.nickname-container,
|
|
.buttons-container,
|
|
.join-btn-container {
|
|
width: 90% !important;
|
|
margin: auto;
|
|
}
|
|
.join-btn-container {
|
|
padding: 0px 10px;
|
|
}
|
|
.media-panel {
|
|
align-items: flex-start !important;
|
|
}
|
|
}
|
|
|
|
@media only screen and (min-width: 480px) and (max-width: 959px) {
|
|
/* .container, */
|
|
.media-panel-container,
|
|
.buttons-container {
|
|
padding: 0;
|
|
}
|
|
|
|
.nickname-container,
|
|
.buttons-container,
|
|
.join-btn-container {
|
|
width: 80% !important;
|
|
min-width: 80% !important;
|
|
margin: auto;
|
|
}
|
|
|
|
.buttons-container,
|
|
.media-panel-container {
|
|
padding-top: 0px;
|
|
max-width: 600px;
|
|
}
|
|
}
|