bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/error-screen/styles.scss
2020-06-19 10:01:30 -03:00

54 lines
847 B
SCSS

@import "/imports/ui/stylesheets/variables/palette";
.background {
position: fixed;
display: flex;
flex-flow: column;
justify-content: center;
width: 100%;
height: 100%;
background-color: var(--color-gray-dark);
color: var(--color-white);
text-align: center;
}
.icon {
width: 100%;
font-size: 10rem;
margin-bottom: 2rem;
}
.message {
margin: 0;
color: var(--color-white);
font-size: 1.75rem;
font-weight: 400;
margin-bottom: 1rem;
}
.sessionMessage {
@extend .message;
font-size: 1.25rem;
color: var(--color-white);
}
.codeError {
margin: 0;
font-size: 1.5rem;
color: var(--color-white);
}
.separator {
height: 0;
width: 5rem;
border: 1px solid var(--color-gray-lighter);
margin: 1.5rem 0 1.5rem 0;
align-self: center;
opacity: .75;
}
.button {
min-width: 9rem;
height: 2rem;
}