44 lines
419 B
CSS
44 lines
419 B
CSS
|
|
.items
|
|
{
|
|
padding: 1em;
|
|
}
|
|
.items .box
|
|
{
|
|
max-width: 30em;
|
|
padding: 2em;
|
|
}
|
|
.items .form
|
|
{
|
|
max-width: 25em;
|
|
margin: auto;
|
|
}
|
|
.items .form-group
|
|
{
|
|
padding: 0.4em;
|
|
}
|
|
.items form label
|
|
{
|
|
display: block;
|
|
margin-bottom: 0.5em;
|
|
}
|
|
.items input[type=text],
|
|
.items select
|
|
{
|
|
margin: 0;
|
|
width: 100%;
|
|
}
|
|
|
|
/* Footer */
|
|
|
|
.items .footer
|
|
{
|
|
text-align: center;
|
|
margin-top: 1.5em;
|
|
}
|
|
.items .footer > button
|
|
{
|
|
margin: 0 .2em;
|
|
}
|
|
|