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