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