| 
0
 | 
     1 * {
 | 
| 
 | 
     2  	box-sizing: border-box;
 | 
| 
 | 
     3 }
 | 
| 
 | 
     4 
 | 
| 
 | 
     5 body {
 | 
| 
 | 
     6 	font-family: Sans-Serif;
 | 
| 
 | 
     7 	margin: 0;
 | 
| 
 | 
     8 }
 | 
| 
 | 
     9 
 | 
| 
 | 
    10 a {
 | 
| 
 | 
    11 	text-decoration: none;
 | 
| 
 | 
    12 }
 | 
| 
 | 
    13 a:hover {
 | 
| 
 | 
    14 	text-decoration: underline;
 | 
| 
 | 
    15 }
 | 
| 
 | 
    16 
 | 
| 
 | 
    17 div[header] {
 | 
| 
 | 
    18 	font-size: 14px;
 | 
| 
 | 
    19 	background-color: #ddd;
 | 
| 
 | 
    20 	padding: 8px 3%;
 | 
| 
 | 
    21 }
 | 
| 
 | 
    22 
 | 
| 
 | 
    23 [content] {
 | 
| 
 | 
    24 	margin-left: 3%;
 | 
| 
 | 
    25 	margin-right: 3%;
 | 
| 
 | 
    26 	margin-bottom: 2em;
 | 
| 
 | 
    27 }
 | 
| 
 | 
    28 
 | 
| 
 | 
    29 label[clickable],
 | 
| 
 | 
    30 input[type="checkbox"],
 | 
| 
 | 
    31 input[type="submit"] {
 | 
| 
 | 
    32 	cursor: pointer;
 | 
| 
 | 
    33 }
 | 
| 
 | 
    34 
 | 
| 
 | 
    35 label[prompt] {
 | 
| 
 | 
    36 	display: block;
 | 
| 
 | 
    37 	font-size: small;
 | 
| 
 | 
    38 	margin-top: 2px;
 | 
| 
 | 
    39 	margin-bottom: 4px;
 | 
| 
 | 
    40 }
 | 
| 
 | 
    41 input[type=text], input[type=email], select, textarea {
 | 
| 
 | 
    42 	font: inherit;
 | 
| 
 | 
    43 }
 | 
| 
 | 
    44 select {
 | 
| 
 | 
    45 	padding: 1px;
 | 
| 
 | 
    46 }
 | 
| 
 | 
    47 [error] {
 | 
| 
 | 
    48 	color: red;
 | 
| 
 | 
    49 }
 |