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;
}

View File

@ -2,6 +2,9 @@
--app-background-color: #FFFFFF;
--app-color: #2c3e50;
--app-a-color: #40578a;
--app-shadow-color: lightgrey;
--input-border-color: #9da3af;
--nav-bar-background-color: #FFFFFF;
--nav-bar-link-active: #485b6e;
@ -11,5 +14,4 @@
--footer-border-color: #ebeef3;
--footer-color: #8b8c8c;
--app-shadow-color: lightgrey;
}

View File

@ -3,4 +3,10 @@
*/
$container-width: 1140px;
$medium-limit: 1000px;
$small-limit: 500px;
$small-limit: 500px;
/*
* === PADDING / MARGIN ===
*/
$default-padding: 10px;
$default-margin: $default-padding;