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
|
3
|
17 input[type="submit"] {
|
|
18 cursor: pointer;
|
|
19 }
|
|
20
|
0
|
21 div[header] {
|
|
22 font-size: 14px;
|
|
23 background-color: #ddd;
|
|
24 padding: 8px 3%;
|
2
|
25 display: flex;
|
|
26 justify-content: space-between;
|
0
|
27 }
|
|
28
|
|
29 [content] {
|
|
30 margin-left: 3%;
|
|
31 margin-right: 3%;
|
|
32 margin-bottom: 2em;
|
|
33 }
|
3
|
34
|
|
35 label[prompt] {
|
|
36 display: block;
|
|
37 font-size: small;
|
|
38 margin-top: 2px;
|
|
39 margin-bottom: 4px;
|
|
40 }
|