2023-03-25 23:38:15 +00:00
|
|
|
form {
|
|
|
|
width: fit-content;
|
|
|
|
}
|
|
|
|
|
2023-04-05 23:35:11 +00:00
|
|
|
form p {
|
2022-12-21 08:56:40 +00:00
|
|
|
text-align: left;
|
|
|
|
margin: 0px;
|
2022-12-21 01:02:33 +00:00
|
|
|
}
|
|
|
|
|
2023-04-05 23:35:11 +00:00
|
|
|
form fieldset {
|
2023-03-25 23:38:15 +00:00
|
|
|
border: solid var(--content-txt-color) 1px;
|
2022-12-21 01:02:33 +00:00
|
|
|
padding: 10px;
|
2022-12-21 01:46:03 +00:00
|
|
|
margin: 10px;
|
2022-12-12 22:57:43 +00:00
|
|
|
}
|
|
|
|
|
2023-04-05 23:35:11 +00:00
|
|
|
form input, form label, form legend {
|
2022-12-12 22:57:43 +00:00
|
|
|
font-family: monospace;
|
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
|
2023-04-05 23:35:11 +00:00
|
|
|
form input, form select {
|
2023-03-25 23:38:15 +00:00
|
|
|
border: solid var(--content-txt-color) 1px;
|
2023-03-24 21:13:33 +00:00
|
|
|
min-width: fit-content;
|
2022-12-12 22:57:43 +00:00
|
|
|
}
|
|
|
|
|
2023-04-05 23:35:11 +00:00
|
|
|
form input:focus, form select:focus {
|
2023-01-11 10:27:10 +00:00
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
|
2023-04-05 23:35:11 +00:00
|
|
|
form input:disabled, form select:disabled {
|
2023-03-25 23:38:15 +00:00
|
|
|
background-color: var(--form-disabled-color);
|
2023-01-12 23:21:08 +00:00
|
|
|
}
|
|
|
|
|
2023-04-05 23:35:11 +00:00
|
|
|
form button {
|
2022-12-21 01:02:33 +00:00
|
|
|
margin-top: 0px;
|
2022-12-20 01:05:04 +00:00
|
|
|
}
|
|
|
|
|
2023-04-06 04:27:34 +00:00
|
|
|
.input-grid {
|
2022-12-21 08:56:40 +00:00
|
|
|
display: grid;
|
|
|
|
column-gap: 10px;
|
2023-01-09 04:38:07 +00:00
|
|
|
row-gap: 5px;
|
|
|
|
align-items: center;
|
2022-12-21 08:56:40 +00:00
|
|
|
}
|
|
|
|
|
2023-04-05 23:35:11 +00:00
|
|
|
form legend {
|
2022-12-21 01:51:53 +00:00
|
|
|
top: -0.6em;
|
|
|
|
position: relative;
|
|
|
|
height: 0;
|
2022-12-21 23:59:54 +00:00
|
|
|
}
|
|
|
|
|
2022-12-22 00:01:29 +00:00
|
|
|
form img {
|
2022-12-21 23:59:54 +00:00
|
|
|
width: 16px;
|
2023-01-11 00:01:13 +00:00
|
|
|
}
|
|
|
|
|
2023-04-05 23:35:11 +00:00
|
|
|
form hr {
|
2023-01-11 00:01:13 +00:00
|
|
|
width: 100%;
|
|
|
|
border: none;
|
2023-03-25 23:38:15 +00:00
|
|
|
border-top: solid var(--content-txt-color) 1px;
|
2023-01-12 23:26:45 +00:00
|
|
|
}
|
|
|
|
|
2023-04-05 23:35:11 +00:00
|
|
|
form .last-item {
|
2023-01-12 23:26:45 +00:00
|
|
|
width: 100%;
|
|
|
|
display: flex;
|
|
|
|
justify-content: flex-end;
|
|
|
|
align-items: center;
|
2023-01-19 02:23:28 +00:00
|
|
|
column-gap: 5px;
|
2022-12-12 22:57:43 +00:00
|
|
|
}
|