bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/error-screen/styles.scss

52 lines
793 B
SCSS
Raw Normal View History

2017-03-11 04:47:23 +08:00
.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);
2017-03-11 04:47:23 +08:00
text-align: center;
}
.icon {
width: 100%;
font-size: 10rem;
margin-bottom: 2rem;
}
.message {
2019-01-08 00:26:23 +08:00
margin: 0;
2020-06-19 20:49:07 +08:00
color: var(--color-white);
2020-06-19 21:01:30 +08:00
font-size: 1.75rem;
2019-01-08 00:26:23 +08:00
font-weight: 400;
2020-06-19 21:01:30 +08:00
margin-bottom: 1rem;
2017-03-11 04:47:23 +08:00
}
2019-01-08 00:26:23 +08:00
.sessionMessage {
@extend .message;
2020-06-19 21:01:30 +08:00
font-size: 1.25rem;
2020-06-19 20:49:07 +08:00
color: var(--color-white);
2019-01-08 00:26:23 +08:00
}
.codeError {
margin: 0;
2020-06-19 20:49:07 +08:00
font-size: 1.5rem;
2019-01-08 00:26:23 +08:00
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;
2019-01-14 19:15:49 +08:00
height: 2rem;
2019-04-27 01:59:04 +08:00
}