Client - init Login form

This commit is contained in:
Sam
2021-08-08 11:49:01 +02:00
parent 73915a1750
commit 68f6457c9d
18 changed files with 342 additions and 6 deletions

View File

@ -23,6 +23,15 @@ a {
text-decoration: none;
}
input {
border-radius: 0;
border: solid 1px var(--input-border-color);
}
label {
font-weight: bold;
}
button {
background: var(--app-background-color);
border: solid 1px var(--app-color);
@ -42,6 +51,27 @@ button {
}
}
.container {
display: flex;
margin-left: auto;
margin-right: auto;
padding-left: 15px;
padding-right: 15px;
max-width: $container-width;
}
.form-box {
.form-items {
display: flex;
flex-direction: column;
input {
margin: $default-margin;
padding: $default-padding * .5;
}
}
}
.upper {
text-transform: uppercase;
}