2021-02-05 04:59:17 -05:00
|
|
|
:root {
|
|
|
|
--form-spacing: 48px;
|
|
|
|
|
|
|
|
--element-spacing: 12px;
|
|
|
|
|
2021-02-07 22:50:48 -05:00
|
|
|
--error: #F95959;
|
2021-02-05 04:59:17 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#login-page {
|
|
|
|
display: block;
|
|
|
|
|
|
|
|
max-width: 1280px;
|
|
|
|
}
|
|
|
|
|
2021-02-07 22:50:48 -05:00
|
|
|
#login-flex {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
#login-subsection {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#login-elements {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
2021-02-05 04:59:17 -05:00
|
|
|
#login-header {
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
2021-02-07 22:50:48 -05:00
|
|
|
width: 50%;
|
2021-02-05 04:59:17 -05:00
|
|
|
height: max-content;
|
|
|
|
}
|
|
|
|
|
|
|
|
#login-form {
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
|
|
|
padding: 24px 0;
|
|
|
|
|
2021-02-07 22:50:48 -05:00
|
|
|
width: 50%;
|
2021-02-05 04:59:17 -05:00
|
|
|
height: max-content;
|
|
|
|
|
|
|
|
background-color: var(--distinction);
|
|
|
|
|
|
|
|
border-radius: 8px;
|
|
|
|
}
|
|
|
|
|
2021-02-05 20:19:11 -05:00
|
|
|
.form-row {
|
|
|
|
margin: var(--element-spacing) var(--form-spacing) 0;
|
|
|
|
border: 0;
|
|
|
|
padding: 0;
|
|
|
|
width: calc(100% - var(--form-spacing) * 2);
|
|
|
|
height: 40px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.form-row.top {
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.form-row.multiline {
|
|
|
|
height: max-content;
|
|
|
|
}
|
|
|
|
|
2021-02-05 04:59:17 -05:00
|
|
|
#error-message {
|
|
|
|
display: none;
|
|
|
|
|
2021-02-05 20:19:11 -05:00
|
|
|
line-height: 40px;
|
2021-02-05 04:59:17 -05:00
|
|
|
|
|
|
|
color: var(--error);
|
|
|
|
font-size: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.login-field {
|
|
|
|
box-sizing: border-box;
|
2021-02-05 20:19:11 -05:00
|
|
|
padding: 0 var(--element-spacing);
|
|
|
|
font-size: 18px;
|
2021-02-05 04:59:17 -05:00
|
|
|
border-radius: 4px;
|
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.login-field.error {
|
|
|
|
background-color: var(--error);
|
|
|
|
}
|
|
|
|
|
2021-02-05 20:19:11 -05:00
|
|
|
.ap-button.login {
|
|
|
|
height: 40px;
|
|
|
|
|
|
|
|
font-size: 18px;
|
|
|
|
}
|
|
|
|
|
2021-02-05 04:59:17 -05:00
|
|
|
#username,
|
|
|
|
#confirm {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2021-02-05 20:19:11 -05:00
|
|
|
#button-row {
|
2021-02-05 04:59:17 -05:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
2021-02-05 20:19:11 -05:00
|
|
|
#create-user-button,
|
|
|
|
#guest-login-button {
|
|
|
|
width: calc(50% - var(--element-spacing) / 2);
|
2021-02-05 08:25:41 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#login-button {
|
2021-02-05 20:19:11 -05:00
|
|
|
width: calc(100% - var(--form-spacing * 2))
|
2021-02-05 04:59:17 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#warning {
|
2021-02-07 22:50:48 -05:00
|
|
|
color: var(--error);
|
2021-02-05 04:59:17 -05:00
|
|
|
font-size: 24px;
|
2021-02-07 22:50:48 -05:00
|
|
|
text-align: center;
|
|
|
|
line-height: 40px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#warning-message {
|
|
|
|
margin-top: 0;
|
|
|
|
color: var(--foreground);
|
|
|
|
font-size: 18px;
|
|
|
|
text-align: center;
|
2021-02-05 04:59:17 -05:00
|
|
|
}
|