bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/presentation/default-content/styles.scss
Oswaldo Acauan f71d32a464 Move from SCSS variables to CSS custom properties (variables) and add custom parameters for theming/skinning
WIP

wip

wip

format

wip

Move from SCSS variables to CSS custom properties (variables) and add custom parameters for theming/skinning
2018-10-23 14:21:58 -02:00

47 lines
671 B
SCSS

@import "../../../stylesheets/variables/_all";
.contentRatio {
position: relative;
display: block;
height: 0;
padding: 0;
padding-bottom: calc(100% * 9 / 16);
}
.contentWrapper {
flex-basis: 90%;
@include mq(var(--large-up)) {
flex-basis: 90%;
}
}
.content {
height: 100%;
width: 100%;
}
.defaultContent {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
padding: var(--line-height-computed);
border: 0.25rem dashed;
border-radius: 1.5rem;
color: rgba(255, 255, 255, .5);
text-align: center;
overflow: auto;
}
.appear {
opacity: 0.01;
}
.appearActive {
opacity: 1;
transition: opacity 700ms ease-in;
}