mirror of
https://github.com/PretendoNetwork/website.git
synced 2026-04-29 19:37:13 -05:00
32 lines
588 B
CSS
32 lines
588 B
CSS
body.flex.center {
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
/* login/register card */
|
|
.card {
|
|
background-color: white;
|
|
box-shadow: 0 3px 10px 0px rgba(0, 0, 0, 0.07);
|
|
width: 35rem;
|
|
max-width: 100%;
|
|
}
|
|
.card .content {
|
|
padding: 0 3em 4em 3em;
|
|
}
|
|
.card .head {
|
|
background-color: #673ab7;
|
|
color: white;
|
|
font-size: 1em;
|
|
font-weight: normal;
|
|
padding: 1.5em 2em;
|
|
margin: 0;
|
|
}
|
|
.card .content .btnMargin {
|
|
display: block;
|
|
width: 100%;
|
|
margin: 3em 0 0 0;
|
|
}
|
|
.card .content .lowText {
|
|
text-align: right;
|
|
color: #707070;
|
|
} |