84 lines
1.0 KiB
CSS
Raw Normal View History

2022-12-12 14:57:43 -08:00
.center-div {
2022-12-20 17:46:03 -08:00
display: grid;
2022-12-12 14:57:43 -08:00
justify-content: center;
}
2022-12-20 17:46:03 -08:00
p {
2022-12-21 00:56:40 -08:00
text-align: left;
margin: 0px;
2022-12-20 17:02:33 -08:00
}
2022-12-12 14:57:43 -08:00
fieldset {
border: solid white 1px;
2022-12-20 17:46:03 -08:00
border-radius: 5px;
2022-12-20 17:02:33 -08:00
padding: 10px;
2022-12-20 17:46:03 -08:00
margin: 10px;
2022-12-12 14:57:43 -08:00
}
form > :first-child {
margin-top: 0px;
}
2022-12-12 14:57:43 -08:00
input, label, legend {
font-family: monospace;
color: white;
font-size: 14px;
background-color: black;
}
input {
border: solid white 1px;
width: min-content;
2022-12-12 14:57:43 -08:00
}
2023-01-11 02:27:10 -08:00
input:focus {
outline: none;
}
2023-01-12 15:21:08 -08:00
input:disabled {
background-color: #606060;
}
2023-01-10 16:01:13 -08:00
select {
border: solid white 1px;
background-color: black;
color: white;
}
2023-01-12 15:21:08 -08:00
select:disabled {
background-color: #606060;
}
2022-12-12 14:57:43 -08:00
button {
2022-12-20 17:02:33 -08:00
margin-top: 0px;
2022-12-19 17:05:04 -08:00
}
2022-12-21 15:56:52 -08:00
.input-grid {
2022-12-21 00:56:40 -08:00
display: grid;
column-gap: 10px;
2023-01-08 20:38:07 -08:00
row-gap: 5px;
align-items: center;
2022-12-21 00:56:40 -08:00
}
2022-12-20 17:51:53 -08:00
legend {
top: -0.6em;
position: relative;
height: 0;
2022-12-21 15:59:54 -08:00
}
2022-12-21 16:01:29 -08:00
form img {
2022-12-21 15:59:54 -08:00
width: 16px;
2023-01-10 16:01:13 -08:00
}
hr {
width: 100%;
border: none;
border-top: solid white 1px;
2023-01-12 15:26:45 -08:00
}
.last-item {
width: 100%;
display: flex;
justify-content: flex-end;
align-items: center;
2022-12-12 14:57:43 -08:00
}