67 lines
915 B
CSS
67 lines
915 B
CSS
.SignupForm {
|
|
padding: 16px;
|
|
}
|
|
|
|
.SignupForm form {
|
|
margin: 0;
|
|
}
|
|
|
|
.SignupForm #fields {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 4px;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
#ModalTop {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
margin-bottom: 16px;
|
|
margin-right: -8px;
|
|
}
|
|
|
|
#ModalTop h1 {
|
|
margin: 0;
|
|
font-size: 24px;
|
|
text-align: left;
|
|
flex-grow: 1;
|
|
}
|
|
|
|
#ModalTop i {
|
|
padding: 8px;
|
|
}
|
|
|
|
#ModalTop i:hover {
|
|
cursor: pointer;
|
|
}
|
|
|
|
#ModalTop i:hover svg {
|
|
color: #444;
|
|
}
|
|
|
|
#ModalTop svg {
|
|
color: #888;
|
|
height: 18px;
|
|
width: 18px;
|
|
transform: rotate(45deg);
|
|
}
|
|
|
|
#ModalBottom {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
#ModalBottom a {
|
|
color: #666;
|
|
font-size: 13px;
|
|
font-weight: 500;
|
|
flex-grow: 1;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
#ModalBottom .Button {
|
|
min-width: 88px;
|
|
}
|