blob: 012363caeb566b17566b9350f1b0918fe8bf24b5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
|
html {
font-size: 100%;
}
body {
margin: 0 auto;
padding: 50px;
font-family: "Georgia", serif;
font-size: 14px;
line-height: 1.5;
color: #333;
background-color: #f8f8f8;
}
#wrap {
max-width: 800px;
background-color: #fff;
padding: 80px;
margin: 0 auto;
border: 1px solid #ccc;
}
h1 {
margin: 0 0 40px;
padding: 0;
font-weight: normal;
line-height: 1.2;
padding: 16px 0;
font-size: 24px;
border-top: 1px solid #ccc;
border-bottom: 1px solid #ccc;
}
h1 a {
float: right;
text-decoration: none;
padding-right: 20px;
}
ul, ol {
margin: 36px 0px;
padding: 0 0 0 16px;
}
ul ul, ol ol, ul ol, ol ul {
margin: 0 8px;
}
li {
margin: 0;
padding: 0;
}
pre {
font-size: 13px;
font-family: monospace;
color: #222;
background-color: #f8f8f8;
margin: 32px 0;
padding: 18px 24px;
border-top: 1px solid #ccc;
border-bottom: 1px solid #ccc;
overflow: auto;
}
.button {
background-color: #eee;
cursor: pointer;
padding: 20px;
width: 100%;
border: none;
text-align: left;
outline: none;
font-size: 16px;
font-family: "Georgia", serif;
margin-top: 5px;
}
.active, .button:hover {
background-color: #ccc;
}
.menu {
padding: 0 20px;
}
.panel {
padding: 0 20px;
background-color: white;
max-height: 0;
overflow: hidden;
transition: max-height 0.2s ease-out;
}
.panel.last pre {
margin-bottom: 0;
}
.button:after {
content: '\02795'; /* Unicode character for "plus" sign (+) */
font-size: 10px;
color: red;
float: right;
margin-left: 5px;
}
.active:after {
content: "\2796"; /* Unicode character for "minus" sign (-) */
}
|