22 lines
253 B
CSS
22 lines
253 B
CSS
|
/* vim: set ts=2 sw=2 tw=80 et: */
|
||
|
|
||
|
input, textarea {
|
||
|
width: 20rem;
|
||
|
display: block;
|
||
|
padding: .1rem;
|
||
|
margin: .25rem 0;
|
||
|
}
|
||
|
|
||
|
fieldset {
|
||
|
border: none;
|
||
|
margin: .5rem 0;
|
||
|
}
|
||
|
|
||
|
label {
|
||
|
font-size: .7rem;
|
||
|
}
|
||
|
|
||
|
textarea[name="address"] {
|
||
|
height: 4em;
|
||
|
}
|