2023-04-11 21:38:51 +00:00
|
|
|
.input-grid {
|
|
|
|
display: grid;
|
2024-01-29 21:49:19 +00:00
|
|
|
gap: 5px 10px;
|
2023-04-11 21:38:51 +00:00
|
|
|
align-items: center;
|
2023-07-06 05:02:04 +00:00
|
|
|
width: 100%;
|
2023-04-11 21:38:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.input-grid * {
|
2023-06-29 22:39:21 +00:00
|
|
|
margin-top: 0;
|
|
|
|
margin-bottom: 0;
|
2023-04-11 21:38:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.input-grid .last-item {
|
|
|
|
text-align: right;
|
2023-05-07 04:31:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
legend {
|
2023-07-06 04:53:47 +00:00
|
|
|
float: left;
|
|
|
|
width: 100%;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
2023-05-10 22:01:41 +00:00
|
|
|
line-height: 1.5em;
|
|
|
|
margin-top: 0.25lh;
|
|
|
|
margin-bottom: 0.25lh;
|
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;
|
|
|
|
}
|
|
|
|
|
2023-10-31 18:13:40 +00:00
|
|
|
fieldset > .input-grid {
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
|
2023-05-07 04:31:04 +00:00
|
|
|
body:not(:-moz-handler-blocked) fieldset {
|
2023-05-08 00:50:14 +00:00
|
|
|
display: table-cell;
|
2023-06-19 01:43:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
input[type="checkbox"] {
|
|
|
|
width: min-content;
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
2023-07-12 00:24:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
input[type="radio"] {
|
|
|
|
position: inherit;
|
2023-08-11 22:06:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
div[draggable="true"] {
|
|
|
|
cursor: grab;
|
2024-06-05 22:11:53 +00:00
|
|
|
}
|