user management v1.6-alpha.1

This commit is contained in:
carodej
2020-05-27 10:22:33 +02:00
parent 143aca64dc
commit a76d1dec3b
54 changed files with 3489 additions and 535 deletions
+37 -10
View File
@@ -22,6 +22,16 @@
&.block-form {
.wrapper-inline {
display: flex;
margin: 0 -15px;
.block-wrapper {
width: 100%;
padding: 0 15px;
}
}
.block-wrapper {
margin-bottom: 20px;
@@ -32,6 +42,10 @@
display: block;
margin-bottom: 5px;
}
&:last-child {
margin-bottom: 0;
}
}
.button {
@@ -40,15 +54,12 @@
}
}
.input-wrapper {
.error-message {
@include font-size(14);
color: $danger;
padding-top: 5px;
display: block;
text-align: left;
}
.error-message {
@include font-size(14);
color: $danger;
padding-top: 5px;
display: block;
text-align: left;
}
textarea {
@@ -58,6 +69,7 @@ textarea {
textarea,
input[type="password"],
input[type="text"],
input[type="number"],
input[type="email"] {
border: 1px solid transparent;
@include transition(150ms);
@@ -76,7 +88,6 @@ input[type="email"] {
}
&::placeholder {
//color: $light_text;
color: rgba($text, 0.5);
@include font-size(15);
}
@@ -108,6 +119,13 @@ input[type="email"] {
}
}
.form-group-label {
@include font-size(17);
font-weight: 500;
margin-bottom: 25px;
display: block;
}
@media only screen and (max-width: 960px) {
.form {
@@ -163,12 +181,20 @@ input[type="email"] {
textarea,
input[type="password"],
input[type="number"],
input[type="text"],
input[type="email"] {
padding: 14px 20px;
}
}
@media only screen and (max-width: 690px) {
.form.block-form .wrapper-inline {
display: block;
}
}
@media (prefers-color-scheme: dark) {
.form {
@@ -184,6 +210,7 @@ input[type="email"] {
textarea,
input[type="password"],
input[type="text"],
input[type="number"],
input[type="email"] {
background: $dark_mode_foreground;
color: $dark_mode_text_primary;