18 lines
248 B
CSS
18 lines
248 B
CSS
#form, #dynamic {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 1rem;
|
|
}
|
|
|
|
label {
|
|
font-family: sans-serif;
|
|
font-weight: bold;
|
|
}
|
|
|
|
input {
|
|
margin-top: .25rem;
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
font-size: 1.5rem;
|
|
}
|