56 lines
789 B
CSS
56 lines
789 B
CSS
#login_card {
|
|
position: fixed;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translateX(-50%) translateY(-50%);
|
|
width: 350px;
|
|
}
|
|
|
|
#login_card input {
|
|
width: 324px;
|
|
}
|
|
|
|
#login_card div {
|
|
width: 100%;
|
|
}
|
|
|
|
#action-buttons {
|
|
justify-content: center;
|
|
display: flex;
|
|
gap: 15px;
|
|
}
|
|
|
|
#signup_button {
|
|
flex: 1;
|
|
}
|
|
|
|
#login_button {
|
|
flex: 2;
|
|
}
|
|
|
|
#welcome_text {
|
|
font-weight: 700;
|
|
font-size: 1.25rem;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
#login_buttons {
|
|
display: grid;
|
|
grid-gap: 5px;
|
|
grid-template-columns: 1fr 43px;
|
|
}
|
|
|
|
#login_with_oauth {
|
|
padding: 0 !important;
|
|
position: relative;
|
|
}
|
|
|
|
#login_with_oauth img {
|
|
position: absolute;
|
|
width: 30px;
|
|
height: 30px;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translateX(-50%) translateY(-50%);
|
|
}
|