46 lines
550 B
CSS
46 lines
550 B
CSS
.center-div {
|
|
display: grid;
|
|
justify-content: center;
|
|
}
|
|
|
|
p {
|
|
text-align: left;
|
|
margin: 0px;
|
|
}
|
|
|
|
fieldset {
|
|
border: solid white 1px;
|
|
border-radius: 5px;
|
|
padding: 10px;
|
|
margin: 10px;
|
|
}
|
|
|
|
input, label, legend {
|
|
font-family: monospace;
|
|
color: white;
|
|
font-size: 14px;
|
|
background-color: black;
|
|
}
|
|
|
|
input {
|
|
border: solid white 1px;
|
|
}
|
|
|
|
button {
|
|
margin-top: 0px;
|
|
}
|
|
|
|
.input-grid {
|
|
display: grid;
|
|
column-gap: 10px;
|
|
}
|
|
|
|
legend {
|
|
top: -0.6em;
|
|
position: relative;
|
|
height: 0;
|
|
}
|
|
|
|
form img {
|
|
width: 16px;
|
|
} |