achievements_project/frontend/webpage/static/styles/login.css

125 lines
1.6 KiB
CSS
Raw Normal View History

2021-02-05 04:59:17 -05:00
:root {
--form-spacing: 48px;
--element-spacing: 12px;
}
#login-page {
display: block;
max-width: 1280px;
}
#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;
width: 50%;
2021-02-05 04:59:17 -05:00
height: max-content;
}
#login-form {
box-sizing: border-box;
padding: 24px 0;
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);
}
#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 {
color: var(--error);
2021-02-05 04:59:17 -05:00
font-size: 24px;
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
}