55 lines
925 B
CSS
55 lines
925 B
CSS
<style>
|
|
/* Style the header */
|
|
|
|
.responses{
|
|
font-family: sans-serif;
|
|
font-size: 14.5pt;
|
|
width: 768px;
|
|
padding: 1px;
|
|
margin-top: 100px;
|
|
}
|
|
a {
|
|
color: #547720
|
|
}
|
|
|
|
|
|
|
|
.header {
|
|
font-family: sans-serif;
|
|
padding: 10px 16px;
|
|
background: #dbd5d5;
|
|
color: #1a1919;
|
|
position: fixed;
|
|
top: 5px;
|
|
width: 768px;
|
|
}
|
|
|
|
input[type=text] {
|
|
width: 75%;
|
|
padding: 12px 20px;
|
|
margin: 8px 0;
|
|
box-sizing: border-box;
|
|
text-align: left;
|
|
font-size: 14.5pt;
|
|
}
|
|
|
|
input[type=button], input[type=submit], input[type=reset] {
|
|
font-family: sans-serif;
|
|
background-color: #afcdc2;
|
|
border: none;
|
|
color: rgb(0, 0, 0);
|
|
padding: 16px 32px;
|
|
text-decoration: none;
|
|
margin: 4px 2px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
/* Page content */
|
|
.definition {
|
|
padding: 8px;
|
|
font-family: sans-serif;
|
|
font-size: 14.5pt;
|
|
width: 768px;
|
|
padding: 1px;
|
|
}
|
|
</style> |