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;
|
27
|
12 outline: none;
|
0
|
13 }
|
|
14 a:hover {
|
|
15 text-decoration: underline;
|
|
16 }
|
|
17
|
4
|
18 button,
|
|
19 img[onclick],
|
|
20 label[clickable],
|
|
21 input[type="radio"],
|
|
22 input[type="submit"] {
|
|
23 cursor: pointer;
|
|
24 }
|
|
25
|
2
|
26 div[header] {
|
|
27 font-size: 14px;
|
|
28 background-color: #ddd;
|
|
29 padding: 8px 3%;
|
|
30 display: flex;
|
|
31 justify-content: space-between;
|
8
|
32 z-index: 1;
|
|
33 position: fixed;
|
|
34 top: 0;
|
|
35 left: 0;
|
|
36 right: 0;
|
|
37 }
|
|
38 div[padding] {
|
|
39 height: 32px;
|
2
|
40 }
|
|
41
|
0
|
42 [content] {
|
|
43 margin-left: 3%;
|
|
44 margin-right: 3%;
|
|
45 margin-bottom: 2em;
|
|
46 }
|
1
|
47
|
8
|
48 @media print {
|
|
49 div[header],
|
|
50 div[padding] {
|
|
51 display: none;
|
|
52 }
|
|
53 }
|
|
54
|
4
|
55 span[pulldown] {
|
|
56 position: relative;
|
1
|
57 }
|
|
58
|
4
|
59 span[pulldown] > div {
|
|
60 display: none;
|
|
61 right: 100%;
|
|
62 z-index: 2;
|
|
63 position: absolute;
|
|
64 border: 1px solid #cccccc;
|
|
65 border-radius: 4px;
|
|
66 text-align: left;
|
|
67 background-color: #eeeeee;
|
|
68 padding: 5px 0;
|
1
|
69 }
|
4
|
70
|
50
|
71 span[pulldown] > div > span,
|
|
72 span[pulldown] > div > a {
|
4
|
73 white-space: nowrap;
|
|
74 display: block;
|
|
75 padding: 8px 16px;
|
|
76 cursor: pointer;
|
50
|
77 color: black;
|
1
|
78 }
|
4
|
79
|
50
|
80 span[pulldown] > div > span:hover,
|
|
81 span[pulldown] > div > a:hover {
|
4
|
82 color: #ffffff;
|
|
83 background-color: #428bca;
|
50
|
84 text-decoration: none;
|
4
|
85 }
|
9
|
86
|
|
87 ruby rt {
|
|
88 user-select: none;
|
|
89 }
|
|
90
|
|
91 pre,
|
|
92 code {
|
27
|
93 white-space: pre-wrap;
|
9
|
94 }
|
34
|
95
|
|
96 audio {
|
|
97 max-height: 34px;
|
|
98 }
|
|
99 div[role] div[controls] {
|
|
100 display: flex;
|
|
101 gap: 16px;
|
|
102 align-items: center;
|
58
|
103 margin-top: 8px;
|
34
|
104 }
|