bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/media/styles.scss

61 lines
1.2 KiB
SCSS
Raw Normal View History

2016-07-28 05:50:35 +08:00
@import "../../stylesheets/variables/_all";
2016-05-03 06:42:54 +08:00
.container {
2018-04-10 02:28:54 +08:00
order: 1;
2016-05-03 06:42:54 +08:00
flex: 2;
2018-04-10 02:28:54 +08:00
display: flex;
align-items: center;
justify-content: center;
flex-direction: column-reverse;
}
.content {
display: flex;
align-self: stretch;
flex: 3;
align-items: center;
justify-content: center;
overflow: auto;
2018-04-10 02:28:54 +08:00
width: 100%;
position: relative;
2018-04-10 02:28:54 +08:00
}
.overlay {
flex: 1;
display: flex;
2017-05-19 03:58:21 +08:00
order: 1;
2018-04-10 02:28:54 +08:00
width: 100%;
border: 5px solid transparent;
2018-04-18 02:04:16 +08:00
border-top: 0 !important;
position: relative;
2018-04-12 20:41:49 +08:00
@include mq($medium-up) {
border: 10px solid transparent;
2018-04-12 20:41:49 +08:00
}
2018-04-10 02:28:54 +08:00
}
.hideOverlay {
display: none;
}
.floatingOverlay {
--overlay-width: 20vw;
--overlay-min-width: 235px;
--overlay-max-width: 20vw;
--overlay-ratio: calc(16 / 9);
2018-04-10 02:28:54 +08:00
@include mq($medium-up) {
z-index: 1;
2018-04-10 02:28:54 +08:00
position: fixed;
2018-04-12 20:41:49 +08:00
margin: 0;
2018-04-10 02:28:54 +08:00
bottom: .8rem;
right: .8rem;
width: var(--overlay-width);
min-width: var(--overlay-min-width);
max-width: var(--overlay-max-width);
height: calc(var(--overlay-width) / var(--overlay-ratio));
min-height: calc(var(--overlay-min-width) / var(--overlay-ratio));
max-height: calc(var(--overlay-max-width) / var(--overlay-ratio));
2018-04-10 02:28:54 +08:00
}
2016-05-03 06:42:54 +08:00
}