bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/video-preview/styles.scss

100 lines
1.3 KiB
SCSS
Raw Normal View History

2018-11-07 07:10:56 +08:00
@import "/imports/ui/stylesheets/variables/_all";
@import '/imports/ui/stylesheets/mixins/focus';
@import "/imports/ui/components/modal/simple/styles";
.actions {
margin-left: auto;
}
.closeBtn {
i {
color: var(--color-gray-light);
}
margin-left: auto;
}
.col {
display: flex;
width: 30%;
2018-12-21 03:09:19 +08:00
@include mq($small-only) {
width: 100%;
}
2018-11-07 07:10:56 +08:00
height: 100%;
margin-right: 1.5rem;
}
.content {
display: flex;
flex: 3;
2018-12-21 03:09:19 +08:00
@include mq($small-only) {
flex-direction: column;
}
2018-11-07 07:10:56 +08:00
}
.footer {
display: flex;
}
.header {
display: flex;
border: none;
}
.label {
font-size: 0.85rem;
font-weight: bold;
color: var(--color-gray-label);
}
.modal {
padding: 1rem;
@extend .modal;
}
.overlay {
@extend .overlay;
}
.preview {
border-radius: 5px;
2018-11-07 07:10:56 +08:00
width: 100%;
height: 8rem;
2018-12-21 03:09:19 +08:00
@include mq($small-only) {
height: 100%;
}
2018-11-07 07:10:56 +08:00
}
.row {
display: flex;
}
.select {
margin-top: 0.4rem;
width: 100%;
height: 1.6rem;
color: var(--color-gray-label);
border-radius: 0.3rem;
background-color: var(--color-white);
}
.title {
display: block;
color: var(--color-background);
2018-11-07 07:10:56 +08:00
font-size: 1.4rem;
text-align: center;
}
2019-03-29 05:53:42 +08:00
.browserWarning {
padding: 0.5rem;
border-width: 3px;
border-style: solid;
border-radius: 0.25rem;
margin: var(--line-height-computed);
text-align: center;
}