48 lines
743 B
CSS
48 lines
743 B
CSS
* { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; }
|
|
|
|
body, input, select {
|
|
font-family: 'Helvetica', Arial, sans-serif;
|
|
font-size: 150%;
|
|
}
|
|
|
|
.container {
|
|
position: absolute;
|
|
top: 10%;
|
|
left: 10%;
|
|
width: 80%;
|
|
height: 80%;
|
|
}
|
|
|
|
textarea, input {
|
|
outline: none;
|
|
}
|
|
|
|
textarea {
|
|
width: 100%;
|
|
height: 20em;
|
|
line-height: 120%;
|
|
resize: none;
|
|
border-style: solid;
|
|
border-color: #ddd;
|
|
border-radius: 5px;
|
|
padding: .5em;
|
|
}
|
|
|
|
input[type="submit"] {
|
|
display: inline-block;
|
|
margin: .3em 0;
|
|
background-color: #fafafa;
|
|
border-color: #ddd;
|
|
border-radius: 4px;
|
|
border-width: 1px;
|
|
font-size: 1em;
|
|
padding: .2em .5em;
|
|
}
|
|
.row.centered {
|
|
text-align: center;
|
|
}
|
|
|
|
p {
|
|
width: 100%;
|
|
}
|