ProxmoxAAS-Dashboard/css/form.css

42 lines
562 B
CSS
Raw Normal View History

2022-12-12 22:57:43 +00:00
.center-div {
display: flex;
justify-content: center;
}
fieldset {
border: solid white 1px;
border-radius: 5px;
width: fit-content;
}
input, label, legend {
font-family: monospace;
color: white;
font-size: 14px;
background-color: black;
}
input {
border: solid white 1px;
}
button {
margin-top: 10px;
2022-12-20 01:05:04 +00:00
}
.labels-inputs {
display: flex;
column-gap: 10px;
}
.labels-inputs > div {
2022-12-20 01:16:04 +00:00
width: max-content;
2022-12-20 02:35:09 +00:00
}
.labels-inputs > div > div {
display: flex;
}
.labels-inputs > div > div > input {
width: 100%;
2022-12-12 22:57:43 +00:00
}