2020-04-04 17:42:02 +02:00
|
|
|
.styledForm {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.styledForm > .formElement {
|
|
|
|
padding: 25px 40px 35px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.styledForm > .formElement > .formHeading {
|
|
|
|
padding-bottom: 15px;
|
|
|
|
font-size: 21px;
|
|
|
|
}
|
2020-04-04 19:13:42 +02:00
|
|
|
|
2020-04-10 22:33:07 +02:00
|
|
|
/*.styledForm > .formElement*/
|
|
|
|
.selectItem {
|
2020-04-04 19:13:42 +02:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
margin-right: 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.styledForm > .formElement .selectItem.withBottomMargin {
|
|
|
|
margin-bottom: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.styledForm > .formElement .selectItem > .selectItemLabel {
|
|
|
|
padding: 0 3px 0 6px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.styledForm > .formElement .divider {
|
|
|
|
margin-top: 22px;
|
|
|
|
border-top: 1px solid var(--borderLightest);
|
|
|
|
}
|
|
|
|
|
|
|
|
.styledForm > .formElement > .actions {
|
|
|
|
display: flex;
|
|
|
|
justify-content: flex-end;
|
|
|
|
padding-top: 30px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.styledForm > .formElement > .actions > .actionButton {
|
|
|
|
margin-left: 10px;
|
|
|
|
}
|
2020-04-04 19:34:23 +02:00
|
|
|
|
|
|
|
.styledField {
|
|
|
|
display: block;
|
2020-04-08 16:14:59 +02:00
|
|
|
margin-top: 20px;
|
2020-04-04 19:34:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.styledField > .styledLabel {
|
|
|
|
display: block;
|
|
|
|
padding-bottom: 5px;
|
|
|
|
color: var(--textMedium);
|
|
|
|
font-family: var(--font-medium);
|
|
|
|
font-weight: normal;
|
|
|
|
font-size: 13px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.styledField > .styledTip {
|
|
|
|
padding-top: 6px;
|
|
|
|
color: var(--textMedium);
|
|
|
|
font-size: 12.5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.styledField > * {
|
|
|
|
display: block;
|
|
|
|
}
|