Client - init Login form
This commit is contained in:
@ -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;
|
||||
}
|
Reference in New Issue
Block a user