2022-01-05 15:06:51 -08:00
|
|
|
/*
|
2024-09-06 10:22:13 +02:00
|
|
|
Copyright 2021-2024 New Vector Ltd.
|
2022-01-05 15:06:51 -08:00
|
|
|
|
2025-02-18 17:59:58 +00:00
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
|
2024-09-06 10:22:13 +02:00
|
|
|
Please see LICENSE in the repository root for full details.
|
2022-01-05 15:06:51 -08:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
.headline {
|
|
|
|
|
text-align: center;
|
|
|
|
|
margin-bottom: 60px;
|
2023-09-18 10:42:07 -04:00
|
|
|
white-space: pre-wrap;
|
|
|
|
|
overflow-wrap: break-word;
|
2022-01-05 15:06:51 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.callEndedContent {
|
|
|
|
|
text-align: center;
|
2023-06-07 16:22:44 +02:00
|
|
|
max-width: 450px;
|
|
|
|
|
}
|
|
|
|
|
.callEndedContent p {
|
|
|
|
|
font-size: var(--font-size-subtitle);
|
2022-01-05 15:06:51 -08:00
|
|
|
}
|
|
|
|
|
.callEndedContent h3 {
|
|
|
|
|
margin-bottom: 32px;
|
|
|
|
|
}
|
|
|
|
|
|
2023-07-20 17:55:50 +01:00
|
|
|
.disconnectedButtons {
|
|
|
|
|
display: grid;
|
|
|
|
|
gap: 50px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.rageshakeButton {
|
|
|
|
|
grid-column: 2;
|
|
|
|
|
}
|
|
|
|
|
|
2022-01-05 15:06:51 -08:00
|
|
|
.callEndedButton {
|
2024-08-28 08:44:39 -04:00
|
|
|
margin: auto;
|
2023-06-07 16:22:44 +02:00
|
|
|
margin-top: 54px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.submitButton {
|
2022-01-05 15:06:51 -08:00
|
|
|
width: 100%;
|
|
|
|
|
margin-top: 54px;
|
2023-06-07 16:22:44 +02:00
|
|
|
margin-left: 30px;
|
|
|
|
|
margin-right: 30px !important;
|
2022-01-05 15:06:51 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.container {
|
|
|
|
|
display: flex;
|
|
|
|
|
min-height: calc(100% - 64px);
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
align-items: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.main {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex: 1;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
align-items: center;
|
2023-09-18 10:42:07 -04:00
|
|
|
padding-inline: var(--inline-content-inset);
|
2022-01-05 15:06:51 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.logo {
|
|
|
|
|
display: flex;
|
|
|
|
|
margin-bottom: 54px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.headline {
|
|
|
|
|
margin-bottom: 40px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.footer {
|
|
|
|
|
margin-bottom: 44px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (min-width: 800px) {
|
|
|
|
|
.logo {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.container {
|
|
|
|
|
min-height: calc(100% - 76px);
|
|
|
|
|
}
|
2022-01-21 13:30:23 -08:00
|
|
|
|
|
|
|
|
.main {
|
|
|
|
|
justify-content: center;
|
|
|
|
|
}
|
2022-01-05 15:06:51 -08:00
|
|
|
}
|