51 lines
501 B
CSS
51 lines
501 B
CSS
|
|
html
|
||
|
|
{
|
||
|
|
background-color: #000000;
|
||
|
|
color: #FFFFFF;
|
||
|
|
}
|
||
|
|
|
||
|
|
body
|
||
|
|
{
|
||
|
|
max-width: 960px;
|
||
|
|
margin: auto;
|
||
|
|
padding: 16px;
|
||
|
|
|
||
|
|
background-color: #202020;
|
||
|
|
color: #D0D0D0;
|
||
|
|
}
|
||
|
|
|
||
|
|
#input
|
||
|
|
{
|
||
|
|
width: 100%;
|
||
|
|
min-height: 240px;
|
||
|
|
}
|
||
|
|
|
||
|
|
#render
|
||
|
|
{
|
||
|
|
display: block;
|
||
|
|
}
|
||
|
|
|
||
|
|
#output
|
||
|
|
{
|
||
|
|
width: 100%;
|
||
|
|
min-height: 240px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.formgen-input > label
|
||
|
|
{
|
||
|
|
display: block;
|
||
|
|
font-size: 80%;
|
||
|
|
font-weight: bold;
|
||
|
|
text-transform: uppercase;
|
||
|
|
}
|
||
|
|
|
||
|
|
.formgen-input-group-field
|
||
|
|
{
|
||
|
|
margin-bottom: 8px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.formgen-form-button
|
||
|
|
{
|
||
|
|
text-transform: uppercase;
|
||
|
|
}
|