51 lines
868 B
Plaintext
51 lines
868 B
Plaintext
/* GENERAL STYLES FOR FORMS */
|
|
form {
|
|
margin: 20px 0;
|
|
}
|
|
|
|
/* FORM GROUPS */
|
|
.form-group {
|
|
position: relative;
|
|
display: flex;
|
|
display: grid;
|
|
grid-template-columns: 25% 300px;
|
|
grid-auto-columns: 25%;
|
|
grid-gap: 5px;
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
margin: 10px 0;
|
|
padding-left: 10px;
|
|
border-left: 8px solid transparent;
|
|
}
|
|
|
|
.form-group--required {
|
|
border-left: 8px solid var(--lighterbase);
|
|
}
|
|
|
|
.form-group--valid {
|
|
border-left: 8px solid var(--validbase);
|
|
}
|
|
|
|
.form-group--has-error {
|
|
border-left: 8px solid var(--errorbase) !important;
|
|
}
|
|
|
|
.form-group__label {
|
|
width: 25%;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
@media (max-width: 999px) {
|
|
.form-group {
|
|
grid-template-columns: 1fr;
|
|
grid-template-rows: 30px;
|
|
align-items: baseline;
|
|
margin-top: 17px;
|
|
flex-direction: column;
|
|
|
|
> * {
|
|
width: 100%;
|
|
}
|
|
}
|
|
}
|