blob: ff47cf77c5ea4907b3527902f4ad711ffec2e619 (
plain)
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
|
/* ************************************************************************** */
/* */
/* File : site.css /_________/ */
/* Authors : Joe | */
/* Date : 06/2020 | */
/* Info : Style for GitJoe | */
/* / | */
/* \ / */
/* \_____/ */
/* */
/* ************************************************************************** */
body {
margin: 0 auto;
width: 100%;
height: 100%;
min-height: 100%;
font-family: sans-serif;
background-color: #f5f5f5;
position: relative;
min-height: 100%;
}
header {
margin: 0pt;
padding: 0pt;
width: 100%;
background-color: #ededed;
border-bottom: 2pt solid #aaa;
border-top: 0pt;
}
table {
margin-left: 5%;
margin-right: 5%;
}
div#content {
padding: 5pt 0 5pt 0;
padding-bottom: 2.5rem;
margin-left: 5%;
margin-right: 5%;
}
hr {
border-top: 1px solid #999;
border-bottom: 0px;
margin-left: 5%;
margin-right: 5%;
}
h1 {
font-size: x-large;
font-weight: bold;
margin: 2pt;
color: #292929;
}
a {
margin: 0pt;
border-collapse: collapse;
}
a:link {
color: #23b;
background-color: transparent;
text-decoration: none;
}
a:visited {
color: #23b;
background-color: transparent;
text-decoration: none;
}
a:hover {
color: #23b;
background-color: transparent;
text-decoration: underline;
}
a:active {
color: #23b;
background-color: transparent;
text-decoration: none;
}
.h {
color: #8f3f71;
}
.d {
color: #9d0006;
}
.i {
color: #79740e;
}
a.h {
color: #8f3f71;
}
a.d {
color: #9d0006;
}
a.i {
color: #79740e;
}
div#content tr:hover {
background-color: #d1e2f4;
}
div.body-contents h1 {
font-size: 140%;
font-weight: bold;
text-align: left;
padding: 0em 0em 0.25rem 0em;
margin: 0pt;
margin-top: 1em;
color: #24c;
border-bottom: 2px solid #24c;
}
div.body-contents h2 {
font-size: 130%;
font-weight: bold;
text-align: left;
padding: 0em 0em 0.25rem 0em;
margin: 0pt;
margin-top: 1em;
color: #24c;
border-bottom: 1px solid #24c;
}
div.body-contents h3 {
font-size: 120%;
font-weight: bold;
text-align: left;
padding: 0em 0em 0.25rem 0em;
margin: 0pt;
margin-top: 1em;
color: #24c;
}
div.body-contents b {
font-weight: bold;
color: #24c;
}
div.body-contents li {
display: list-item;
}
div.body-contents ul {
padding: 0pt 0pt 0pt 1.5rem;
margin: 0;
list-style: square;
}
div.body-contents code {
font-family: SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace;
font-size: smaller;
background-color: #e4e4e4;
color: #24d;
border-radius: 5px;
padding: 2px 5px 2px 5px;
}
div.body-contents pre {
font-family: SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace;
font-size: smaller;
background-color: #d1e2f4;
border-radius: 4px;
display: block;
margin: 0;
width: 80%;
overflow: auto;
margin-left: 1em;
margin-right: 1em;
padding: 10px 10px 10px 10px;
white-space: pre;
border: 1px solid #aaa;
}
div.body-contents pre.src {
background-color: #3c3836;
color: #ebdbb2;
border-radius: 4px;
display: block;
margin: 0;
width: 80%;
overflow: auto;
margin-left: 1em;
margin-right: 1em;
padding: 10px 10px 10px 10px;
white-space: pre;
border: 1px solid #1d2021;
}
div#postamble {
border: 1px solid #89f;
width: 35%;
margin: 15px;
padding: 4px;
border-radius: 4px;
}
span.fa {
font-size: 16px;
}
|