bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/meeting-ended/styles.scss
Tainan Felipe 10a90b4180 WIP
2018-05-08 13:30:00 -03:00

57 lines
865 B
SCSS
Executable File

@import "/imports/ui/stylesheets/variables/_all";
.parent {
height: 100%;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
}
.modal {
display: flex;
padding: $lg-padding-x;
background-color: $color-white;
flex-direction: column;
border-radius: $border-radius;
max-width: 95vw;
width: 600px;
}
.text {
color: $color-text;
font-weight: normal;
padding: $line-height-computed 0;
@include mq($small-only) {
font-size: $font-size-small;
};
}
.content {
text-align: center;
}
.title {
margin: 0;
font-size: $font-size-large;
font-weight: $headings-font-weight;
}
.button {
@include mq($small-only) {
font-size: $font-size-base;
}
}
.textarea, .disable {
resize: none;
margin: 1rem auto;
&::placeholder {
text-align: center;
}
&:disabled {
cursor: not-allowed;
}
}