mirror of
https://github.com/vector-im/element-call.git
synced 2026-02-02 04:05:56 +00:00
79 lines
1.2 KiB
CSS
79 lines
1.2 KiB
CSS
/*
|
|
Copyright 2022-2024 New Vector Ltd.
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
Please see LICENSE in the repository root for full details.
|
|
*/
|
|
|
|
.logo {
|
|
max-width: 300px;
|
|
margin: 80px 0;
|
|
height: auto;
|
|
}
|
|
|
|
.container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
padding: 0 20px;
|
|
height: 100%;
|
|
}
|
|
|
|
.content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
max-width: 400px;
|
|
width: 100%;
|
|
min-height: 100%;
|
|
}
|
|
|
|
.formContainer {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
flex: 1;
|
|
width: 100%;
|
|
}
|
|
|
|
.formContainer h2,
|
|
.formContainer h4 {
|
|
margin-top: 0;
|
|
}
|
|
|
|
.formContainer h4 {
|
|
font-weight: normal;
|
|
font-size: var(--font-size-subtitle);
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.formContainer form {
|
|
width: 100%;
|
|
margin-top: 32px;
|
|
}
|
|
|
|
.formContainer button {
|
|
height: 48px;
|
|
width: 100%;
|
|
font-size: var(--font-size-body);
|
|
font-weight: 600;
|
|
}
|
|
|
|
.authLinks {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: flex-end;
|
|
align-items: center;
|
|
}
|
|
|
|
.authLinks {
|
|
margin-bottom: 100px;
|
|
font-size: var(--font-size-body);
|
|
}
|
|
|
|
.authLinks a {
|
|
color: var(--cpd-color-text-action-accent);
|
|
text-decoration: none;
|
|
font-weight: normal;
|
|
}
|