2023-04-11 21:38:51 +00:00
|
|
|
.input-grid {
|
|
|
|
display: grid;
|
|
|
|
column-gap: 10px;
|
|
|
|
row-gap: 5px;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.input-grid * {
|
|
|
|
margin-top: 0px;
|
|
|
|
margin-bottom: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.input-grid .last-item {
|
|
|
|
text-align: right;
|
2023-05-07 04:31:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
legend {
|
2023-05-08 00:50:14 +00:00
|
|
|
display: table;
|
|
|
|
float: left;
|
|
|
|
margin: 8px 0;
|
|
|
|
padding: 0;
|
|
|
|
width: 100%;
|
|
|
|
+ * {
|
|
|
|
clear: both;
|
|
|
|
}
|
2023-05-07 04:31:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fieldset {
|
2023-05-08 00:50:14 +00:00
|
|
|
border: 0;
|
2023-05-07 04:31:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fieldset > *:last-child {
|
|
|
|
margin-bottom: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
body:not(:-moz-handler-blocked) fieldset {
|
2023-05-08 00:50:14 +00:00
|
|
|
display: table-cell;
|
2022-12-12 22:57:43 +00:00
|
|
|
}
|