You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
659 B
36 lines
659 B
.Form {
|
|
background-color: var(--contrast-0);
|
|
border: var(--box-border);
|
|
border-radius: var(--border-radius);
|
|
box-shadow: var(--box-shadow);
|
|
min-height: 48px;
|
|
margin: 0 auto;
|
|
min-width: var(--site-min-width);
|
|
max-width: var(--site-max-width);
|
|
padding: 12px 0;
|
|
}
|
|
|
|
.FormRow {
|
|
display: flex;
|
|
line-height: 24px;
|
|
}
|
|
|
|
.FormRow label {
|
|
width: 350px;
|
|
padding: 6px 12px;
|
|
text-align: right;
|
|
}
|
|
|
|
.FormRow input {
|
|
flex: 1;
|
|
font-family: monospace;
|
|
border: var(--box-border);
|
|
border-radius: var(--border-radius);
|
|
padding: 4px;
|
|
margin: 2px 3px;
|
|
}
|
|
|
|
.FormRow_unit {
|
|
color: rgba(0, 0, 0, 0.4);
|
|
}
|