51 lines
662 B
CSS
51 lines
662 B
CSS
body {
|
|
color: rgb(55, 53, 47);
|
|
font-family: helvetica;
|
|
line-height: 24px;
|
|
font-size: 16px;
|
|
margin-left: 7%;
|
|
margin-right: 7%;
|
|
margin-top: 10px;
|
|
}
|
|
textarea {
|
|
width: 100%;
|
|
border: none;
|
|
outline: none;
|
|
font-family: inherit;
|
|
font-size: inherit;
|
|
line-height: inherit;
|
|
color: inherit;
|
|
}
|
|
.grey {
|
|
color: lightgrey;
|
|
}
|
|
|
|
a {
|
|
color: inherit;
|
|
}
|
|
|
|
.editor {
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.title {
|
|
font: inherit;
|
|
border: none;
|
|
outline: none;
|
|
margin-top: 10px;
|
|
color: inherit;
|
|
width: 100%;
|
|
}
|
|
|
|
form input[type="submit"] {
|
|
background: none;
|
|
border: none;
|
|
color: lightgrey;
|
|
font: inherit;
|
|
text-decoration: underline;
|
|
cursor: pointer;
|
|
|
|
padding: 0;
|
|
border: 0;
|
|
}
|